* config/i386/tm-cygwin.h, config/i386/tm-fbsd.h,
[deliverable/binutils-gdb.git] / gdb / config / i386 / tm-i386.h
1 /* Macro definitions for GDB on an Intel i[345]86.
2 Copyright 1995, 1996, 1998, 1999, 2000, 2001
3 Free Software Foundation, Inc.
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., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22 #ifndef TM_I386_H
23 #define TM_I386_H 1
24
25 #define GDB_MULTI_ARCH GDB_MULTI_ARCH_PARTIAL
26
27 #include "regcache.h"
28
29 /* Forward declarations for prototypes. */
30 struct frame_info;
31 struct frame_saved_regs;
32 struct value;
33 struct type;
34
35 /* Offset from address of function to start of its code.
36 Zero on most machines. */
37
38 #define FUNCTION_START_OFFSET 0
39
40 /* Advance PC across any function entry prologue instructions to reach some
41 "real" code. */
42
43 #define SKIP_PROLOGUE(frompc) (i386_skip_prologue (frompc))
44
45 extern int i386_skip_prologue (int);
46
47 /* Stack grows downward. */
48
49 #define INNER_THAN(lhs,rhs) ((lhs) < (rhs))
50
51 /* Sequence of bytes for breakpoint instruction. */
52
53 #define BREAKPOINT {0xcc}
54
55 /* Amount PC must be decremented by after a breakpoint. This is often the
56 number of bytes in BREAKPOINT but not always. */
57
58 #define DECR_PC_AFTER_BREAK 1
59 \f
60
61 /* Return the GDB type object for the "standard" data type of data in
62 register REGNUM. */
63
64 #define REGISTER_VIRTUAL_TYPE(regnum) i386_register_virtual_type (regnum)
65 extern struct type *i386_register_virtual_type (int regnum);
66
67 /* Return true iff register REGNUM's virtual format is different from
68 its raw format. */
69
70 #define REGISTER_CONVERTIBLE(regnum) i386_register_convertible (regnum)
71 extern int i386_register_convertible (int regnum);
72
73 /* Convert data from raw format for register REGNUM in buffer FROM to
74 virtual format with type TYPE in buffer TO. */
75
76 #define REGISTER_CONVERT_TO_VIRTUAL(regnum, type, from, to) \
77 i386_register_convert_to_virtual ((regnum), (type), (from), (to))
78 extern void i386_register_convert_to_virtual (int regnum, struct type *type,
79 char *from, char *to);
80
81 /* Convert data from virtual format with type TYPE in buffer FROM to
82 raw format for register REGNUM in buffer TO. */
83
84 #define REGISTER_CONVERT_TO_RAW(type, regnum, from, to) \
85 i386_register_convert_to_raw ((type), (regnum), (from), (to))
86 extern void i386_register_convert_to_raw (struct type *type, int regnum,
87 char *from, char *to);
88
89 /* Print out the i387 floating point state. */
90 extern void i387_float_info (void);
91 #define FLOAT_INFO { i387_float_info (); }
92 \f
93
94 #define PUSH_ARGUMENTS(nargs, args, sp, struct_return, struct_addr) \
95 i386_push_arguments ((nargs), (args), (sp), (struct_return), (struct_addr))
96 extern CORE_ADDR i386_push_arguments (int nargs, struct value **args,
97 CORE_ADDR sp, int struct_return,
98 CORE_ADDR struct_addr);
99
100 /* Store the address of the place in which to copy the structure the
101 subroutine will return. This is called from call_function. */
102
103 #define STORE_STRUCT_RETURN(addr, sp) \
104 i386_store_struct_return ((addr), (sp))
105 extern void i386_store_struct_return (CORE_ADDR addr, CORE_ADDR sp);
106
107 /* Extract from an array REGBUF containing the (raw) register state
108 a function return value of type TYPE, and copy that, in virtual format,
109 into VALBUF. */
110
111 #define DEPRECATED_EXTRACT_RETURN_VALUE(type, regbuf, valbuf) \
112 i386_extract_return_value ((type), (regbuf), (valbuf))
113 extern void i386_extract_return_value (struct type *type, char *regbuf,
114 char *valbuf);
115
116 /* Write into the appropriate registers a function return value stored
117 in VALBUF of type TYPE, given in virtual format. */
118
119 #define STORE_RETURN_VALUE(type, valbuf) \
120 i386_store_return_value ((type), (valbuf))
121 extern void i386_store_return_value (struct type *type, char *valbuf);
122
123 /* Extract from an array REGBUF containing the (raw) register state
124 the address in which a function should return its structure value,
125 as a CORE_ADDR. */
126
127 #define DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS(regbuf) \
128 i386_extract_struct_value_address ((regbuf))
129 extern CORE_ADDR i386_extract_struct_value_address (char *regbuf);
130
131 /* Determine whether the function invocation represented by FRAME does
132 not have a from on the stack associated with it. If it does not,
133 return non-zero, otherwise return zero. */
134
135 #define FRAMELESS_FUNCTION_INVOCATION(frame) \
136 i386_frameless_function_invocation (frame)
137 extern int i386_frameless_function_invocation (struct frame_info *frame);
138
139 #define FRAME_ARGS_ADDRESS(fi) ((fi)->frame)
140
141 #define FRAME_LOCALS_ADDRESS(fi) ((fi)->frame)
142
143 /* Return number of args passed to a frame. Can return -1, meaning no way
144 to tell, which is typical now that the C compiler delays popping them. */
145
146 #define FRAME_NUM_ARGS(fi) (i386_frame_num_args(fi))
147
148 extern int i386_frame_num_args (struct frame_info *);
149
150 /* Return number of bytes at start of arglist that are not really args. */
151
152 #define FRAME_ARGS_SKIP 8
153
154 /* Put here the code to store, into a struct frame_saved_regs,
155 the addresses of the saved registers of frame described by FRAME_INFO.
156 This includes special registers such as pc and fp saved in special
157 ways in the stack frame. sp is even more special:
158 the address we return for it IS the sp for the next frame. */
159
160 extern void i386_frame_init_saved_regs (struct frame_info *);
161 #define FRAME_INIT_SAVED_REGS(FI) i386_frame_init_saved_regs (FI)
162
163 \f
164
165 /* Things needed for making the inferior call functions. */
166
167 /* "An argument's size is increased, if necessary, to make it a
168 multiple of [32 bit] words. This may require tail padding,
169 depending on the size of the argument" - from the x86 ABI. */
170 #define PARM_BOUNDARY 32
171
172 /* Push an empty stack frame, to record the current PC, etc. */
173
174 #define PUSH_DUMMY_FRAME { i386_push_dummy_frame (); }
175
176 extern void i386_push_dummy_frame (void);
177
178 /* Discard from the stack the innermost frame, restoring all registers. */
179
180 #define POP_FRAME { i386_pop_frame (); }
181
182 extern void i386_pop_frame (void);
183 \f
184
185 /* this is
186 * call 11223344 (32 bit relative)
187 * int3
188 */
189
190 #define CALL_DUMMY { 0x223344e8, 0xcc11 }
191
192 #define CALL_DUMMY_LENGTH 8
193
194 #define CALL_DUMMY_START_OFFSET 0 /* Start execution at beginning of dummy */
195
196 #define CALL_DUMMY_BREAKPOINT_OFFSET 5
197
198 /* Insert the specified number of args and function address
199 into a call sequence of the above form stored at DUMMYNAME. */
200
201 #define FIX_CALL_DUMMY(dummyname, pc, fun, nargs, args, type, gcc_p) \
202 i386_fix_call_dummy (dummyname, pc, fun, nargs, args, type, gcc_p)
203 extern void i386_fix_call_dummy (char *dummy, CORE_ADDR pc, CORE_ADDR fun,
204 int nargs, struct value **args,
205 struct type *type, int gcc_p);
206
207 /* FIXME: kettenis/2000-06-12: These do not belong here. */
208 extern void print_387_control_word (unsigned int);
209 extern void print_387_status_word (unsigned int);
210
211 /* Offset from SP to first arg on stack at first instruction of a function */
212
213 #define SP_ARG0 (1 * 4)
214
215 #endif /* ifndef TM_I386_H */
This page took 0.048026 seconds and 5 git commands to generate.