more debug output
[linux-2.4.git] / include / asm-cris / elf.h
1 #ifndef __ASMCRIS_ELF_H
2 #define __ASMCRIS_ELF_H
3
4 /*
5  * ELF register definitions..
6  */
7
8 #include <asm/ptrace.h>
9
10 typedef unsigned long elf_greg_t;
11
12 /* Note that NGREG is defined to ELF_NGREG in include/linux/elfcore.h, and is
13    thus exposed to user-space. */
14 #define ELF_NGREG (sizeof (struct user_regs_struct) / sizeof(elf_greg_t))
15 typedef elf_greg_t elf_gregset_t[ELF_NGREG];
16
17 /* A placeholder; CRIS does not have any fp regs.  */
18 typedef unsigned long elf_fpregset_t;
19
20 /*
21  * This is used to ensure we don't load something for the wrong architecture.
22  */
23 #define elf_check_arch(x) ( (x)->e_machine == EM_CRIS )
24
25 /*
26  * These are used to set parameters in the core dumps.
27  */
28 #define ELF_CLASS       ELFCLASS32
29 #define ELF_DATA        ELFDATA2LSB;
30 #define ELF_ARCH        EM_CRIS
31
32         /* SVR4/i386 ABI (pages 3-31, 3-32) says that when the program
33            starts (a register; assume first param register for CRIS)
34            contains a pointer to a function which might be
35            registered using `atexit'.  This provides a mean for the
36            dynamic linker to call DT_FINI functions for shared libraries
37            that have been loaded before the code runs.
38
39            A value of 0 tells we have no such handler.  */
40         
41         /* Explicitly set registers to 0 to increase determinism.  */
42 #define ELF_PLAT_INIT(_r, load_addr)    do { \
43         (_r)->r13 = 0; (_r)->r12 = 0; (_r)->r11 = 0; (_r)->r10 = 0; \
44         (_r)->r9 = 0;  (_r)->r8 = 0;  (_r)->r7 = 0;  (_r)->r6 = 0;  \
45         (_r)->r5 = 0;  (_r)->r4 = 0;  (_r)->r3 = 0;  (_r)->r2 = 0;  \
46         (_r)->r1 = 0;  (_r)->r0 = 0;  (_r)->mof = 0; (_r)->srp = 0; \
47 } while (0)
48
49 #define USE_ELF_CORE_DUMP
50
51 /* The additional layer below is because the stack pointer is missing in 
52    the pt_regs struct, but needed in a core dump. pr_reg is a elf_gregset_t,
53    and should be filled in according to the layout of the user_regs_struct
54    struct; regs is a pt_regs struct. We dump all registers, though several are
55    obviously unnecessary. That way there's less need for intelligence at 
56    the receiving end (i.e. gdb). */
57 #define ELF_CORE_COPY_REGS(pr_reg, regs)                   \
58         pr_reg[0] = regs->r0;                              \
59         pr_reg[1] = regs->r1;                              \
60         pr_reg[2] = regs->r2;                              \
61         pr_reg[3] = regs->r3;                              \
62         pr_reg[4] = regs->r4;                              \
63         pr_reg[5] = regs->r5;                              \
64         pr_reg[6] = regs->r6;                              \
65         pr_reg[7] = regs->r7;                              \
66         pr_reg[8] = regs->r8;                              \
67         pr_reg[9] = regs->r9;                              \
68         pr_reg[10] = regs->r10;                            \
69         pr_reg[11] = regs->r11;                            \
70         pr_reg[12] = regs->r12;                            \
71         pr_reg[13] = regs->r13;                            \
72         pr_reg[14] = rdusp();               /* sp */       \
73         pr_reg[15] = regs->irp;             /* pc */       \
74         pr_reg[16] = 0;                     /* p0 */       \
75         pr_reg[17] = rdvr();                /* vr */       \
76         pr_reg[18] = 0;                     /* p2 */       \
77         pr_reg[19] = 0;                     /* p3 */       \
78         pr_reg[20] = 0;                     /* p4 */       \
79         pr_reg[21] = (regs->dccr & 0xffff); /* ccr */      \
80         pr_reg[22] = 0;                     /* p6 */       \
81         pr_reg[23] = regs->mof;             /* mof */      \
82         pr_reg[24] = 0;                     /* p8 */       \
83         pr_reg[25] = 0;                     /* ibr */      \
84         pr_reg[26] = 0;                     /* irp */      \
85         pr_reg[27] = regs->srp;             /* srp */      \
86         pr_reg[28] = 0;                     /* bar */      \
87         pr_reg[29] = regs->dccr;            /* dccr */     \
88         pr_reg[30] = 0;                     /* brp */      \
89         pr_reg[31] = rdusp();               /* usp */      \
90         pr_reg[32] = 0;                     /* csrinstr */ \
91         pr_reg[33] = 0;                     /* csraddr */  \
92         pr_reg[34] = 0;                     /* csrdata */
93
94
95 #define ELF_EXEC_PAGESIZE       8192
96
97 /* This is the location that an ET_DYN program is loaded if exec'ed.  Typical
98    use of this is to invoke "./ld.so someprog" to test out a new version of
99    the loader.  We need to make sure that it is out of the way of the program
100    that it will "exec", and that there is sufficient room for the brk.  */
101
102 #define ELF_ET_DYN_BASE         (2 * TASK_SIZE / 3)
103
104 /* This yields a mask that user programs can use to figure out what
105    instruction set this CPU supports.  This could be done in user space,
106    but it's not easy, and we've already done it here.  */
107
108 #define ELF_HWCAP       (0)
109
110 /* This yields a string that ld.so will use to load implementation
111    specific libraries for optimization.  This is more specific in
112    intent than poking at uname or /proc/cpuinfo.
113 */
114
115 #define ELF_PLATFORM  (NULL)
116
117 #ifdef __KERNEL__
118 #define SET_PERSONALITY(ex, ibcs2) set_personality((ibcs2)?PER_SVR4:PER_LINUX)
119 #endif
120
121 #endif