2007-10-11 03:14:19 -06:00
|
|
|
#include <asm/ia32.h>
|
2008-12-18 15:46:52 -07:00
|
|
|
|
2007-10-11 03:14:19 -06:00
|
|
|
#define __NO_STUBS 1
|
|
|
|
#undef __SYSCALL
|
2008-10-22 23:26:29 -06:00
|
|
|
#undef _ASM_X86_UNISTD_64_H
|
2007-10-11 03:14:19 -06:00
|
|
|
#define __SYSCALL(nr, sym) [nr] = 1,
|
|
|
|
static char syscalls[] = {
|
|
|
|
#include <asm/unistd.h>
|
|
|
|
};
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
2008-01-30 05:33:19 -07:00
|
|
|
#ifdef CONFIG_PARAVIRT
|
2008-06-24 22:19:31 -06:00
|
|
|
OFFSET(PV_IRQ_adjust_exception_frame, pv_irq_ops, adjust_exception_frame);
|
2008-06-24 22:19:28 -06:00
|
|
|
OFFSET(PV_CPU_usergs_sysret32, pv_cpu_ops, usergs_sysret32);
|
|
|
|
OFFSET(PV_CPU_usergs_sysret64, pv_cpu_ops, usergs_sysret64);
|
2008-01-30 05:33:19 -07:00
|
|
|
OFFSET(PV_CPU_swapgs, pv_cpu_ops, swapgs);
|
2011-02-09 01:24:34 -07:00
|
|
|
BLANK();
|
2008-01-30 05:33:19 -07:00
|
|
|
#endif
|
|
|
|
|
2007-10-11 03:14:19 -06:00
|
|
|
#ifdef CONFIG_IA32_EMULATION
|
2011-02-09 01:24:34 -07:00
|
|
|
OFFSET(TI_sysenter_return, thread_info, sysenter_return);
|
|
|
|
BLANK();
|
|
|
|
|
|
|
|
#define ENTRY(entry) OFFSET(IA32_SIGCONTEXT_ ## entry, sigcontext_ia32, entry)
|
2008-01-30 05:30:56 -07:00
|
|
|
ENTRY(ax);
|
|
|
|
ENTRY(bx);
|
|
|
|
ENTRY(cx);
|
|
|
|
ENTRY(dx);
|
|
|
|
ENTRY(si);
|
|
|
|
ENTRY(di);
|
|
|
|
ENTRY(bp);
|
|
|
|
ENTRY(sp);
|
|
|
|
ENTRY(ip);
|
2007-10-11 03:14:19 -06:00
|
|
|
BLANK();
|
|
|
|
#undef ENTRY
|
2011-02-09 01:24:34 -07:00
|
|
|
|
|
|
|
OFFSET(IA32_RT_SIGFRAME_sigcontext, rt_sigframe_ia32, uc.uc_mcontext);
|
2007-10-11 03:14:19 -06:00
|
|
|
BLANK();
|
|
|
|
#endif
|
2011-02-09 01:24:34 -07:00
|
|
|
|
|
|
|
#define ENTRY(entry) OFFSET(pt_regs_ ## entry, pt_regs, entry)
|
2008-01-30 05:30:56 -07:00
|
|
|
ENTRY(bx);
|
|
|
|
ENTRY(bx);
|
|
|
|
ENTRY(cx);
|
|
|
|
ENTRY(dx);
|
|
|
|
ENTRY(sp);
|
|
|
|
ENTRY(bp);
|
|
|
|
ENTRY(si);
|
|
|
|
ENTRY(di);
|
2007-10-23 14:37:24 -06:00
|
|
|
ENTRY(r8);
|
|
|
|
ENTRY(r9);
|
|
|
|
ENTRY(r10);
|
|
|
|
ENTRY(r11);
|
|
|
|
ENTRY(r12);
|
|
|
|
ENTRY(r13);
|
|
|
|
ENTRY(r14);
|
|
|
|
ENTRY(r15);
|
2008-01-30 05:30:56 -07:00
|
|
|
ENTRY(flags);
|
2007-10-23 14:37:24 -06:00
|
|
|
BLANK();
|
|
|
|
#undef ENTRY
|
2011-02-09 01:24:34 -07:00
|
|
|
|
|
|
|
#define ENTRY(entry) OFFSET(saved_context_ ## entry, saved_context, entry)
|
2007-10-23 14:37:24 -06:00
|
|
|
ENTRY(cr0);
|
|
|
|
ENTRY(cr2);
|
|
|
|
ENTRY(cr3);
|
|
|
|
ENTRY(cr4);
|
|
|
|
ENTRY(cr8);
|
|
|
|
BLANK();
|
|
|
|
#undef ENTRY
|
2007-10-26 11:29:04 -06:00
|
|
|
|
2011-02-09 01:24:34 -07:00
|
|
|
OFFSET(TSS_ist, tss_struct, x86_tss.ist);
|
2007-10-26 11:29:04 -06:00
|
|
|
BLANK();
|
2008-07-08 16:06:44 -06:00
|
|
|
|
2011-02-09 01:24:34 -07:00
|
|
|
DEFINE(__NR_syscall_max, sizeof(syscalls) - 1);
|
|
|
|
|
2007-10-11 03:14:19 -06:00
|
|
|
return 0;
|
|
|
|
}
|