asm-offsets_64.c 1.6 KB
Newer Older
1 2 3 4
#ifndef __LINUX_KBUILD_H
# error "Please do not build this file directly, build asm-offsets.c instead"
#endif

5
#include <asm/ia32.h>
6

7
#define __SYSCALL_64(nr, sym, compat) [nr] = 1,
8
#define __SYSCALL_COMMON(nr, sym, compat) [nr] = 1,
9 10 11 12 13
#ifdef CONFIG_X86_X32_ABI
# define __SYSCALL_X32(nr, sym, compat) [nr] = 1,
#else
# define __SYSCALL_X32(nr, sym, compat) /* nothing */
#endif
14 15 16 17 18 19
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>
20 21 22 23
};

int main(void)
{
24
#ifdef CONFIG_PARAVIRT
25
	OFFSET(PV_IRQ_adjust_exception_frame, pv_irq_ops, adjust_exception_frame);
26 27
	OFFSET(PV_CPU_usergs_sysret32, pv_cpu_ops, usergs_sysret32);
	OFFSET(PV_CPU_usergs_sysret64, pv_cpu_ops, usergs_sysret64);
28
	OFFSET(PV_CPU_swapgs, pv_cpu_ops, swapgs);
29
	BLANK();
30 31
#endif

32
#define ENTRY(entry) OFFSET(pt_regs_ ## entry, pt_regs, entry)
33 34 35 36 37 38 39
	ENTRY(bx);
	ENTRY(cx);
	ENTRY(dx);
	ENTRY(sp);
	ENTRY(bp);
	ENTRY(si);
	ENTRY(di);
40 41 42 43 44 45 46 47
	ENTRY(r8);
	ENTRY(r9);
	ENTRY(r10);
	ENTRY(r11);
	ENTRY(r12);
	ENTRY(r13);
	ENTRY(r14);
	ENTRY(r15);
48
	ENTRY(flags);
49 50
	BLANK();
#undef ENTRY
51 52

#define ENTRY(entry) OFFSET(saved_context_ ## entry, saved_context, entry)
53 54 55 56 57
	ENTRY(cr0);
	ENTRY(cr2);
	ENTRY(cr3);
	ENTRY(cr4);
	ENTRY(cr8);
58
	ENTRY(gdt_desc);
59 60
	BLANK();
#undef ENTRY
61

62
	OFFSET(TSS_ist, tss_struct, x86_tss.ist);
63
	OFFSET(TSS_sp0, tss_struct, x86_tss.sp0);
64
	BLANK();
65

66 67 68
	DEFINE(__NR_syscall_max, sizeof(syscalls_64) - 1);
	DEFINE(NR_syscalls, sizeof(syscalls_64));

69
	DEFINE(__NR_entry_INT80_compat_max, sizeof(syscalls_ia32) - 1);
70
	DEFINE(IA32_NR_syscalls, sizeof(syscalls_ia32));
71

72 73
	return 0;
}