| Michal Simek | c47f10b | 2009-03-27 14:25:25 +0100 | [diff] [blame] | 1 | /* | 
| Michal Simek | 627cef4 | 2009-05-26 16:30:19 +0200 | [diff] [blame] | 2 |  * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu> | 
| Michal Simek | c47f10b | 2009-03-27 14:25:25 +0100 | [diff] [blame] | 3 |  * Copyright (C) 2007-2009 PetaLogix | 
 | 4 |  * Copyright (C) 2006 Atmark Techno, Inc. | 
 | 5 |  * | 
 | 6 |  * This file is subject to the terms and conditions of the GNU General Public | 
 | 7 |  * License. See the file "COPYING" in the main directory of this archive | 
 | 8 |  * for more details. | 
 | 9 |  */ | 
 | 10 |  | 
 | 11 | #include <linux/init.h> | 
 | 12 | #include <linux/stddef.h> | 
 | 13 | #include <linux/sched.h> | 
 | 14 | #include <linux/kernel_stat.h> | 
 | 15 | #include <linux/ptrace.h> | 
 | 16 | #include <linux/hardirq.h> | 
 | 17 | #include <linux/thread_info.h> | 
 | 18 | #include <linux/kbuild.h> | 
 | 19 |  | 
 | 20 | int main(int argc, char *argv[]) | 
 | 21 | { | 
 | 22 | 	/* struct pt_regs */ | 
 | 23 | 	DEFINE(PT_SIZE, sizeof(struct pt_regs)); | 
 | 24 | 	DEFINE(PT_MSR, offsetof(struct pt_regs, msr)); | 
 | 25 | 	DEFINE(PT_EAR, offsetof(struct pt_regs, ear)); | 
 | 26 | 	DEFINE(PT_ESR, offsetof(struct pt_regs, esr)); | 
 | 27 | 	DEFINE(PT_FSR, offsetof(struct pt_regs, fsr)); | 
 | 28 | 	DEFINE(PT_PC, offsetof(struct pt_regs, pc)); | 
 | 29 | 	DEFINE(PT_R0, offsetof(struct pt_regs, r0)); | 
 | 30 | 	DEFINE(PT_R1, offsetof(struct pt_regs, r1)); | 
 | 31 | 	DEFINE(PT_R2, offsetof(struct pt_regs, r2)); | 
 | 32 | 	DEFINE(PT_R3, offsetof(struct pt_regs, r3)); | 
 | 33 | 	DEFINE(PT_R4, offsetof(struct pt_regs, r4)); | 
 | 34 | 	DEFINE(PT_R5, offsetof(struct pt_regs, r5)); | 
 | 35 | 	DEFINE(PT_R6, offsetof(struct pt_regs, r6)); | 
 | 36 | 	DEFINE(PT_R7, offsetof(struct pt_regs, r7)); | 
 | 37 | 	DEFINE(PT_R8, offsetof(struct pt_regs, r8)); | 
 | 38 | 	DEFINE(PT_R9, offsetof(struct pt_regs, r9)); | 
 | 39 | 	DEFINE(PT_R10, offsetof(struct pt_regs, r10)); | 
 | 40 | 	DEFINE(PT_R11, offsetof(struct pt_regs, r11)); | 
 | 41 | 	DEFINE(PT_R12, offsetof(struct pt_regs, r12)); | 
 | 42 | 	DEFINE(PT_R13, offsetof(struct pt_regs, r13)); | 
 | 43 | 	DEFINE(PT_R14, offsetof(struct pt_regs, r14)); | 
 | 44 | 	DEFINE(PT_R15, offsetof(struct pt_regs, r15)); | 
 | 45 | 	DEFINE(PT_R16, offsetof(struct pt_regs, r16)); | 
 | 46 | 	DEFINE(PT_R17, offsetof(struct pt_regs, r17)); | 
 | 47 | 	DEFINE(PT_R18, offsetof(struct pt_regs, r18)); | 
 | 48 | 	DEFINE(PT_R19, offsetof(struct pt_regs, r19)); | 
 | 49 | 	DEFINE(PT_R20, offsetof(struct pt_regs, r20)); | 
 | 50 | 	DEFINE(PT_R21, offsetof(struct pt_regs, r21)); | 
 | 51 | 	DEFINE(PT_R22, offsetof(struct pt_regs, r22)); | 
 | 52 | 	DEFINE(PT_R23, offsetof(struct pt_regs, r23)); | 
 | 53 | 	DEFINE(PT_R24, offsetof(struct pt_regs, r24)); | 
 | 54 | 	DEFINE(PT_R25, offsetof(struct pt_regs, r25)); | 
 | 55 | 	DEFINE(PT_R26, offsetof(struct pt_regs, r26)); | 
 | 56 | 	DEFINE(PT_R27, offsetof(struct pt_regs, r27)); | 
 | 57 | 	DEFINE(PT_R28, offsetof(struct pt_regs, r28)); | 
 | 58 | 	DEFINE(PT_R29, offsetof(struct pt_regs, r29)); | 
 | 59 | 	DEFINE(PT_R30, offsetof(struct pt_regs, r30)); | 
 | 60 | 	DEFINE(PT_R31, offsetof(struct pt_regs, r31)); | 
| Michal Simek | ac3efab | 2009-04-16 10:58:47 +0200 | [diff] [blame] | 61 | 	DEFINE(PT_MODE, offsetof(struct pt_regs, pt_mode)); | 
| Michal Simek | c47f10b | 2009-03-27 14:25:25 +0100 | [diff] [blame] | 62 | 	BLANK(); | 
 | 63 |  | 
 | 64 | 	/* Magic offsets for PTRACE PEEK/POKE etc */ | 
 | 65 | 	DEFINE(PT_TEXT_ADDR, sizeof(struct pt_regs) + 1); | 
 | 66 | 	DEFINE(PT_TEXT_LEN, sizeof(struct pt_regs) + 2); | 
 | 67 | 	DEFINE(PT_DATA_ADDR, sizeof(struct pt_regs) + 3); | 
 | 68 | 	BLANK(); | 
 | 69 |  | 
 | 70 | 	/* struct task_struct */ | 
 | 71 | 	DEFINE(TS_THREAD_INFO, offsetof(struct task_struct, stack)); | 
| Michal Simek | 627cef4 | 2009-05-26 16:30:19 +0200 | [diff] [blame] | 72 | #ifdef CONFIG_MMU | 
 | 73 | 	DEFINE(TASK_STATE, offsetof(struct task_struct, state)); | 
 | 74 | 	DEFINE(TASK_FLAGS, offsetof(struct task_struct, flags)); | 
 | 75 | 	DEFINE(TASK_PTRACE, offsetof(struct task_struct, ptrace)); | 
 | 76 | 	DEFINE(TASK_BLOCKED, offsetof(struct task_struct, blocked)); | 
 | 77 | 	DEFINE(TASK_MM, offsetof(struct task_struct, mm)); | 
 | 78 | 	DEFINE(TASK_ACTIVE_MM, offsetof(struct task_struct, active_mm)); | 
 | 79 | 	DEFINE(TASK_PID, offsetof(struct task_struct, pid)); | 
 | 80 | 	DEFINE(TASK_THREAD, offsetof(struct task_struct, thread)); | 
 | 81 | 	DEFINE(THREAD_KSP, offsetof(struct thread_struct, ksp)); | 
 | 82 | 	BLANK(); | 
 | 83 |  | 
 | 84 | 	DEFINE(PGDIR, offsetof(struct thread_struct, pgdir)); | 
 | 85 | 	BLANK(); | 
 | 86 | #endif | 
| Michal Simek | c47f10b | 2009-03-27 14:25:25 +0100 | [diff] [blame] | 87 |  | 
 | 88 | 	/* struct thread_info */ | 
 | 89 | 	DEFINE(TI_TASK, offsetof(struct thread_info, task)); | 
| Michal Simek | c47f10b | 2009-03-27 14:25:25 +0100 | [diff] [blame] | 90 | 	DEFINE(TI_FLAGS, offsetof(struct thread_info, flags)); | 
| Michal Simek | c47f10b | 2009-03-27 14:25:25 +0100 | [diff] [blame] | 91 | 	DEFINE(TI_ADDR_LIMIT, offsetof(struct thread_info, addr_limit)); | 
| Michal Simek | c47f10b | 2009-03-27 14:25:25 +0100 | [diff] [blame] | 92 | 	DEFINE(TI_CPU_CONTEXT, offsetof(struct thread_info, cpu_context)); | 
 | 93 | 	BLANK(); | 
 | 94 |  | 
 | 95 | 	/* struct cpu_context */ | 
 | 96 | 	DEFINE(CC_R1, offsetof(struct cpu_context, r1)); /* r1 */ | 
 | 97 | 	DEFINE(CC_R2, offsetof(struct cpu_context, r2)); | 
 | 98 | 	/* dedicated registers */ | 
 | 99 | 	DEFINE(CC_R13, offsetof(struct cpu_context, r13)); | 
 | 100 | 	DEFINE(CC_R14, offsetof(struct cpu_context, r14)); | 
 | 101 | 	DEFINE(CC_R15, offsetof(struct cpu_context, r15)); | 
 | 102 | 	DEFINE(CC_R16, offsetof(struct cpu_context, r16)); | 
 | 103 | 	DEFINE(CC_R17, offsetof(struct cpu_context, r17)); | 
 | 104 | 	DEFINE(CC_R18, offsetof(struct cpu_context, r18)); | 
 | 105 | 	/* non-volatile registers */ | 
 | 106 | 	DEFINE(CC_R19, offsetof(struct cpu_context, r19)); | 
 | 107 | 	DEFINE(CC_R20, offsetof(struct cpu_context, r20)); | 
 | 108 | 	DEFINE(CC_R21, offsetof(struct cpu_context, r21)); | 
 | 109 | 	DEFINE(CC_R22, offsetof(struct cpu_context, r22)); | 
 | 110 | 	DEFINE(CC_R23, offsetof(struct cpu_context, r23)); | 
 | 111 | 	DEFINE(CC_R24, offsetof(struct cpu_context, r24)); | 
 | 112 | 	DEFINE(CC_R25, offsetof(struct cpu_context, r25)); | 
 | 113 | 	DEFINE(CC_R26, offsetof(struct cpu_context, r26)); | 
 | 114 | 	DEFINE(CC_R27, offsetof(struct cpu_context, r27)); | 
 | 115 | 	DEFINE(CC_R28, offsetof(struct cpu_context, r28)); | 
 | 116 | 	DEFINE(CC_R29, offsetof(struct cpu_context, r29)); | 
 | 117 | 	DEFINE(CC_R30, offsetof(struct cpu_context, r30)); | 
 | 118 | 	/* special purpose registers */ | 
 | 119 | 	DEFINE(CC_MSR, offsetof(struct cpu_context, msr)); | 
 | 120 | 	DEFINE(CC_EAR, offsetof(struct cpu_context, ear)); | 
 | 121 | 	DEFINE(CC_ESR, offsetof(struct cpu_context, esr)); | 
 | 122 | 	DEFINE(CC_FSR, offsetof(struct cpu_context, fsr)); | 
 | 123 | 	BLANK(); | 
 | 124 |  | 
 | 125 | 	return 0; | 
 | 126 | } |