source: mainline/tools/amd64/gencontext.c@ 3f31742

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 3f31742 was 8e0eb63, checked in by Jakub Jermar <jakub@…>, 19 years ago

Hopefully final version of interrupt handlers for amd64 and ia32.
amd64 has been especially tricky to debug.
Error code detection is now done in compile time.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1#include <stdio.h>
2#include <stdint.h>
3
4typedef uint64_t __u64;
5typedef __u64 ipl_t;
6typedef __u64 __address;
7
8#define __amd64_TYPES_H__
9#include "../../arch/amd64/include/context.h"
10
11#define FILENAME "../../arch/amd64/include/context_offset.h"
12
13int main(void)
14{
15 FILE *f;
16 struct context ctx;
17 struct context *pctx = &ctx;
18
19 struct interrupt_context ictx;
20 struct interrupt_context *ipctx = &ictx;
21
22 f = fopen(FILENAME,"w");
23 if (!f) {
24 perror(FILENAME);
25 return 1;
26 }
27
28 fprintf(f, "/* This file is automatically generated by %s. */\n", __FILE__);
29
30 fprintf(f,"#define OFFSET_SP 0x%x\n", ((int) &pctx->sp) - (int) pctx);
31 fprintf(f,"#define OFFSET_PC 0x%x\n", ((int) &pctx->pc) - (int) pctx);
32 fprintf(f,"#define OFFSET_RBX 0x%x\n", ((int) &pctx->rbx) - (int) pctx);
33 fprintf(f,"#define OFFSET_RBP 0x%x\n", ((int) &pctx->rbp) - (int) pctx);
34 fprintf(f,"#define OFFSET_R12 0x%x\n", ((int) &pctx->r12) - (int) pctx);
35 fprintf(f,"#define OFFSET_R13 0x%x\n", ((int) &pctx->r13) - (int) pctx);
36 fprintf(f,"#define OFFSET_R14 0x%x\n", ((int) &pctx->r14) - (int) pctx);
37 fprintf(f,"#define OFFSET_R15 0x%x\n", ((int) &pctx->r15) - (int) pctx);
38 fprintf(f,"#define OFFSET_IPL 0x%x\n", ((int) &pctx->ipl) - (int) pctx);
39
40 fclose(f);
41
42 return 0;
43}
Note: See TracBrowser for help on using the repository browser.