home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / gdb-4.9 / gdb / config / rs6000 / tm-rs6000.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-12  |  20.0 KB  |  578 lines

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