2 * This program is used to generate definitions needed by
3 * assembly language modules.
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.
10 * On sparc, thread_info data is static and TI_XXX offsets are computed by hand.
13 #include <linux/sched.h>
14 // #include <linux/mm.h>
15 #include <linux/kbuild.h>
17 #include <asm/hibernate.h>
22 DEFINE(AOFF_thread_fork_kpsr
,
23 offsetof(struct thread_struct
, fork_kpsr
));
29 #ifdef CONFIG_HIBERNATION
31 OFFSET(SC_REG_FP
, saved_context
, fp
);
32 OFFSET(SC_REG_CWP
, saved_context
, cwp
);
33 OFFSET(SC_REG_WSTATE
, saved_context
, wstate
);
35 OFFSET(SC_REG_TICK
, saved_context
, tick
);
36 OFFSET(SC_REG_PSTATE
, saved_context
, pstate
);
38 OFFSET(SC_REG_G4
, saved_context
, g4
);
39 OFFSET(SC_REG_G5
, saved_context
, g5
);
40 OFFSET(SC_REG_G6
, saved_context
, g6
);
49 DEFINE(AOFF_task_thread
, offsetof(struct task_struct
, thread
));
51 DEFINE(AOFF_mm_context
, offsetof(struct mm_struct
, context
));
53 DEFINE(VMA_VM_MM
, offsetof(struct vm_area_struct
, vm_mm
));
55 /* DEFINE(NUM_USER_SEGMENTS, TASK_SIZE>>28); */