asm-offsets_64.c 1.6 KB
Newer Older
1
#include <asm/ia32.h>
2

3 4 5 6 7 8 9
#define __SYSCALL_64(nr, sym, compat) [nr] = 1,
static char syscalls_64[] = {
#include <asm/syscalls_64.h>
};
#define __SYSCALL_I386(nr, sym, compat) [nr] = 1,
static char syscalls_ia32[] = {
#include <asm/syscalls_32.h>
10 11 12 13
};

int main(void)
{
14
#ifdef CONFIG_PARAVIRT
15
	OFFSET(PV_IRQ_adjust_exception_frame, pv_irq_ops, adjust_exception_frame);
16 17
	OFFSET(PV_CPU_usergs_sysret32, pv_cpu_ops, usergs_sysret32);
	OFFSET(PV_CPU_usergs_sysret64, pv_cpu_ops, usergs_sysret64);
18
	OFFSET(PV_CPU_swapgs, pv_cpu_ops, swapgs);
19
	BLANK();
20 21
#endif

22
#ifdef CONFIG_IA32_EMULATION
23 24 25 26
	OFFSET(TI_sysenter_return, thread_info, sysenter_return);
	BLANK();

#define ENTRY(entry) OFFSET(IA32_SIGCONTEXT_ ## entry, sigcontext_ia32, entry)
27 28 29 30 31 32 33 34 35
	ENTRY(ax);
	ENTRY(bx);
	ENTRY(cx);
	ENTRY(dx);
	ENTRY(si);
	ENTRY(di);
	ENTRY(bp);
	ENTRY(sp);
	ENTRY(ip);
36 37
	BLANK();
#undef ENTRY
38 39

	OFFSET(IA32_RT_SIGFRAME_sigcontext, rt_sigframe_ia32, uc.uc_mcontext);
40 41
	BLANK();
#endif
42 43

#define ENTRY(entry) OFFSET(pt_regs_ ## entry, pt_regs, entry)
44 45 46 47 48 49 50 51
	ENTRY(bx);
	ENTRY(bx);
	ENTRY(cx);
	ENTRY(dx);
	ENTRY(sp);
	ENTRY(bp);
	ENTRY(si);
	ENTRY(di);
52 53 54 55 56 57 58 59
	ENTRY(r8);
	ENTRY(r9);
	ENTRY(r10);
	ENTRY(r11);
	ENTRY(r12);
	ENTRY(r13);
	ENTRY(r14);
	ENTRY(r15);
60
	ENTRY(flags);
61 62
	BLANK();
#undef ENTRY
63 64

#define ENTRY(entry) OFFSET(saved_context_ ## entry, saved_context, entry)
65 66 67 68 69 70 71
	ENTRY(cr0);
	ENTRY(cr2);
	ENTRY(cr3);
	ENTRY(cr4);
	ENTRY(cr8);
	BLANK();
#undef ENTRY
72

73
	OFFSET(TSS_ist, tss_struct, x86_tss.ist);
74
	BLANK();
75

76 77 78 79 80
	DEFINE(__NR_syscall_max, sizeof(syscalls_64) - 1);
	DEFINE(NR_syscalls, sizeof(syscalls_64));

	DEFINE(__NR_ia32_syscall_max, sizeof(syscalls_ia32) - 1);
	DEFINE(IA32_NR_syscalls, sizeof(syscalls_ia32));
81

82 83
	return 0;
}