📄 tm-pyr.h
字号:
/* OBSOLETE as a CORE_ADDR (or an expression that can be used as one). *x/ *//* OBSOLETE /* FIXME *x/ *//* OBSOLETE #define EXTRACT_STRUCT_VALUE_ADDRESS(REGBUF) \ *//* OBSOLETE ( ((int *)(REGBUF)) [TR0_REGNUM]) *//* OBSOLETE *//* OBSOLETE *//* OBSOLETE /* Describe the pointer in each stack frame to the previous stack frame *//* OBSOLETE (its caller). *x/ *//* OBSOLETE *//* OBSOLETE #define EXTRA_FRAME_INFO \ *//* OBSOLETE CORE_ADDR bottom; \ *//* OBSOLETE CORE_ADDR frame_cfp; \ *//* OBSOLETE CORE_ADDR frame_window_addr; *//* OBSOLETE *//* OBSOLETE /* The bottom field is misnamed, since it might imply that memory from *//* OBSOLETE bottom to frame contains this frame. That need not be true if *//* OBSOLETE stack frames are allocated in different segments (e.g. some on a *//* OBSOLETE stack, some on a heap in the data segment). *x/ *//* OBSOLETE *//* OBSOLETE #define INIT_EXTRA_FRAME_INFO(fromleaf, fci) \ *//* OBSOLETE do { \ *//* OBSOLETE (fci)->frame_window_addr = (fci)->frame; \ *//* OBSOLETE (fci)->bottom = \ *//* OBSOLETE ((fci)->next ? \ *//* OBSOLETE ((fci)->frame == (fci)->next->frame ? \ *//* OBSOLETE (fci)->next->bottom : (fci)->next->frame) : \ *//* OBSOLETE read_register (SP_REGNUM)); \ *//* OBSOLETE (fci)->frame_cfp = \ *//* OBSOLETE read_register (CFP_REGNUM); \ *//* OBSOLETE /***fprintf (stderr, \ *//* OBSOLETE "[[creating new frame for %0x,pc=%0x,csp=%0x]]\n", \ *//* OBSOLETE (fci)->frame, (fci)->pc,(fci)->frame_cfp);*x/ \ *//* OBSOLETE } while (0); *//* OBSOLETE *//* OBSOLETE /* FRAME_CHAIN takes a frame's nominal address *//* OBSOLETE and produces the frame's chain-pointer. *x/ *//* OBSOLETE *//* OBSOLETE /* In the case of the pyr, the frame's nominal address is the address *//* OBSOLETE of parameter register 0. The previous frame is found 32 words up. *x/ *//* OBSOLETE *//* OBSOLETE #define FRAME_CHAIN(thisframe) \ *//* OBSOLETE ( (thisframe) -> frame - CONTROL_STACK_FRAME_SIZE) *//* OBSOLETE *//* OBSOLETE /*((thisframe) >= CONTROL_STACK_ADDR))*x/ *//* OBSOLETE *//* OBSOLETE /* Define other aspects of the stack frame. *x/ *//* OBSOLETE *//* OBSOLETE /* A macro that tells us whether the function invocation represented *//* OBSOLETE by FI does not have a frame on the stack associated with it. If it *//* OBSOLETE does not, FRAMELESS is set to 1, else 0. *//* OBSOLETE *//* OBSOLETE I do not understand what this means on a Pyramid, where functions *//* OBSOLETE *always* have a control-stack frame, but may or may not have a *//* OBSOLETE frame on the data stack. Since GBD uses the value of the *//* OBSOLETE control stack pointer as its "address" of a frame, FRAMELESS *//* OBSOLETE is always 1, so does not need to be defined. *x/ *//* OBSOLETE *//* OBSOLETE *//* OBSOLETE /* Where is the PC for a specific frame *x/ *//* OBSOLETE *//* OBSOLETE #define FRAME_SAVED_PC(fi) \ *//* OBSOLETE ((CORE_ADDR) (read_memory_integer ( (fi) -> frame + 60, 4))) *//* OBSOLETE *//* OBSOLETE /* There may be bugs in FRAME_ARGS_ADDRESS and FRAME_LOCALS_ADDRESS; *//* OBSOLETE or there may be bugs in accessing the registers that break *//* OBSOLETE their definitions. *//* OBSOLETE Having the macros expand into functions makes them easier to debug. *//* OBSOLETE When the bug is finally located, the inline macro defintions can *//* OBSOLETE be un-#if 0ed, and frame_args_addr and frame_locals_address can *//* OBSOLETE be deleted from pyr-dep.c *x/ *//* OBSOLETE *//* OBSOLETE /* If the argument is on the stack, it will be here. *x/ *//* OBSOLETE #define FRAME_ARGS_ADDRESS(fi) \ *//* OBSOLETE frame_args_addr(fi) *//* OBSOLETE *//* OBSOLETE #define FRAME_LOCALS_ADDRESS(fi) \ *//* OBSOLETE frame_locals_address(fi) *//* OBSOLETE *//* OBSOLETE /* The following definitions doesn't seem to work. *//* OBSOLETE I don't understand why. *x/ *//* OBSOLETE #if 0 *//* OBSOLETE #define FRAME_ARGS_ADDRESS(fi) \ *//* OBSOLETE /*(FRAME_FP(fi) + (13*4))*x/ (read_register (CFP_REGNUM)) *//* OBSOLETE *//* OBSOLETE #define FRAME_LOCALS_ADDRESS(fi) \ *//* OBSOLETE ((fi)->frame +(16*4)) *//* OBSOLETE *//* OBSOLETE #endif /* 0 *x/ *//* OBSOLETE *//* OBSOLETE /* Return number of args passed to a frame. *//* OBSOLETE Can return -1, meaning no way to tell. *x/ *//* OBSOLETE *//* OBSOLETE #define FRAME_NUM_ARGS(fi) (-1) *//* OBSOLETE *//* OBSOLETE /* Return number of bytes at start of arglist that are not really args. *x/ *//* OBSOLETE *//* OBSOLETE #define FRAME_ARGS_SKIP 0 *//* OBSOLETE *//* OBSOLETE /* Put here the code to store, into a struct frame_saved_regs, *//* OBSOLETE the addresses of the saved registers of frame described by FRAME_INFO. *//* OBSOLETE This includes special registers such as pc and fp saved in special *//* OBSOLETE ways in the stack frame. sp is even more special: *//* OBSOLETE the address we return for it IS the sp for the next frame. *//* OBSOLETE *//* OBSOLETE Note that on register window machines, we are currently making the *//* OBSOLETE assumption that window registers are being saved somewhere in the *//* OBSOLETE frame in which they are being used. If they are stored in an *//* OBSOLETE inferior frame, find_saved_register will break. *//* OBSOLETE *//* OBSOLETE On pyrs, frames of window registers are stored contiguously on a *//* OBSOLETE separate stack. All window registers are always stored. *//* OBSOLETE The pc and psw (gr15 and gr14) are also always saved: the call *//* OBSOLETE insn saves them in pr15 and pr14 of the new frame (tr15,tr14 of the *//* OBSOLETE old frame). *//* OBSOLETE The data-stack frame pointer (CFP) is only saved in functions which *//* OBSOLETE allocate a (data)stack frame (with "adsf"). We detect them by *//* OBSOLETE looking at the first insn of the procedure. *//* OBSOLETE *//* OBSOLETE Other non-window registers (gr0-gr11) are never saved. Pyramid's C *//* OBSOLETE compiler and gcc currently ignore them, so it's not an issue. *x/ *//* OBSOLETE *//* OBSOLETE #define FRAME_FIND_SAVED_REGS(fi_p, frame_saved_regs) \ *//* OBSOLETE { register int regnum; \ *//* OBSOLETE register CORE_ADDR pc; \ *//* OBSOLETE register CORE_ADDR fn_start_pc; \ *//* OBSOLETE register int first_insn; \ *//* OBSOLETE register CORE_ADDR prev_cf_addr; \ *//* OBSOLETE register int window_ptr; \ *//* OBSOLETE if (!fi_p) fatal ("Bad frame info struct in FRAME_FIND_SAVED_REGS"); \ *//* OBSOLETE memset (&(frame_saved_regs), '\0', sizeof (frame_saved_regs)); \ *//* OBSOLETE \ *//* OBSOLETE window_ptr = prev_cf_addr = FRAME_FP(fi_p); \ *//* OBSOLETE \ *//* OBSOLETE for (regnum = 16 ; regnum < 64; regnum++,window_ptr+=4) \ *//* OBSOLETE { \ *//* OBSOLETE (frame_saved_regs).regs[regnum] = window_ptr; \ *//* OBSOLETE } \ *//* OBSOLETE \ *//* OBSOLETE /* In each window, psw, and pc are "saved" in tr14,tr15. *x/ \ *//* OBSOLETE /*** psw is sometimes saved in gr12 (so sez <sys/pcb.h>) *x/ \ *//* OBSOLETE (frame_saved_regs).regs[PS_REGNUM] = FRAME_FP(fi_p) + (14*4); \ *//* OBSOLETE \ *//* OBSOLETE /*(frame_saved_regs).regs[PC_REGNUM] = (frame_saved_regs).regs[31];*x/ \ *//* OBSOLETE (frame_saved_regs).regs[PC_REGNUM] = FRAME_FP(fi_p) + ((15+32)*4); \ *//* OBSOLETE \ *//* OBSOLETE /* Functions that allocate a frame save sp *where*? *x/ \ *//* OBSOLETE /*first_insn = read_memory_integer (get_pc_function_start ((fi_p)->pc),4); *x/ \ *//* OBSOLETE \ *//* OBSOLETE fn_start_pc = (get_pc_function_start ((fi_p)->pc)); \ *//* OBSOLETE first_insn = read_memory_integer(fn_start_pc, 4); \ *//* OBSOLETE \ *//* OBSOLETE if (0x08 == ((first_insn >> 20) &0x0ff)) { \ *//* OBSOLETE /* NB: because WINDOW_REGISTER_P(cfp) is false, a saved cfp \ *//* OBSOLETE in this frame is only visible in this frame's callers. \ *//* OBSOLETE That means the cfp we mark saved is my caller's cfp, ie pr13. \ *//* OBSOLETE I don't understand why we don't have to do that for pc, too. *x/ \ *//* OBSOLETE \ *//* OBSOLETE (frame_saved_regs).regs[CFP_REGNUM] = FRAME_FP(fi_p)+(13*4); \ *//* OBSOLETE \ *//* OBSOLETE (frame_saved_regs).regs[SP_REGNUM] = \ *//* OBSOLETE read_memory_integer (FRAME_FP(fi_p)+((13+32)*4),4); \ *//* OBSOLETE } \ *//* OBSOLETE \ *//* OBSOLETE /* \ *//* OBSOLETE *(frame_saved_regs).regs[CFP_REGNUM] = (frame_saved_regs).regs[61]; \ *//* OBSOLETE * (frame_saved_regs).regs[SP_REGNUM] = \ *//* OBSOLETE * read_memory_integer (FRAME_FP(fi_p)+((13+32)*4),4); \ *//* OBSOLETE *x/ \ *//* OBSOLETE \ *//* OBSOLETE (frame_saved_regs).regs[CSP_REGNUM] = prev_cf_addr; \ *//* OBSOLETE } *//* OBSOLETE *//* OBSOLETE /* Things needed for making the inferior call functions. *x/ *//* OBSOLETE #if 0 *//* OBSOLETE /* These are all lies. These macro definitions are appropriate for a *//* OBSOLETE SPARC. On a pyramid, pushing a dummy frame will *//* OBSOLETE surely involve writing the control stack pointer, *//* OBSOLETE then saving the pc. This requires a privileged instruction. *//* OBSOLETE Maybe one day Pyramid can be persuaded to add a syscall to do this. *//* OBSOLETE Until then, we are out of luck. *x/ *//* OBSOLETE *//* OBSOLETE /* Push an empty stack frame, to record the current PC, etc. *x/ *//* OBSOLETE *//* OBSOLETE #define PUSH_DUMMY_FRAME \ *//* OBSOLETE { register CORE_ADDR sp = read_register (SP_REGNUM);\ *//* OBSOLETE register int regnum; \ *//* OBSOLETE sp = push_word (sp, 0); /* arglist *x/ \ *//* OBSOLETE for (regnum = 11; regnum >= 0; regnum--) \ *//* OBSOLETE sp = push_word (sp, read_register (regnum)); \ *//* OBSOLETE sp = push_word (sp, read_register (PC_REGNUM)); \ *//* OBSOLETE sp = push_word (sp, read_register (FP_REGNUM)); \ *//* OBSOLETE /* sp = push_word (sp, read_register (AP_REGNUM));*x/ \ *//* OBSOLETE sp = push_word (sp, (read_register (PS_REGNUM) & 0xffef) \ *//* OBSOLETE + 0x2fff0000); \ *//* OBSOLETE sp = push_word (sp, 0); \ *//* OBSOLETE write_register (SP_REGNUM, sp); \ *//* OBSOLETE write_register (FP_REGNUM, sp); \ *//* OBSOLETE /* write_register (AP_REGNUM, sp + 17 * sizeof (int));*x/ } *//* OBSOLETE *//* OBSOLETE /* Discard from the stack the innermost frame, restoring all registers. *x/ *//* OBSOLETE *//* OBSOLETE #define POP_FRAME \ *//* OBSOLETE { register CORE_ADDR fp = read_register (FP_REGNUM); \ *//* OBSOLETE register int regnum; \ *//* OBSOLETE register int regmask = read_memory_integer (fp + 4, 4); \ *//* OBSOLETE write_register (PS_REGNUM, \ *//* OBSOLETE (regmask & 0xffff) \ *//* OBSOLETE | (read_register (PS_REGNUM) & 0xffff0000)); \ *//* OBSOLETE write_register (PC_REGNUM, read_memory_integer (fp + 16, 4)); \ *//* OBSOLETE write_register (FP_REGNUM, read_memory_integer (fp + 12, 4)); \ *//* OBSOLETE /* write_register (AP_REGNUM, read_memory_integer (fp + 8, 4));*x/ \ *//* OBSOLETE fp += 16; \ *//* OBSOLETE for (regnum = 0; regnum < 12; regnum++) \ *//* OBSOLETE if (regmask & (0x10000 << regnum)) \ *//* OBSOLETE write_register (regnum, read_memory_integer (fp += 4, 4)); \ *//* OBSOLETE fp = fp + 4 + ((regmask >> 30) & 3); \ *//* OBSOLETE if (regmask & 0x20000000) \ *//* OBSOLETE { regnum = read_memory_integer (fp, 4); \ *//* OBSOLETE fp += (regnum + 1) * 4; } \ *//* OBSOLETE write_register (SP_REGNUM, fp); \ *//* OBSOLETE set_current_frame (read_register (FP_REGNUM)); } *//* OBSOLETE *//* OBSOLETE /* This sequence of words is the instructions *//* OBSOLETE calls #69, @#32323232 *//* OBSOLETE bpt *//* OBSOLETE Note this is 8 bytes. *x/ *//* OBSOLETE *//* OBSOLETE #define CALL_DUMMY {0x329f69fb, 0x03323232} *//* OBSOLETE *//* OBSOLETE #define CALL_DUMMY_START_OFFSET 0 /* Start execution at beginning of dummy *x/ *//* OBSOLETE *//* OBSOLETE /* Insert the specified number of args and function address *//* OBSOLETE into a call sequence of the above form stored at DUMMYNAME. *x/ *//* OBSOLETE *//* OBSOLETE #define FIX_CALL_DUMMY(dummyname, pc, fun, nargs, args, type, gcc_p) \ *//* OBSOLETE { *((char *) dummyname + 1) = nargs; \ *//* OBSOLETE *(int *)((char *) dummyname + 3) = fun; } *//* OBSOLETE #endif /* 0 *x/ *//* OBSOLETE *//* OBSOLETE #define POP_FRAME \ *//* OBSOLETE { error ("The return command is not supported on this machine."); } */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -