📄 tm-rs6000.h
字号:
#define REGISTER_RAW_SIZE(N) (((unsigned)(N) - FP0_REGNUM) < 32 ? 8 : 4)/* Number of bytes of storage in the program's representation for register N. On the RS6000, all regs are 4 bytes except the floating point regs which are 8-byte doubles. */#define REGISTER_VIRTUAL_SIZE(N) (((unsigned)(N) - FP0_REGNUM) < 32 ? 8 : 4)/* Largest value REGISTER_RAW_SIZE can have. */#define MAX_REGISTER_RAW_SIZE 8/* Largest value REGISTER_VIRTUAL_SIZE can have. */#define MAX_REGISTER_VIRTUAL_SIZE 8/* convert a dbx stab register number (from `r' declaration) to a gdb REGNUM */#define STAB_REG_TO_REGNUM(value) (value)/* Nonzero if register N requires conversion from raw format to virtual format. */#define REGISTER_CONVERTIBLE(N) ((N) >= FP0_REGNUM && (N) <= FPLAST_REGNUM)/* Convert data from raw format for register REGNUM to virtual format for register REGNUM. */#define REGISTER_CONVERT_TO_VIRTUAL(REGNUM,FROM,TO) \ bcopy ((FROM), (TO), REGISTER_RAW_SIZE (REGNUM))/* Convert data from virtual format for register REGNUM to raw format for register REGNUM. */#define REGISTER_CONVERT_TO_RAW(REGNUM,FROM,TO) \ bcopy ((FROM), (TO), REGISTER_RAW_SIZE (REGNUM))/* Return the GDB type object for the "standard" data type of data in register N. */#define REGISTER_VIRTUAL_TYPE(N) \ (((unsigned)(N) - FP0_REGNUM) < 32 ? builtin_type_double : builtin_type_int)/* Store the address of the place in which to copy the structure the subroutine will return. This is called from call_function. *//* in RS6000, struct return addresses are passed as an extra parameter in r3. In function return, callee is not responsible of returning this address back. Since gdb needs to find it, we will store in a designated variable `rs6000_struct_return_address'. */extern unsigned int rs6000_struct_return_address;#define STORE_STRUCT_RETURN(ADDR, SP) \ { write_register (3, (ADDR)); \ rs6000_struct_return_address = (unsigned int)(ADDR); }/* Extract from an array REGBUF containing the (raw) register state a function return value of type TYPE, and copy that, in virtual format, into VALBUF. *//* #define EXTRACT_RETURN_VALUE(TYPE,REGBUF,VALBUF) \ bcopy (REGBUF, VALBUF, TYPE_LENGTH (TYPE)) */#define EXTRACT_RETURN_VALUE(TYPE,REGBUF,VALBUF) \ extract_return_value(TYPE,REGBUF,VALBUF)/* Write into appropriate registers a function return value of type TYPE, given in virtual format. */#define STORE_RETURN_VALUE(TYPE,VALBUF) \ { \ if (TYPE_CODE (TYPE) == TYPE_CODE_FLT) \ \ /* Floating point values are returned starting from FPR1 and up. \ Say a double_double_double type could be returned in \ FPR1/FPR2/FPR3 triple. */ \ \ write_register_bytes (REGISTER_BYTE (FP0_REGNUM+1), (VALBUF), \ TYPE_LENGTH (TYPE)); \ else \ /* Everything else is returned in GPR3 and up. */ \ write_register_bytes (REGISTER_BYTE (GP0_REGNUM+3), (VALBUF), \ TYPE_LENGTH (TYPE)); \ }/* Extract from an array REGBUF containing the (raw) register state the address in which a function should return its structure value, as a CORE_ADDR (or an expression that can be used as one). */#define EXTRACT_STRUCT_VALUE_ADDRESS(REGBUF) rs6000_struct_return_address/* Describe the pointer in each stack frame to the previous stack frame (its caller). *//* FRAME_CHAIN takes a frame's nominal address and produces the frame's chain-pointer. *//* In the case of the RS6000, the frame's nominal address is the address of a 4-byte word containing the calling frame's address. */#define FRAME_CHAIN(thisframe) \ (!inside_entry_file ((thisframe)->pc) ? \ read_memory_integer ((thisframe)->frame, 4) :\ 0)/* Define other aspects of the stack frame. *//* A macro that tells us whether the function invocation represented by FI does not have a frame on the stack associated with it. If it does not, FRAMELESS is set to 1, else 0. */#define FRAMELESS_FUNCTION_INVOCATION(FI, FRAMELESS) \ FRAMELESS = frameless_function_invocation (FI)/* Functions calling alloca() change the value of the stack pointer. We need to use initial stack pointer (which is saved in r31 by gcc) in such cases. If a compiler emits traceback table, then we should use the alloca register specified in traceback table. FIXME. *//* Also, it is a good idea to cache information about frame's saved registers in the frame structure to speed things up. See tm-m88k.h. FIXME. */#define EXTRA_FRAME_INFO \ CORE_ADDR initial_sp; /* initial stack pointer. */ \ struct frame_saved_regs *cache_fsr; /* saved registers *//* Frameless function invocation in IBM RS/6000 is half-done. It perfectly sets up a new frame, e.g. a new frame (in fact stack) pointer, etc, but it doesn't save the %pc. In the following, even though it is considered a frameless invocation, we still need to walk one frame up. */#define INIT_EXTRA_FRAME_INFO(fromleaf, fi) \ fi->initial_sp = 0; \ fi->cache_fsr = 0;#define FRAME_SAVED_PC(FRAME) \ read_memory_integer (read_memory_integer ((FRAME)->frame, 4)+8, 4)#define FRAME_ARGS_ADDRESS(FI) \ (((struct frame_info*)(FI))->initial_sp ? \ ((struct frame_info*)(FI))->initial_sp : \ frame_initial_stack_address (FI))#define FRAME_LOCALS_ADDRESS(FI) FRAME_ARGS_ADDRESS(FI)/* Set VAL to the number of args passed to frame described by FI. Can set VAL to -1, meaning no way to tell. *//* We can't tell how many args there are now that the C compiler delays popping them. */#define FRAME_NUM_ARGS(val,fi) (val = -1)/* Return number of bytes at start of arglist that are not really args. */#define FRAME_ARGS_SKIP 8 /* Not sure on this. FIXMEmgo *//* Put here the code to store, into a struct frame_saved_regs, the addresses of the saved registers of frame described by FRAME_INFO. This includes special registers such as pc and fp saved in special ways in the stack frame. sp is even more special: the address we return for it IS the sp for the next frame. *//* In the following implementation for RS6000, we did *not* save sp. I am not sure if it will be needed. The following macro takes care of gpr's and fpr's only. */#define FRAME_FIND_SAVED_REGS(FRAME_INFO, FRAME_SAVED_REGS) \{ \ int ii; \ CORE_ADDR frame_addr, func_start; \ struct aix_framedata fdata; \ \ /* find the start of the function and collect info about its frame. */\ \ func_start = get_pc_function_start ((FRAME_INFO)->pc) + FUNCTION_START_OFFSET; \ function_frame_info (func_start, &fdata); \ bzero (&(FRAME_SAVED_REGS), sizeof (FRAME_SAVED_REGS)); \ \ /* if there were any saved registers, figure out parent's stack pointer. */ \ frame_addr = 0; \ /* the following is true only if the frame doesn't have a call to alloca(), \ FIXME. */ \ if (fdata.saved_fpr >= 0 || fdata.saved_gpr >= 0) { \ if ((FRAME_INFO)->prev && (FRAME_INFO)->prev->frame) \ frame_addr = (FRAME_INFO)->prev->frame; \ else \ frame_addr = read_memory_integer ((FRAME_INFO)->frame, 4); \ } \ \ /* if != -1, fdata.saved_fpr is the smallest number of saved_fpr. All fpr's \ from saved_fpr to fp31 are saved right underneath caller stack pointer, \ starting from fp31 first. */ \ \ if (fdata.saved_fpr >= 0) { \ for (ii=31; ii >= fdata.saved_fpr; --ii) \ (FRAME_SAVED_REGS).regs [FP0_REGNUM + ii] = frame_addr - ((32 - ii) * 8); \ frame_addr -= (32 - fdata.saved_fpr) * 8; \ } \ \ /* if != -1, fdata.saved_gpr is the smallest number of saved_gpr. All gpr's \ from saved_gpr to gpr31 are saved right under saved fprs, starting \ from r31 first. */ \ \ if (fdata.saved_gpr >= 0) \ for (ii=31; ii >= fdata.saved_gpr; --ii) \ (FRAME_SAVED_REGS).regs [ii] = frame_addr - ((32 - ii) * 4); \}/* Things needed for making the inferior call functions. *//* Push an empty stack frame, to record the current PC, etc. *//* Change these names into rs6k_{push, pop}_frame(). FIXMEmgo. */#define PUSH_DUMMY_FRAME push_dummy_frame ()/* Discard from the stack the innermost frame, restoring all saved registers. */#define POP_FRAME pop_frame ()/* This sequence of words is the instructions: mflr r0 // 0x7c0802a6 // save fpr's stfd r?, num(r1) // 0xd8010000 there should be 32 of this?? // save gpr's stm r0, num(r1) // 0xbc010000 stu r1, num(r1) // 0x94210000 // the function we want to branch might be in a different load // segment. reset the toc register. Note that the actual toc address // will be fix by fix_call_dummy () along with function address. st r2, 0x14(r1) // 0x90410014 save toc register liu r2, 0x1234 // 0x3c401234 reset a new toc value 0x12345678 oril r2, r2,0x5678 // 0x60425678 // load absolute address 0x12345678 to r0 liu r0, 0x1234 // 0x3c001234 oril r0, r0,0x5678 // 0x60005678 mtctr r0 // 0x7c0903a6 ctr <- r0 bctrl // 0x4e800421 jump subroutine 0x12345678 (%ctr) cror 0xf, 0xf, 0xf // 0x4def7b82 brpt // 0x7d821008, breakpoint cror 0xf, 0xf, 0xf // 0x4def7b82 (for 8 byte alignment) We actually start executing by saving the toc register first, since the pushing of the registers is done by PUSH_DUMMY_FRAME. If this were real code, the arguments for the function called by the `bctrl' would be pushed between the `stu' and the `bctrl', and we could allow it to execute through. But the arguments have to be pushed by GDB after the PUSH_DUMMY_FRAME is done, and we cannot allow to push the registers again.*/ #define CALL_DUMMY {0x7c0802a6, 0xd8010000, 0xbc010000, 0x94210000, \ 0x90410014, 0x3c401234, 0x60425678, \ 0x3c001234, 0x60005678, 0x7c0903a6, 0x4e800421, \ 0x4def7b82, 0x7d821008, 0x4def7b82 }/* keep this as multiple of 8 (%sp requires 8 byte alignment) */#define CALL_DUMMY_LENGTH 56#define CALL_DUMMY_START_OFFSET 16/* Insert the specified number of args and function address into a call sequence of the above form stored at DUMMYNAME. */#define FIX_CALL_DUMMY(dummyname, pc, fun, nargs, args, type, using_gcc) \ fix_call_dummy(dummyname, pc, fun, nargs, type)/* Signal handler for SIGWINCH `window size changed'. */#define SIGWINCH_HANDLER aix_resizewindowextern void aix_resizewindow ();/* `lines_per_page' and `chars_per_line' are local to utils.c. Rectify this. */#define SIGWINCH_HANDLER_BODY \ \/* Respond to SIGWINCH `window size changed' signal, and reset GDB's \ window settings approproatelt. */ \ \void \aix_resizewindow () \{ \ int fd = fileno (stdout); \ if (isatty (fd)) { \ int val; \ \ val = atoi (termdef (fd, 'l')); \ if (val > 0) \ lines_per_page = val; \ val = atoi (termdef (fd, 'c')); \ if (val > 0) \ chars_per_line = val; \ } \}/* Flag for machine-specific stuff in shared files. FIXME */#define IBM6000_TARGET/* RS6000/AIX does not support PT_STEP. Has to be simulated. */#define NO_SINGLE_STEP
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -