96910b6dc8
In order to be able to use asm-offsets.h in C files the existing namespace conflicts must be solved first. In asm-offsets.h there are defines for signal constants, so they can be used in assembler files. Unfortunately the existing defines use a 1:1 mapping for the macro names which results in name space conflicts if the header file would also be used in C files. So rename the created defines and add an "L" prefix to each one since that has already been done for the SIGTRAP define in entry_mm. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Nick Piggin <nickpiggin@yahoo.com.au> Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> Cc: Horst Hartmann <horsth@linux.vnet.ibm.com> Cc: Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: David Miller <davem@davemloft.net> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Roman Zippel <zippel@linux-m68k.org> Cc: <linux-arch@vger.kernel.org> LKML-Reference: <20090831124416.998821502@de.ibm.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
112 lines
4.3 KiB
C
112 lines
4.3 KiB
C
/*
|
|
* This program is used to generate definitions needed by
|
|
* assembly language modules.
|
|
*
|
|
* We use the technique used in the OSF Mach kernel code:
|
|
* generate asm statements containing #defines,
|
|
* compile this file to assembler, and then extract the
|
|
* #defines from the assembly-language output.
|
|
*/
|
|
|
|
#define ASM_OFFSETS_C
|
|
|
|
#include <linux/stddef.h>
|
|
#include <linux/sched.h>
|
|
#include <linux/kernel_stat.h>
|
|
#include <linux/kbuild.h>
|
|
#include <asm/bootinfo.h>
|
|
#include <asm/irq.h>
|
|
#include <asm/amigahw.h>
|
|
#include <linux/font.h>
|
|
|
|
int main(void)
|
|
{
|
|
/* offsets into the task struct */
|
|
DEFINE(TASK_STATE, offsetof(struct task_struct, state));
|
|
DEFINE(TASK_FLAGS, offsetof(struct task_struct, flags));
|
|
DEFINE(TASK_PTRACE, offsetof(struct task_struct, ptrace));
|
|
DEFINE(TASK_THREAD, offsetof(struct task_struct, thread));
|
|
DEFINE(TASK_INFO, offsetof(struct task_struct, thread.info));
|
|
DEFINE(TASK_MM, offsetof(struct task_struct, mm));
|
|
DEFINE(TASK_ACTIVE_MM, offsetof(struct task_struct, active_mm));
|
|
#ifdef CONFIG_MMU
|
|
DEFINE(TASK_TINFO, offsetof(struct task_struct, thread.info));
|
|
#endif
|
|
|
|
/* offsets into the thread struct */
|
|
DEFINE(THREAD_KSP, offsetof(struct thread_struct, ksp));
|
|
DEFINE(THREAD_USP, offsetof(struct thread_struct, usp));
|
|
DEFINE(THREAD_SR, offsetof(struct thread_struct, sr));
|
|
DEFINE(THREAD_FS, offsetof(struct thread_struct, fs));
|
|
DEFINE(THREAD_CRP, offsetof(struct thread_struct, crp));
|
|
DEFINE(THREAD_ESP0, offsetof(struct thread_struct, esp0));
|
|
DEFINE(THREAD_FPREG, offsetof(struct thread_struct, fp));
|
|
DEFINE(THREAD_FPCNTL, offsetof(struct thread_struct, fpcntl));
|
|
DEFINE(THREAD_FPSTATE, offsetof(struct thread_struct, fpstate));
|
|
|
|
/* offsets into the thread_info struct */
|
|
DEFINE(TINFO_PREEMPT, offsetof(struct thread_info, preempt_count));
|
|
DEFINE(TINFO_FLAGS, offsetof(struct thread_info, flags));
|
|
|
|
/* offsets into the pt_regs */
|
|
DEFINE(PT_OFF_D0, offsetof(struct pt_regs, d0));
|
|
DEFINE(PT_OFF_ORIG_D0, offsetof(struct pt_regs, orig_d0));
|
|
DEFINE(PT_OFF_D1, offsetof(struct pt_regs, d1));
|
|
DEFINE(PT_OFF_D2, offsetof(struct pt_regs, d2));
|
|
DEFINE(PT_OFF_D3, offsetof(struct pt_regs, d3));
|
|
DEFINE(PT_OFF_D4, offsetof(struct pt_regs, d4));
|
|
DEFINE(PT_OFF_D5, offsetof(struct pt_regs, d5));
|
|
DEFINE(PT_OFF_A0, offsetof(struct pt_regs, a0));
|
|
DEFINE(PT_OFF_A1, offsetof(struct pt_regs, a1));
|
|
DEFINE(PT_OFF_A2, offsetof(struct pt_regs, a2));
|
|
DEFINE(PT_OFF_PC, offsetof(struct pt_regs, pc));
|
|
DEFINE(PT_OFF_SR, offsetof(struct pt_regs, sr));
|
|
/* bitfields are a bit difficult */
|
|
DEFINE(PT_OFF_FORMATVEC, offsetof(struct pt_regs, pc) + 4);
|
|
|
|
/* offsets into the irq_handler struct */
|
|
DEFINE(IRQ_HANDLER, offsetof(struct irq_node, handler));
|
|
DEFINE(IRQ_DEVID, offsetof(struct irq_node, dev_id));
|
|
DEFINE(IRQ_NEXT, offsetof(struct irq_node, next));
|
|
|
|
/* offsets into the kernel_stat struct */
|
|
DEFINE(STAT_IRQ, offsetof(struct kernel_stat, irqs));
|
|
|
|
/* offsets into the irq_cpustat_t struct */
|
|
DEFINE(CPUSTAT_SOFTIRQ_PENDING, offsetof(irq_cpustat_t, __softirq_pending));
|
|
|
|
/* offsets into the bi_record struct */
|
|
DEFINE(BIR_TAG, offsetof(struct bi_record, tag));
|
|
DEFINE(BIR_SIZE, offsetof(struct bi_record, size));
|
|
DEFINE(BIR_DATA, offsetof(struct bi_record, data));
|
|
|
|
/* offsets into font_desc (drivers/video/console/font.h) */
|
|
DEFINE(FONT_DESC_IDX, offsetof(struct font_desc, idx));
|
|
DEFINE(FONT_DESC_NAME, offsetof(struct font_desc, name));
|
|
DEFINE(FONT_DESC_WIDTH, offsetof(struct font_desc, width));
|
|
DEFINE(FONT_DESC_HEIGHT, offsetof(struct font_desc, height));
|
|
DEFINE(FONT_DESC_DATA, offsetof(struct font_desc, data));
|
|
DEFINE(FONT_DESC_PREF, offsetof(struct font_desc, pref));
|
|
|
|
/* signal defines */
|
|
DEFINE(LSIGSEGV, SIGSEGV);
|
|
DEFINE(LSEGV_MAPERR, SEGV_MAPERR);
|
|
DEFINE(LSIGTRAP, SIGTRAP);
|
|
DEFINE(LTRAP_TRACE, TRAP_TRACE);
|
|
|
|
/* offsets into the custom struct */
|
|
DEFINE(CUSTOMBASE, &amiga_custom);
|
|
DEFINE(C_INTENAR, offsetof(struct CUSTOM, intenar));
|
|
DEFINE(C_INTREQR, offsetof(struct CUSTOM, intreqr));
|
|
DEFINE(C_INTENA, offsetof(struct CUSTOM, intena));
|
|
DEFINE(C_INTREQ, offsetof(struct CUSTOM, intreq));
|
|
DEFINE(C_SERDATR, offsetof(struct CUSTOM, serdatr));
|
|
DEFINE(C_SERDAT, offsetof(struct CUSTOM, serdat));
|
|
DEFINE(C_SERPER, offsetof(struct CUSTOM, serper));
|
|
DEFINE(CIAABASE, &ciaa);
|
|
DEFINE(CIABBASE, &ciab);
|
|
DEFINE(C_PRA, offsetof(struct CIA, pra));
|
|
DEFINE(ZTWOBASE, zTwoBase);
|
|
|
|
return 0;
|
|
}
|