asm-offsets.c 1.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/*
 * Generate definitions needed by assembly language modules.
 * This code generates raw asm output which is post-processed to extract
 * and format the required data.
 */

#include <linux/sched.h>
8
#include <linux/kbuild.h>
L
Linus Torvalds 已提交
9 10 11

int main(void)
{
12 13 14
	DEFINE(__THREAD_info, offsetof(struct task_struct, stack));
	DEFINE(__THREAD_ksp, offsetof(struct task_struct, thread.ksp));
	DEFINE(__THREAD_per, offsetof(struct task_struct, thread.per_info));
L
Linus Torvalds 已提交
15
	DEFINE(__THREAD_mm_segment,
16
	       offsetof(struct task_struct, thread.mm_segment));
L
Linus Torvalds 已提交
17
	BLANK();
18
	DEFINE(__TASK_pid, offsetof(struct task_struct, pid));
L
Linus Torvalds 已提交
19
	BLANK();
20 21 22
	DEFINE(__PER_atmid, offsetof(per_struct, lowcore.words.perc_atmid));
	DEFINE(__PER_address, offsetof(per_struct, lowcore.words.address));
	DEFINE(__PER_access_id, offsetof(per_struct, lowcore.words.access_id));
L
Linus Torvalds 已提交
23
	BLANK();
24 25 26 27 28
	DEFINE(__TI_task, offsetof(struct thread_info, task));
	DEFINE(__TI_domain, offsetof(struct thread_info, exec_domain));
	DEFINE(__TI_flags, offsetof(struct thread_info, flags));
	DEFINE(__TI_cpu, offsetof(struct thread_info, cpu));
	DEFINE(__TI_precount, offsetof(struct thread_info, preempt_count));
L
Linus Torvalds 已提交
29
	BLANK();
30 31 32 33 34
	DEFINE(__PT_ARGS, offsetof(struct pt_regs, args));
	DEFINE(__PT_PSW, offsetof(struct pt_regs, psw));
	DEFINE(__PT_GPRS, offsetof(struct pt_regs, gprs));
	DEFINE(__PT_ORIG_GPR2, offsetof(struct pt_regs, orig_gpr2));
	DEFINE(__PT_ILC, offsetof(struct pt_regs, ilc));
35
	DEFINE(__PT_SVCNR, offsetof(struct pt_regs, svcnr));
36
	DEFINE(__PT_SIZE, sizeof(struct pt_regs));
L
Linus Torvalds 已提交
37
	BLANK();
38 39 40
	DEFINE(__SF_BACKCHAIN, offsetof(struct stack_frame, back_chain));
	DEFINE(__SF_GPRS, offsetof(struct stack_frame, gprs));
	DEFINE(__SF_EMPTY, offsetof(struct stack_frame, empty1));
L
Linus Torvalds 已提交
41 42
	return 0;
}