blob: 04692c4d0fd63e39f6e9284aef703714b539b434 [file] [log] [blame]
Juan Cespedes5bfb0612002-03-31 20:01:28 +02001#define BREAKPOINT_VALUE { 0x7f, 0xe0, 0x00, 0x08 }
Juan Cespedesf1bfe202002-03-27 00:22:23 +01002#define BREAKPOINT_LENGTH 4
3#define DECR_PC_AFTER_BREAK 0
Juan Cespedesd914a202004-11-10 00:15:33 +01004
5#define LT_ELFCLASS ELFCLASS32
6#define LT_ELF_MACHINE EM_PPC
Paul Gilliam76c61f12006-06-14 06:55:21 +02007#ifdef __powerpc64__ // Says 'ltrace' is 64 bits, says nothing about target.
Ian Wienand9a2ad352006-02-20 22:44:45 +01008#define LT_ELFCLASS2 ELFCLASS64
9#define LT_ELF_MACHINE2 EM_PPC64
10
Paul Gilliambe320772006-04-24 22:06:23 +020011#define PLT_REINITALISATION_BP "_start"
Ian Wienand9a2ad352006-02-20 22:44:45 +010012
Paul Gilliam76c61f12006-06-14 06:55:21 +020013#define PPC_NOP { 0x60, 0x00, 0x00, 0x00 }
14#define PPC_NOP_LENGTH 4
15
16#if (PPC_NOP_LENGTH != BREAKPOINT_LENGTH)
17#error "Length of the breakpoint value not equal to the length of a nop instruction"
18#endif
19
20
Ian Wienand9a2ad352006-02-20 22:44:45 +010021#endif