home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / gdb-4.14-src.lha / gdb-4.14 / gdb / config / rs6000 / tm-rs6000.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-29  |  21.3 KB  |  586 lines

  1. /* Parameters for target execution on an RS6000, for GDB, the GNU debugger.
  2.    Copyright 1986, 1987, 1989, 1991, 1992, 1993, 1994
  3.    Free Software Foundation, Inc.
  4.    Contributed by IBM Corporation.
  5.  
  6. This file is part of GDB.
  7.  
  8. This program is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2 of the License, or
  11. (at your option) any later version.
  12.  
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with this program; if not, write to the Free Software
  20. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22. /* Minimum possible text address in AIX */
  23.  
  24. #define TEXT_SEGMENT_BASE    0x10000000
  25.  
  26. /* Load segment of a given pc value. */
  27.  
  28. #define    PC_LOAD_SEGMENT(PC)    pc_load_segment_name(PC)
  29.  
  30. /* AIX cc seems to get this right.  */
  31.  
  32. #define BELIEVE_PCC_PROMOTION 1
  33.  
  34. /* return true if a given `pc' value is in `call dummy' function. */
  35. /* FIXME: This just checks for the end of the stack, which is broken
  36.    for things like stepping through gcc nested function stubs.  */
  37. #define    PC_IN_CALL_DUMMY(STOP_PC, STOP_SP, STOP_FRAME_ADDR)    \
  38.     (STOP_SP < STOP_PC && STOP_PC < STACK_END_ADDR)
  39.  
  40. #if 0
  41. extern unsigned int text_start, data_start;
  42. extern char *corefile;
  43. #endif
  44. extern int inferior_pid;
  45.  
  46. /* We are missing register descriptions in the system header files. Sigh! */
  47.  
  48. struct regs {
  49.     int    gregs [32];        /* general purpose registers */
  50.     int    pc;            /* program conter    */
  51.     int    ps;            /* processor status, or machine state */
  52. };
  53.  
  54. struct fp_status {
  55.     double    fpregs [32];        /* floating GP registers */
  56. };
  57.  
  58.  
  59. /* To be used by function_frame_info. */
  60.  
  61. struct aix_framedata {
  62.   int    offset;                /* # of bytes in gpr's and fpr's are saved */
  63.   int    saved_gpr;            /* smallest # of saved gpr */
  64.   int    saved_fpr;            /* smallest # of saved fpr */
  65.   int    alloca_reg;            /* alloca register number (frame ptr) */
  66.   char    frameless;            /* true if frameless functions. */
  67.   char    nosavedpc;            /* true if pc not saved. */
  68. };
  69.  
  70. void 
  71. function_frame_info PARAMS ((CORE_ADDR, struct aix_framedata *));
  72.  
  73. /* Define the byte order of the machine.  */
  74.  
  75. #define TARGET_BYTE_ORDER    BIG_ENDIAN
  76.  
  77. /* AIX's assembler doesn't grok dollar signs in identifiers.
  78.    So we use dots instead.  This item must be coordinated with G++. */
  79. #undef CPLUS_MARKER
  80. #define CPLUS_MARKER '.'
  81.  
  82. /* Offset from address of function to start of its code.
  83.    Zero on most machines.  */
  84.  
  85. #define FUNCTION_START_OFFSET 0
  86.  
  87. /* Advance PC across any function entry prologue instructions
  88.    to reach some "real" code.  */
  89.  
  90. #define SKIP_PROLOGUE(pc)    pc = skip_prologue (pc)
  91.  
  92. /* If PC is in some function-call trampoline code, return the PC
  93.    where the function itself actually starts.  If not, return NULL.  */
  94.  
  95. #define    SKIP_TRAMPOLINE_CODE(pc)    skip_trampoline_code (pc)
  96.  
  97. /* Number of trap signals we need to skip over, once the inferior process
  98.    starts running. */
  99.  
  100. #define    START_INFERIOR_TRAPS_EXPECTED    2
  101.  
  102. /* AIX has a couple of strange returns from wait().  */
  103.  
  104. #define CHILD_SPECIAL_WAITSTATUS(ourstatus, hoststatus) ( \
  105.   /* "stop after load" status.  */ \
  106.   (hoststatus) == 0x57c ? (ourstatus)->kind = TARGET_WAITKIND_LOADED, 1 : \
  107.   \
  108.   /* signal 0. I have no idea why wait(2) returns with this status word.  */ \
  109.   /* It looks harmless. */ \
  110.   (hoststatus) == 0x7f ? (ourstatus)->kind = TARGET_WAITKIND_SPURIOUS, 1 : \
  111.   \
  112.   /* A normal waitstatus.  Let the usual macros deal with it.  */ \
  113.   0)
  114.  
  115. /* In xcoff, we cannot process line numbers when we see them. This is
  116.    mainly because we don't know the boundaries of the include files. So,
  117.    we postpone that, and then enter and sort(?) the whole line table at
  118.    once, when we are closing the current symbol table in end_symtab(). */
  119.  
  120. #define    PROCESS_LINENUMBER_HOOK()    aix_process_linenos ()
  121.    
  122. /* Immediately after a function call, return the saved pc.
  123.    Can't go through the frames for this because on some machines
  124.    the new frame is not set up until the new function executes
  125.    some instructions.  */
  126.  
  127. #define    SAVED_PC_AFTER_CALL(frame) read_register (LR_REGNUM)
  128.  
  129. /* Address of end of stack space.  */
  130.  
  131. #define STACK_END_ADDR 0x2ff80000
  132.  
  133. /* Stack grows downward.  */
  134.  
  135. #define INNER_THAN <
  136.  
  137. #if 0
  138. /* No, we shouldn't use this. push_arguments() should leave stack in a
  139.    proper alignment! */
  140. /* Stack has strict alignment. */
  141.  
  142. #define STACK_ALIGN(ADDR)    (((ADDR)+7)&-8)
  143. #endif
  144.  
  145. /* This is how argumets pushed onto stack or passed in registers. */
  146.  
  147. #define    PUSH_ARGUMENTS(nargs, args, sp, struct_return, struct_addr) \
  148.   sp = push_arguments(nargs, args, sp, struct_return, struct_addr)
  149.  
  150. /* Sequence of bytes for breakpoint instruction.  */
  151.  
  152. #define BREAKPOINT {0x7d, 0x82, 0x10, 0x08}
  153.  
  154. /* Amount PC must be decremented by after a breakpoint.
  155.    This is often the number of bytes in BREAKPOINT
  156.    but not always.  */
  157.  
  158. #define DECR_PC_AFTER_BREAK 0
  159.  
  160. /* Nonzero if instruction at PC is a return instruction.  */
  161. /* Allow any of the return instructions, including a trapv and a return
  162.    from interrupt.  */
  163.  
  164. #define ABOUT_TO_RETURN(pc)  \
  165.    ((read_memory_integer (pc, 4) & 0xfe8007ff) == 0x4e800020)
  166.  
  167. /* Say how long (ordinary) registers are.  This is a piece of bogosity
  168.    used in push_word and a few other places; REGISTER_RAW_SIZE is the
  169.    real way to know how big a register is.  */
  170.  
  171. #define REGISTER_SIZE 4
  172.  
  173. /* Number of machine registers */
  174.  
  175. #define NUM_REGS 71
  176.  
  177. /* Initializer for an array of names of registers.
  178.    There should be NUM_REGS strings in this initializer.  */
  179.  
  180. #define REGISTER_NAMES  \
  181.  {"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",  \
  182.   "r8", "r9", "r10","r11","r12","r13","r14","r15", \
  183.   "r16","r17","r18","r19","r20","r21","r22","r23", \
  184.   "r24","r25","r26","r27","r28","r29","r30","r31", \
  185.   "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",  \
  186.   "f8", "f9", "f10","f11","f12","f13","f14","f15", \
  187.   "f16","f17","f18","f19","f20","f21","f22","f23", \
  188.   "f24","f25","f26","f27","f28","f29","f30","f31", \
  189.   "pc", "ps", "cnd", "lr", "cnt", "xer", "mq" }
  190.  
  191. /* Register numbers of various important registers.
  192.    Note that some of these values are "real" register numbers,
  193.    and correspond to the general registers of the machine,
  194.    and some are "phony" register numbers which are too large
  195.    to be actual register numbers as far as the user is concerned
  196.    but do serve to get the desired values when passed to read_register.  */
  197.  
  198. #define FP_REGNUM 1        /* Contains address of executing stack frame */
  199. #define SP_REGNUM 1        /* Contains address of top of stack */
  200. #define    TOC_REGNUM 2        /* TOC register */
  201. #define FP0_REGNUM 32        /* Floating point register 0 */
  202. #define    GP0_REGNUM 0        /* GPR register 0 */
  203. #define FP0_REGNUM 32        /* FPR (Floating point) register 0 */
  204. #define FPLAST_REGNUM 63    /* Last floating point register */  
  205.  
  206. /* Special purpose registers... */
  207. /* P.S. keep these in the same order as in /usr/mstsave.h `mstsave' structure, for
  208.    easier processing */
  209.  
  210. #define PC_REGNUM 64        /* Program counter (instruction address %iar) */
  211. #define PS_REGNUM 65        /* Processor (or machine) status (%msr) */
  212. #define    CR_REGNUM 66        /* Condition register */
  213. #define    LR_REGNUM 67        /* Link register */
  214. #define    CTR_REGNUM 68        /* Count register */
  215. #define    XER_REGNUM 69        /* Fixed point exception registers */
  216. #define    MQ_REGNUM 70        /* Multiply/quotient register */
  217.  
  218. #define    FIRST_SP_REGNUM 64    /* first special register number */
  219. #define LAST_SP_REGNUM  70    /* last special register number */
  220.  
  221. /* Total amount of space needed to store our copies of the machine's
  222.    register state, the array `registers'.
  223.  
  224.     32 4-byte gpr's
  225.     32 8-byte fpr's
  226.     7  4-byte special purpose registers, 
  227.  
  228.    total 416 bytes. Keep some extra space for now, in case to add more. */
  229.  
  230. #define REGISTER_BYTES 420
  231.  
  232.  
  233. /* Index within `registers' of the first byte of the space for
  234.    register N.  */
  235.  
  236. #define REGISTER_BYTE(N)  \
  237.  (                                \
  238.   ((N) > FPLAST_REGNUM) ? ((((N) - FPLAST_REGNUM -1) * 4) + 384)\
  239.   :((N) >= FP0_REGNUM) ? ((((N) - FP0_REGNUM) * 8) + 128)    \
  240.   :((N) * 4) )
  241.  
  242. /* Number of bytes of storage in the actual machine representation
  243.    for register N. */
  244. /* Note that the unsigned cast here forces the result of the
  245.    subtractiion to very high positive values if N < FP0_REGNUM */
  246.  
  247. #define REGISTER_RAW_SIZE(N) (((unsigned)(N) - FP0_REGNUM) < 32 ? 8 : 4)
  248.  
  249. /* Number of bytes of storage in the program's representation
  250.    for register N.  On the RS6000, all regs are 4 bytes
  251.    except the floating point regs which are 8-byte doubles.  */
  252.  
  253. #define REGISTER_VIRTUAL_SIZE(N) (((unsigned)(N) - FP0_REGNUM) < 32 ? 8 : 4)
  254.  
  255. /* Largest value REGISTER_RAW_SIZE can have.  */
  256.  
  257. #define MAX_REGISTER_RAW_SIZE 8
  258.  
  259. /* Largest value REGISTER_VIRTUAL_SIZE can have.  */
  260.  
  261. #define MAX_REGISTER_VIRTUAL_SIZE 8
  262.  
  263. /* convert a dbx stab register number (from `r' declaration) to a gdb REGNUM */
  264.  
  265. #define STAB_REG_TO_REGNUM(value)    (value)
  266.  
  267. /* Nonzero if register N requires conversion
  268.    from raw format to virtual format.
  269.    The register format for rs6000 floating point registers is always
  270.    double, we need a conversion if the memory format is float.  */
  271.  
  272. #define REGISTER_CONVERTIBLE(N) ((N) >= FP0_REGNUM && (N) <= FPLAST_REGNUM)
  273.  
  274. /* Convert data from raw format for register REGNUM in buffer FROM
  275.    to virtual format with type TYPE in buffer TO.  */
  276.  
  277. #define REGISTER_CONVERT_TO_VIRTUAL(REGNUM,TYPE,FROM,TO) \
  278. { \
  279.   if (TYPE_LENGTH (TYPE) != REGISTER_RAW_SIZE (REGNUM)) \
  280.     { \
  281.       double val = extract_floating ((FROM), REGISTER_RAW_SIZE (REGNUM)); \
  282.       store_floating ((TO), TYPE_LENGTH (TYPE), val); \
  283.     } \
  284.   else \
  285.     memcpy ((TO), (FROM), REGISTER_RAW_SIZE (REGNUM)); \
  286. }
  287.  
  288. /* Convert data from virtual format with type TYPE in buffer FROM
  289.    to raw format for register REGNUM in buffer TO.  */
  290.  
  291. #define REGISTER_CONVERT_TO_RAW(TYPE,REGNUM,FROM,TO)    \
  292. { \
  293.   if (TYPE_LENGTH (TYPE) != REGISTER_RAW_SIZE (REGNUM)) \
  294.     { \
  295.       double val = extract_floating ((FROM), TYPE_LENGTH (TYPE)); \
  296.       store_floating ((TO), REGISTER_RAW_SIZE (REGNUM), val); \
  297.     } \
  298.   else \
  299.     memcpy ((TO), (FROM), REGISTER_RAW_SIZE (REGNUM)); \
  300. }
  301.  
  302. /* Return the GDB type object for the "standard" data type
  303.    of data in register N.  */
  304.  
  305. #define REGISTER_VIRTUAL_TYPE(N) \
  306.  (((unsigned)(N) - FP0_REGNUM) < 32 ? builtin_type_double : builtin_type_int)
  307.  
  308. /* Store the address of the place in which to copy the structure the
  309.    subroutine will return.  This is called from call_function. */
  310. /* in RS6000, struct return addresses are passed as an extra parameter in r3.
  311.    In function return, callee is not responsible of returning this address back.
  312.    Since gdb needs to find it, we will store in a designated variable
  313.    `rs6000_struct_return_address'. */
  314.  
  315. extern CORE_ADDR rs6000_struct_return_address;
  316.  
  317. #define STORE_STRUCT_RETURN(ADDR, SP)    \
  318.   { write_register (3, (ADDR));        \
  319.     rs6000_struct_return_address = (ADDR); }
  320.  
  321. /* Extract from an array REGBUF containing the (raw) register state
  322.    a function return value of type TYPE, and copy that, in virtual format,
  323.    into VALBUF.  */
  324.  
  325. /* #define EXTRACT_RETURN_VALUE(TYPE,REGBUF,VALBUF) \
  326.   memcpy (VALBUF, REGBUF, TYPE_LENGTH (TYPE)) */
  327.  
  328. #define EXTRACT_RETURN_VALUE(TYPE,REGBUF,VALBUF) \
  329.   extract_return_value(TYPE,REGBUF,VALBUF)
  330.  
  331. /* Write into appropriate registers a function return value
  332.    of type TYPE, given in virtual format.  */
  333.  
  334. #define STORE_RETURN_VALUE(TYPE,VALBUF) \
  335.   {                                    \
  336.     if (TYPE_CODE (TYPE) == TYPE_CODE_FLT)                \
  337.                                     \
  338.      /* Floating point values are returned starting from FPR1 and up.    \
  339.     Say a double_double_double type could be returned in        \
  340.     FPR1/FPR2/FPR3 triple. */                    \
  341.                                     \
  342.       write_register_bytes (REGISTER_BYTE (FP0_REGNUM+1), (VALBUF),    \
  343.                         TYPE_LENGTH (TYPE));    \
  344.     else                                \
  345.       /* Everything else is returned in GPR3 and up. */            \
  346.       write_register_bytes (REGISTER_BYTE (GP0_REGNUM+3), (VALBUF),    \
  347.                         TYPE_LENGTH (TYPE));    \
  348.   }
  349.  
  350.  
  351. /* Extract from an array REGBUF containing the (raw) register state
  352.    the address in which a function should return its structure value,
  353.    as a CORE_ADDR (or an expression that can be used as one).  */
  354.  
  355. #define EXTRACT_STRUCT_VALUE_ADDRESS(REGBUF)    rs6000_struct_return_address
  356.  
  357. /* Describe the pointer in each stack frame to the previous stack frame
  358.    (its caller).  */
  359.  
  360. /* FRAME_CHAIN takes a frame's nominal address
  361.    and produces the frame's chain-pointer. */
  362.  
  363. /* In the case of the RS6000, the frame's nominal address
  364.    is the address of a 4-byte word containing the calling frame's address.  */
  365.  
  366. #define FRAME_CHAIN(thisframe) rs6000_frame_chain (thisframe)
  367. #ifdef __STDC__
  368. struct frame_info;
  369. #endif
  370. CORE_ADDR rs6000_frame_chain PARAMS ((struct frame_info *));
  371.  
  372. /* Define other aspects of the stack frame.  */
  373.  
  374. /* A macro that tells us whether the function invocation represented
  375.    by FI does not have a frame on the stack associated with it.  If it
  376.    does not, FRAMELESS is set to 1, else 0.  */
  377.  
  378. #define FRAMELESS_FUNCTION_INVOCATION(FI, FRAMELESS) \
  379.     FRAMELESS = frameless_function_invocation (FI, 0)
  380.  
  381. /* Functions calling alloca() change the value of the stack pointer. We
  382.    need to use initial stack pointer (which is saved in r31 by gcc) in 
  383.    such cases. If a compiler emits traceback table, then we should use the
  384.    alloca register specified in traceback table. FIXME. */
  385. /* Also, it is a good idea to cache information about frame's saved registers
  386.    in the frame structure to speed things up. See tm-m88k.h. FIXME. */
  387.  
  388. #define    EXTRA_FRAME_INFO    \
  389.     CORE_ADDR initial_sp;            /* initial stack pointer. */ \
  390.     struct frame_saved_regs *cache_fsr;    /* saved registers      */
  391.  
  392. #define INIT_FRAME_PC_FIRST(fromleaf, prev) \
  393.   prev->pc = (fromleaf ? SAVED_PC_AFTER_CALL (prev->next) : \
  394.           prev->next ? FRAME_SAVED_PC (prev->next) : read_pc ());
  395. #define INIT_FRAME_PC(fromleaf, prev) /* nothing */
  396. #define    INIT_EXTRA_FRAME_INFO(fromleaf, fi)    \
  397.   fi->initial_sp = 0;        \
  398.   fi->cache_fsr = 0; \
  399.   if (fi->next != (CORE_ADDR)0 \
  400.       && fi->pc < TEXT_SEGMENT_BASE) \
  401.     /* We're in get_prev_frame_info */ \
  402.     /* and this is a special signal frame.  */ \
  403.     /* (fi->pc will be some low address in the kernel, */ \
  404.     /*  to which the signal handler returns).  */ \
  405.     fi->signal_handler_caller = 1;
  406.  
  407. /* If the kernel has to deliver a signal, it pushes a sigcontext
  408.    structure on the stack and then calls the signal handler, passing
  409.    the address of the sigcontext in an argument register. Usually
  410.    the signal handler doesn't save this register, so we have to
  411.    access the sigcontext structure via an offset from the signal handler
  412.    frame.
  413.    The following constants were determined by experimentation on AIX 3.2.  */
  414. #define SIG_FRAME_PC_OFFSET 96
  415. #define SIG_FRAME_FP_OFFSET 284
  416.  
  417. /* Frameless function invocation in IBM RS/6000 is sometimes
  418.    half-done. It perfectly sets up a new frame, e.g. a new frame (in
  419.    fact stack) pointer, etc, but it doesn't save the %pc.  We call
  420.    frameless_function_invocation to tell us how to get the %pc.  */
  421.  
  422. #define FRAME_SAVED_PC(FRAME)                    \
  423.     (frameless_function_invocation (FRAME, 1)        \
  424.      ? SAVED_PC_AFTER_CALL (FRAME)                \
  425.      : (FRAME)->signal_handler_caller            \
  426.        ? read_memory_integer ((FRAME)->frame + SIG_FRAME_PC_OFFSET, 4) \
  427.        : read_memory_integer (rs6000_frame_chain (FRAME) + 8, 4))
  428.  
  429. #define FRAME_ARGS_ADDRESS(FI)    \
  430.   (((struct frame_info*)(FI))->initial_sp ?        \
  431.     ((struct frame_info*)(FI))->initial_sp :    \
  432.     frame_initial_stack_address (FI))
  433.  
  434. #define FRAME_LOCALS_ADDRESS(FI)    FRAME_ARGS_ADDRESS(FI)
  435.  
  436.  
  437. /* Set VAL to the number of args passed to frame described by FI.
  438.    Can set VAL to -1, meaning no way to tell.  */
  439.  
  440. /* We can't tell how many args there are
  441.    now that the C compiler delays popping them.  */
  442.  
  443. #define FRAME_NUM_ARGS(val,fi) (val = -1)
  444.  
  445. /* Return number of bytes at start of arglist that are not really args.  */
  446.  
  447. #define FRAME_ARGS_SKIP 8    /* Not sure on this. FIXMEmgo */
  448.  
  449. /* Put here the code to store, into a struct frame_saved_regs,
  450.    the addresses of the saved registers of frame described by FRAME_INFO.
  451.    This includes special registers such as pc and fp saved in special
  452.    ways in the stack frame.  sp is even more special:
  453.    the address we return for it IS the sp for the next frame.  */
  454. /* In the following implementation for RS6000, we did *not* save sp. I am
  455.    not sure if it will be needed. The following macro takes care of gpr's
  456.    and fpr's only. */
  457.  
  458. #define FRAME_FIND_SAVED_REGS(FRAME_INFO, FRAME_SAVED_REGS)        \
  459. {                                    \
  460.   int ii;                                \
  461.   CORE_ADDR frame_addr, func_start;                    \
  462.   struct aix_framedata fdata;                        \
  463.                                     \
  464.   /* find the start of the function and collect info about its frame. */\
  465.                                     \
  466.   func_start = get_pc_function_start ((FRAME_INFO)->pc) + FUNCTION_START_OFFSET; \
  467.   function_frame_info (func_start, &fdata);                \
  468.   memset (&(FRAME_SAVED_REGS), '\0', sizeof (FRAME_SAVED_REGS));        \
  469.                                     \
  470.   /* if there were any saved registers, figure out parent's stack pointer. */ \
  471.   frame_addr = 0;                            \
  472.   /* the following is true only if the frame doesn't have a call to alloca(), \
  473.       FIXME. */                                \
  474.   if (fdata.saved_fpr >= 0 || fdata.saved_gpr >= 0) {            \
  475.     if ((FRAME_INFO)->prev && (FRAME_INFO)->prev->frame)        \
  476.       frame_addr = (FRAME_INFO)->prev->frame;                \
  477.     else                                \
  478.       frame_addr = read_memory_integer ((FRAME_INFO)->frame, 4);    \
  479.   }                                    \
  480.                                     \
  481.   /* if != -1, fdata.saved_fpr is the smallest number of saved_fpr. All fpr's \
  482.      from saved_fpr to fp31 are saved right underneath caller stack pointer, \
  483.      starting from fp31 first. */                    \
  484.                                     \
  485.   if (fdata.saved_fpr >= 0) {                        \
  486.     for (ii=31; ii >= fdata.saved_fpr; --ii)                 \
  487.       (FRAME_SAVED_REGS).regs [FP0_REGNUM + ii] = frame_addr - ((32 - ii) * 8); \
  488.     frame_addr -= (32 - fdata.saved_fpr) * 8;                \
  489.   }                                    \
  490.                                     \
  491.   /* if != -1, fdata.saved_gpr is the smallest number of saved_gpr. All gpr's \
  492.      from saved_gpr to gpr31 are saved right under saved fprs, starting    \
  493.      from r31 first. */                            \
  494.                                     \
  495.   if (fdata.saved_gpr >= 0)                        \
  496.     for (ii=31; ii >= fdata.saved_gpr; --ii)                \
  497.       (FRAME_SAVED_REGS).regs [ii] = frame_addr - ((32 - ii) * 4);    \
  498. }
  499.  
  500.  
  501. /* Things needed for making the inferior call functions.  */
  502.  
  503. /* Push an empty stack frame, to record the current PC, etc.  */
  504. /* Change these names into rs6k_{push, pop}_frame(). FIXMEmgo. */
  505.  
  506. #define PUSH_DUMMY_FRAME    push_dummy_frame ()
  507.  
  508. /* Discard from the stack the innermost frame, 
  509.    restoring all saved registers.  */
  510.  
  511. #define POP_FRAME    pop_frame ()
  512.  
  513. /* This sequence of words is the instructions:
  514.  
  515.     mflr    r0        // 0x7c0802a6
  516.                 // save fpr's
  517.     stfd    r?, num(r1)    // 0xd8010000 there should be 32 of this??
  518.                 // save gpr's
  519.     stm    r0, num(r1)    // 0xbc010000
  520.     stu    r1, num(r1)    // 0x94210000
  521.  
  522.     // the function we want to branch might be in a different load 
  523.     // segment. reset the toc register. Note that the actual toc address
  524.     // will be fix by fix_call_dummy () along with function address.
  525.  
  526.     st    r2, 0x14(r1)    // 0x90410014 save toc register
  527.     liu    r2, 0x1234    // 0x3c401234 reset a new toc value 0x12345678
  528.     oril    r2, r2,0x5678   // 0x60425678    
  529.  
  530.                 // load absolute address 0x12345678 to r0
  531.     liu    r0, 0x1234    // 0x3c001234
  532.     oril    r0, r0,0x5678    // 0x60005678
  533.     mtctr    r0        // 0x7c0903a6 ctr <- r0
  534.     bctrl            // 0x4e800421 jump subroutine 0x12345678 (%ctr)
  535.     cror    0xf, 0xf, 0xf    // 0x4def7b82
  536.     brpt            // 0x7d821008, breakpoint
  537.     cror    0xf, 0xf, 0xf    // 0x4def7b82 (for 8 byte alignment)
  538.  
  539.  
  540.   We actually start executing by saving the toc register first, since the pushing 
  541.   of the registers is done by PUSH_DUMMY_FRAME.  If this were real code,
  542.   the arguments for the function called by the `bctrl' would be pushed
  543.   between the `stu' and the `bctrl', and we could allow it to execute through.
  544.   But the arguments have to be pushed by GDB after the PUSH_DUMMY_FRAME is done,
  545.   and we cannot allow to push the registers again.
  546. */
  547.     
  548. #define CALL_DUMMY {0x7c0802a6, 0xd8010000, 0xbc010000, 0x94210000, \
  549.             0x90410014, 0x3c401234, 0x60425678,            \
  550.             0x3c001234, 0x60005678, 0x7c0903a6, 0x4e800421, \
  551.             0x4def7b82, 0x7d821008, 0x4def7b82 }
  552.  
  553.  
  554. /* keep this as multiple of 8 (%sp requires 8 byte alignment) */
  555. #define CALL_DUMMY_LENGTH 56
  556.  
  557. #define CALL_DUMMY_START_OFFSET 16
  558.  
  559. /* Insert the specified number of args and function address
  560.    into a call sequence of the above form stored at DUMMYNAME.  */
  561.  
  562. #define FIX_CALL_DUMMY(dummyname, pc, fun, nargs, args, type, using_gcc) \
  563.     fix_call_dummy(dummyname, pc, fun, nargs, type)
  564.  
  565. /* Usually a function pointer's representation is simply the address of
  566.    the function. On the RS/6000 however, a function pointer is represented
  567.    by a pointer to a TOC entry. This TOC entry contains three words,
  568.    the first word is the address of the function, the second word is the
  569.    TOC pointer (r2), and the third word is the static chain value.
  570.    Throughout GDB it is currently assumed that a function pointer contains
  571.    the address of the function, which is not easy to fix.
  572.    In addition, the conversion of a function address to a function
  573.    pointer would require allocation of a TOC entry in the inferior's
  574.    memory space, with all its drawbacks.
  575.    To be able to call C++ virtual methods in the inferior (which are called
  576.    via function pointers), find_function_addr uses this macro to
  577.    get the function address from a function pointer.  */
  578. #define CONVERT_FROM_FUNC_PTR_ADDR(ADDR) read_memory_integer (ADDR, 4)
  579.  
  580. /* Flag for machine-specific stuff in shared files.  FIXME */
  581. #define IBM6000_TARGET
  582.  
  583. /* RS6000/AIX does not support PT_STEP.  Has to be simulated.  */
  584.  
  585. #define NO_SINGLE_STEP
  586.