1 /* Macro definitions for i386, Unix System V.
2 Copyright (C) 1986, 1987, 1989, 1991 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
25 #define TARGET_BYTE_ORDER LITTLE_ENDIAN
27 /* define this if you don't have the extension to coff that allows
28 * file names to appear in the string table
31 #define COFF_NO_LONG_FILE_NAMES
33 /* turn this on when rest of gdb is ready */
36 /* Define this if the C compiler puts an underscore at the front
37 of external names before giving them to the linker. */
39 /* #define NAMES_HAVE_UNDERSCORE */
41 /* number of traps that happen between exec'ing the shell
42 * to run an inferior, and when we finally get to
43 * the inferior code. This is 2 on most implementations.
45 #ifndef START_INFERIOR_TRAPS_EXPECTED
46 #define START_INFERIOR_TRAPS_EXPECTED 4
49 /* Offset from address of function to start of its code.
50 Zero on most machines. */
52 #define FUNCTION_START_OFFSET 0
54 /* Advance PC across any function entry prologue instructions
55 to reach some "real" code. */
57 #define SKIP_PROLOGUE(frompc) {(frompc) = i386_skip_prologue((frompc));}
59 /* Immediately after a function call, return the saved pc.
60 Can't always go through the frames for this because on some machines
61 the new frame is not set up until the new function executes
64 #define SAVED_PC_AFTER_CALL(frame) \
65 (read_memory_integer (read_register (SP_REGNUM), 4))
67 /* Address of end of stack space. */
69 #define STACK_END_ADDR 0x80000000
71 /* Stack grows downward. */
75 /* Sequence of bytes for breakpoint instruction. */
77 #define BREAKPOINT {0xcc}
79 /* Amount PC must be decremented by after a breakpoint.
80 This is often the number of bytes in BREAKPOINT
83 #ifndef DECR_PC_AFTER_BREAK
84 #define DECR_PC_AFTER_BREAK 1
87 /* Nonzero if instruction at PC is a return instruction. */
89 #define ABOUT_TO_RETURN(pc) (read_memory_integer (pc, 1) == 0xc3)
91 /* Return 1 if P points to an invalid floating point value.
92 LEN is the length in bytes -- not relevant on the 386. */
94 #define INVALID_FLOAT(p, len) (0)
97 /* code to execute to print interesting information about the
98 floating point processor (if any)
99 No need to define if there is nothing to do.
100 On the 386, unfortunately this code is host-dependent (and lives
101 in the i386-xdep.c file), so we can't
102 do this unless we *know* we aren't cross-debugging. FIXME.
104 #define FLOAT_INFO { i386_float_info (); }
107 /* Say how long (ordinary) registers are. */
109 #define REGISTER_TYPE long
111 /* Number of machine registers */
115 /* Initializer for an array of names of registers.
116 There should be NUM_REGS strings in this initializer. */
118 /* the order of the first 8 registers must match the compiler's
119 * numbering scheme (which is the same as the 386 scheme)
120 * also, this table must match regmap in i386-pinsn.c.
122 #define REGISTER_NAMES { "eax", "ecx", "edx", "ebx", \
123 "esp", "ebp", "esi", "edi", \
124 "eip", "ps", "cs", "ss", \
125 "ds", "es", "fs", "gs", \
128 /* Register numbers of various important registers.
129 Note that some of these values are "real" register numbers,
130 and correspond to the general registers of the machine,
131 and some are "phony" register numbers which are too large
132 to be actual register numbers as far as the user is concerned
133 but do serve to get the desired values when passed to read_register. */
135 #define FP_REGNUM 5 /* Contains address of executing stack frame */
136 #define SP_REGNUM 4 /* Contains address of top of stack */
141 /* Total amount of space needed to store our copies of the machine's
142 register state, the array `registers'. */
143 #define REGISTER_BYTES (NUM_REGS * 4)
145 /* Index within `registers' of the first byte of the space for
148 #define REGISTER_BYTE(N) ((N)*4)
150 /* Number of bytes of storage in the actual machine representation
153 #define REGISTER_RAW_SIZE(N) (4)
155 /* Number of bytes of storage in the program's representation
158 #define REGISTER_VIRTUAL_SIZE(N) (4)
160 /* Largest value REGISTER_RAW_SIZE can have. */
162 #define MAX_REGISTER_RAW_SIZE 4
164 /* Largest value REGISTER_VIRTUAL_SIZE can have. */
166 #define MAX_REGISTER_VIRTUAL_SIZE 4
168 /* Nonzero if register N requires conversion
169 from raw format to virtual format. */
171 #define REGISTER_CONVERTIBLE(N) (0)
173 /* Convert data from raw format for register REGNUM
174 to virtual format for register REGNUM. */
176 #define REGISTER_CONVERT_TO_VIRTUAL(REGNUM,FROM,TO) {bcopy ((FROM), (TO), 4);}
178 /* Convert data from virtual format for register REGNUM
179 to raw format for register REGNUM. */
181 #define REGISTER_CONVERT_TO_RAW(REGNUM,FROM,TO) {bcopy ((FROM), (TO), 4);}
183 /* Return the GDB type object for the "standard" data type
184 of data in register N. */
185 /* Perhaps si and di should go here, but potentially they could be
186 used for things other than address. */
187 #define REGISTER_VIRTUAL_TYPE(N) \
188 ((N) == PC_REGNUM || (N) == FP_REGNUM || (N) == SP_REGNUM ? \
189 lookup_pointer_type (builtin_type_void) : builtin_type_int)
191 /* Store the address of the place in which to copy the structure the
192 subroutine will return. This is called from call_function. */
194 #define STORE_STRUCT_RETURN(ADDR, SP) \
195 { (SP) -= sizeof (ADDR); \
196 write_memory ((SP), &(ADDR), sizeof (ADDR)); }
198 /* Extract from an array REGBUF containing the (raw) register state
199 a function return value of type TYPE, and copy that, in virtual format,
202 #define EXTRACT_RETURN_VALUE(TYPE,REGBUF,VALBUF) \
203 bcopy (REGBUF, VALBUF, TYPE_LENGTH (TYPE))
205 /* Write into appropriate registers a function return value
206 of type TYPE, given in virtual format. */
208 #define STORE_RETURN_VALUE(TYPE,VALBUF) \
209 write_register_bytes (0, VALBUF, TYPE_LENGTH (TYPE))
211 /* Extract from an array REGBUF containing the (raw) register state
212 the address in which a function should return its structure value,
213 as a CORE_ADDR (or an expression that can be used as one). */
215 #define EXTRACT_STRUCT_VALUE_ADDRESS(REGBUF) (*(int *)(REGBUF))
218 /* Describe the pointer in each stack frame to the previous stack frame
221 /* FRAME_CHAIN takes a frame's nominal address
222 and produces the frame's chain-pointer.
224 However, if FRAME_CHAIN_VALID returns zero,
225 it means the given frame is the outermost one and has no caller. */
227 #define FRAME_CHAIN(thisframe) \
228 (outside_startup_file ((thisframe)->pc) ? \
229 read_memory_integer ((thisframe)->frame, 4) :\
232 #define FRAME_CHAIN_VALID(chain, thisframe) \
233 (chain != 0 && (outside_startup_file (FRAME_SAVED_PC (thisframe))))
235 /* Define other aspects of the stack frame. */
237 /* A macro that tells us whether the function invocation represented
238 by FI does not have a frame on the stack associated with it. If it
239 does not, FRAMELESS is set to 1, else 0. */
240 #define FRAMELESS_FUNCTION_INVOCATION(FI, FRAMELESS) \
241 (FRAMELESS) = frameless_look_for_prologue(FI)
243 #define FRAME_SAVED_PC(FRAME) (read_memory_integer ((FRAME)->frame + 4, 4))
245 #define FRAME_ARGS_ADDRESS(fi) ((fi)->frame)
247 #define FRAME_LOCALS_ADDRESS(fi) ((fi)->frame)
249 /* Return number of args passed to a frame.
250 Can return -1, meaning no way to tell. */
252 #define FRAME_NUM_ARGS(numargs, fi) (numargs) = i386_frame_num_args(fi)
254 /* Return number of bytes at start of arglist that are not really args. */
256 #define FRAME_ARGS_SKIP 8
258 /* Put here the code to store, into a struct frame_saved_regs,
259 the addresses of the saved registers of frame described by FRAME_INFO.
260 This includes special registers such as pc and fp saved in special
261 ways in the stack frame. sp is even more special:
262 the address we return for it IS the sp for the next frame. */
264 #define FRAME_FIND_SAVED_REGS(frame_info, frame_saved_regs) \
265 { i386_frame_find_saved_regs ((frame_info), &(frame_saved_regs)); }
268 /* Things needed for making the inferior call functions. */
270 /* Push an empty stack frame, to record the current PC, etc. */
272 #define PUSH_DUMMY_FRAME { i386_push_dummy_frame (); }
274 /* Discard from the stack the innermost frame, restoring all registers. */
276 #define POP_FRAME { i386_pop_frame (); }
279 * call 11223344 (32 bit relative)
283 #define CALL_DUMMY { 0x223344e8, 0xcc11 }
285 #define CALL_DUMMY_LENGTH 8
287 #define CALL_DUMMY_START_OFFSET 0 /* Start execution at beginning of dummy */
289 /* Insert the specified number of args and function address
290 into a call sequence of the above form stored at DUMMYNAME. */
292 #define FIX_CALL_DUMMY(dummyname, pc, fun, nargs, args, type, gcc_p) \
294 int from, to, delta, loc; \
295 loc = (int)(read_register (SP_REGNUM) - CALL_DUMMY_LENGTH); \
299 *((char *)(dummyname) + 1) = (delta & 0xff); \
300 *((char *)(dummyname) + 2) = ((delta >> 8) & 0xff); \
301 *((char *)(dummyname) + 3) = ((delta >> 16) & 0xff); \
302 *((char *)(dummyname) + 4) = ((delta >> 24) & 0xff); \