blob: f76389a3234229a4a99e61ae55a8c70476b5798b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 * On sparc, thread_info data is static and TI_XXX offsets are computed by hand.
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/sched.h>
14// #include <linux/mm.h>
Christoph Lameter32b07672008-04-29 01:04:01 -070015#include <linux/kbuild.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Tkhai Kirillbdde6b32013-03-19 15:11:07 +000017#include <asm/hibernate.h>
18
Sam Ravnborgb5db8542008-11-29 21:51:05 -080019#ifdef CONFIG_SPARC32
20int sparc32_foo(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021{
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 DEFINE(AOFF_thread_fork_kpsr,
23 offsetof(struct thread_struct, fork_kpsr));
Sam Ravnborgb5db8542008-11-29 21:51:05 -080024 return 0;
25}
26#else
27int sparc64_foo(void)
28{
Tkhai Kirillbdde6b32013-03-19 15:11:07 +000029#ifdef CONFIG_HIBERNATION
30 BLANK();
31 OFFSET(SC_REG_FP, saved_context, fp);
32 OFFSET(SC_REG_CWP, saved_context, cwp);
33 OFFSET(SC_REG_WSTATE, saved_context, wstate);
34
35 OFFSET(SC_REG_TICK, saved_context, tick);
36 OFFSET(SC_REG_PSTATE, saved_context, pstate);
37
38 OFFSET(SC_REG_G4, saved_context, g4);
39 OFFSET(SC_REG_G5, saved_context, g5);
40 OFFSET(SC_REG_G6, saved_context, g6);
41#endif
Sam Ravnborgb5db8542008-11-29 21:51:05 -080042 return 0;
43}
44#endif
45
46int foo(void)
47{
48 BLANK();
49 DEFINE(AOFF_task_thread, offsetof(struct task_struct, thread));
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 BLANK();
51 DEFINE(AOFF_mm_context, offsetof(struct mm_struct, context));
Olivier DANET961246b2013-07-10 13:56:10 -070052 BLANK();
53 DEFINE(VMA_VM_MM, offsetof(struct vm_area_struct, vm_mm));
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55 /* DEFINE(NUM_USER_SEGMENTS, TASK_SIZE>>28); */
56 return 0;
57}
Sam Ravnborgb5db8542008-11-29 21:51:05 -080058