arch.h revision b3f8fef12fccb0914b7b28725f42192c279d31c9
1#define BREAKPOINT_VALUE { 0x7f, 0xe0, 0x00, 0x08 }
2#define BREAKPOINT_LENGTH 4
3#define DECR_PC_AFTER_BREAK 0
4
5#define LT_ELFCLASS	ELFCLASS32
6#define LT_ELF_MACHINE	EM_PPC
7
8#ifdef __powerpc64__ // Says 'ltrace' is 64 bits, says nothing about target.
9#define LT_ELFCLASS2	ELFCLASS64
10#define LT_ELF_MACHINE2	EM_PPC64
11#define ARCH_SUPPORTS_OPD
12#endif
13
14#define PLT_REINITALISATION_BP    "_start"
15
16#define PPC_NOP { 0x60, 0x00, 0x00, 0x00 }
17#define PPC_NOP_LENGTH 4
18
19#if (PPC_NOP_LENGTH != BREAKPOINT_LENGTH)
20#error "Length of the breakpoint value not equal to the length of a nop instruction"
21#endif
22