Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This program is used to generate definitions needed by |
| 3 | * assembly language modules. |
| 4 | * |
| 5 | * We use the technique used in the OSF Mach kernel code: |
| 6 | * generate asm statements containing #defines, |
| 7 | * compile this file to assembler, and then extract the |
| 8 | * #defines from the assembly-language output. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/stddef.h> |
| 12 | #include <linux/sched.h> |
| 13 | #include <linux/kernel_stat.h> |
| 14 | #include <linux/ptrace.h> |
| 15 | #include <linux/hardirq.h> |
| 16 | #include <asm/bootinfo.h> |
| 17 | #include <asm/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <asm/thread_info.h> |
| 19 | |
| 20 | #define DEFINE(sym, val) \ |
| 21 | asm volatile("\n->" #sym " %0 " #val : : "i" (val)) |
| 22 | |
| 23 | #define BLANK() asm volatile("\n->" : : ) |
| 24 | |
| 25 | int main(void) |
| 26 | { |
| 27 | /* offsets into the task struct */ |
| 28 | DEFINE(TASK_STATE, offsetof(struct task_struct, state)); |
| 29 | DEFINE(TASK_FLAGS, offsetof(struct task_struct, flags)); |
| 30 | DEFINE(TASK_PTRACE, offsetof(struct task_struct, ptrace)); |
| 31 | DEFINE(TASK_BLOCKED, offsetof(struct task_struct, blocked)); |
| 32 | DEFINE(TASK_THREAD, offsetof(struct task_struct, thread)); |
Roman Zippel | c9f4f06 | 2007-05-09 02:35:16 -0700 | [diff] [blame] | 33 | DEFINE(TASK_THREAD_INFO, offsetof(struct task_struct, stack)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | DEFINE(TASK_MM, offsetof(struct task_struct, mm)); |
| 35 | DEFINE(TASK_ACTIVE_MM, offsetof(struct task_struct, active_mm)); |
| 36 | |
| 37 | /* offsets into the kernel_stat struct */ |
| 38 | DEFINE(STAT_IRQ, offsetof(struct kernel_stat, irqs)); |
| 39 | |
| 40 | /* offsets into the irq_cpustat_t struct */ |
| 41 | DEFINE(CPUSTAT_SOFTIRQ_PENDING, offsetof(irq_cpustat_t, __softirq_pending)); |
| 42 | |
| 43 | /* offsets into the thread struct */ |
| 44 | DEFINE(THREAD_KSP, offsetof(struct thread_struct, ksp)); |
| 45 | DEFINE(THREAD_USP, offsetof(struct thread_struct, usp)); |
| 46 | DEFINE(THREAD_SR, offsetof(struct thread_struct, sr)); |
| 47 | DEFINE(THREAD_FS, offsetof(struct thread_struct, fs)); |
| 48 | DEFINE(THREAD_CRP, offsetof(struct thread_struct, crp)); |
| 49 | DEFINE(THREAD_ESP0, offsetof(struct thread_struct, esp0)); |
| 50 | DEFINE(THREAD_FPREG, offsetof(struct thread_struct, fp)); |
| 51 | DEFINE(THREAD_FPCNTL, offsetof(struct thread_struct, fpcntl)); |
| 52 | DEFINE(THREAD_FPSTATE, offsetof(struct thread_struct, fpstate)); |
| 53 | |
| 54 | /* offsets into the pt_regs */ |
| 55 | DEFINE(PT_D0, offsetof(struct pt_regs, d0)); |
| 56 | DEFINE(PT_ORIG_D0, offsetof(struct pt_regs, orig_d0)); |
| 57 | DEFINE(PT_D1, offsetof(struct pt_regs, d1)); |
| 58 | DEFINE(PT_D2, offsetof(struct pt_regs, d2)); |
| 59 | DEFINE(PT_D3, offsetof(struct pt_regs, d3)); |
| 60 | DEFINE(PT_D4, offsetof(struct pt_regs, d4)); |
| 61 | DEFINE(PT_D5, offsetof(struct pt_regs, d5)); |
| 62 | DEFINE(PT_A0, offsetof(struct pt_regs, a0)); |
| 63 | DEFINE(PT_A1, offsetof(struct pt_regs, a1)); |
| 64 | DEFINE(PT_A2, offsetof(struct pt_regs, a2)); |
| 65 | DEFINE(PT_PC, offsetof(struct pt_regs, pc)); |
| 66 | DEFINE(PT_SR, offsetof(struct pt_regs, sr)); |
| 67 | |
| 68 | #ifdef CONFIG_COLDFIRE |
| 69 | /* bitfields are a bit difficult */ |
| 70 | DEFINE(PT_FORMATVEC, offsetof(struct pt_regs, sr) - 2); |
| 71 | #else |
| 72 | /* bitfields are a bit difficult */ |
| 73 | DEFINE(PT_VECTOR, offsetof(struct pt_regs, pc) + 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | #endif |
| 75 | |
| 76 | /* offsets into the kernel_stat struct */ |
| 77 | DEFINE(STAT_IRQ, offsetof(struct kernel_stat, irqs)); |
| 78 | |
| 79 | /* signal defines */ |
| 80 | DEFINE(SIGSEGV, SIGSEGV); |
| 81 | DEFINE(SEGV_MAPERR, SEGV_MAPERR); |
| 82 | DEFINE(SIGTRAP, SIGTRAP); |
| 83 | DEFINE(TRAP_TRACE, TRAP_TRACE); |
| 84 | |
| 85 | DEFINE(PT_PTRACED, PT_PTRACED); |
| 86 | DEFINE(PT_DTRACE, PT_DTRACE); |
| 87 | |
| 88 | DEFINE(THREAD_SIZE, THREAD_SIZE); |
| 89 | |
| 90 | /* Offsets in thread_info structure */ |
| 91 | DEFINE(TI_TASK, offsetof(struct thread_info, task)); |
| 92 | DEFINE(TI_EXECDOMAIN, offsetof(struct thread_info, exec_domain)); |
| 93 | DEFINE(TI_FLAGS, offsetof(struct thread_info, flags)); |
| 94 | DEFINE(TI_CPU, offsetof(struct thread_info, cpu)); |
| 95 | |
| 96 | return 0; |
| 97 | } |