* simops.c: Don't lose the upper 24 bits of the return
[deliverable/binutils-gdb.git] / gdb / config / sh / tm-sh.h
CommitLineData
00dd4fd9 1/* Target-specific definition for a Hitachi Super-H.
9faacb92
SC
2 Copyright (C) 1993 Free Software Foundation, Inc.
3
4This file is part of GDB.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
6c9638b4 18Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
9faacb92
SC
19
20/* Contributed by Steve Chamberlain sac@cygnus.com */
21
69992fc8
MS
22#ifdef __STDC__
23struct frame_info;
24struct frame_saved_regs;
25struct value;
26struct type;
27#endif
28
9faacb92
SC
29#define GDB_TARGET_IS_SH
30
31#define IEEE_FLOAT 1
32
33/* Define the bit, byte, and word ordering of the machine. */
34
5f2f2809 35#define TARGET_BYTE_ORDER_SELECTABLE
9faacb92
SC
36
37
38/* Offset from address of function to start of its code.
39 Zero on most machines. */
40
41#define FUNCTION_START_OFFSET 0
42
43/* Advance PC across any function entry prologue instructions
44 to reach some "real" code. */
45
46extern CORE_ADDR sh_skip_prologue ();
47#define SKIP_PROLOGUE(ip) \
48 {(ip) = sh_skip_prologue(ip);}
49
50
51/* Immediately after a function call, return the saved pc.
52 Can't always go through the frames for this because on some machines
53 the new frame is not set up until the new function executes
54 some instructions.
55
56 The return address is the value saved in the PR register + 4 */
57
58#define SAVED_PC_AFTER_CALL(frame) \
ee824ca6 59 (ADDR_BITS_REMOVE(read_register(PR_REGNUM)))
9faacb92
SC
60
61/* Stack grows downward. */
62
63#define INNER_THAN <
64
65/* Illegal instruction - used by the simulator for breakpoint
66 detection */
67
5f2f2809
SC
68#define BREAKPOINT {0xc3, 0xc3} /* 0xc3c3 is trapa #c3, and it works in big
69 and little endian modes */
fea17b55
SS
70
71#define BIG_REMOTE_BREAKPOINT { 0xc3, 0x20 }
72#define LITTLE_REMOTE_BREAKPOINT { 0x20, 0xc3 }
9faacb92
SC
73
74/* If your kernel resets the pc after the trap happens you may need to
75 define this before including this file. */
2e2b2779 76#define DECR_PC_AFTER_BREAK 0
9faacb92
SC
77
78/* Nonzero if instruction at PC is a return instruction. */
79#define ABOUT_TO_RETURN(pc) (read_memory_integer(pc,2) == 0x000b)
80
826e69cf
SC
81/* Say how long registers are. */
82#define REGISTER_TYPE long
9faacb92
SC
83
84/* Say how much memory is needed to store a copy of the register set */
85#define REGISTER_BYTES (NUM_REGS*4)
86
87/* Index within `registers' of the first byte of the space for
88 register N. */
89
90#define REGISTER_BYTE(N) ((N)*4)
91
92/* Number of bytes of storage in the actual machine representation
93 for register N. */
94
95#define REGISTER_RAW_SIZE(N) 4
96
97#define REGISTER_VIRTUAL_SIZE(N) 4
98
99/* Largest value REGISTER_RAW_SIZE can have. */
100
101#define MAX_REGISTER_RAW_SIZE 4
102
103/* Largest value REGISTER_VIRTUAL_SIZE can have. */
104
105#define MAX_REGISTER_VIRTUAL_SIZE 4
106
9faacb92
SC
107/* Return the GDB type object for the "standard" data type
108 of data in register N. */
109
a8620985 110#define REGISTER_VIRTUAL_TYPE(N) \
05535e79 111 ((((N) >= FP0_REGNUM && (N) <= FP15_REGNUM) \
a8620985
JW
112 || (N) == FPUL_REGNUM) \
113 ? builtin_type_float : builtin_type_int)
9faacb92
SC
114
115/* Initializer for an array of names of registers.
116 Entries beyond the first NUM_REGS are ignored. */
117
a8620985 118#define REGISTER_NAMES \
69992fc8
MS
119 { "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", \
120 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15", \
121 "pc", "pr", "gbr", "vbr", "mach", "macl", "sr", \
12ffa10c 122 "fpul", "fpscr", \
4dc42997
MS
123 "fr0", "fr1", "fr2", "fr3", "fr4", "fr5", "fr6", "fr7", \
124 "fr8", "fr9", "fr10", "fr11", "fr12", "fr13", "fr14", "fr15", \
69992fc8 125 "ssr", "spc", \
12ffa10c
SS
126 "r0b0", "r1b0", "r2b0", "r3b0", "r4b0", "r5b0", "r6b0", "r7b0", \
127 "r0b1", "r1b1", "r2b1", "r3b1", "r4b1", "r5b1", "r6b1", "r7b1", \
a8620985 128 }
9faacb92 129
05535e79 130#define NUM_REGS 59
9faacb92 131
12ffa10c
SS
132/* Register numbers of various important registers. Note that some of
133 these values are "real" register numbers, and correspond to the
134 general registers of the machine, and some are "phony" register
135 numbers which are too large to be actual register numbers as far as
136 the user is concerned but do serve to get the desired values when
137 passed to read_register. */
9faacb92 138
1480482a 139#define R0_REGNUM 0
69992fc8
MS
140#define STRUCT_RETURN_REGNUM 2
141#define ARG0_REGNUM 4
142#define ARGLAST_REGNUM 7
9faacb92
SC
143#define FP_REGNUM 14
144#define SP_REGNUM 15
145#define PC_REGNUM 16
146#define PR_REGNUM 17
147#define GBR_REGNUM 18
148#define VBR_REGNUM 19
149#define MACH_REGNUM 20
150#define MACL_REGNUM 21
2f5e1736 151#define SR_REGNUM 22
12ffa10c
SS
152#define FPUL_REGNUM 23
153#define FP0_REGNUM 25
154#define FP15_REGNUM 40
155#define SSR_REGNUM 41
156#define SPC_REGNUM 42
157#define R0B0_REGNUM 43
158#define R0B1_REGNUM 51
159
160#define NUM_REALREGS 59
a8620985 161
9faacb92
SC
162/* Store the address of the place in which to copy the structure the
163 subroutine will return. This is called from call_function.
164
69992fc8 165 We store structs through a pointer passed in R0 */
9faacb92
SC
166
167#define STORE_STRUCT_RETURN(ADDR, SP) \
69992fc8
MS
168 { write_register (STRUCT_RETURN_REGNUM, (ADDR)); }
169
170#define USE_STRUCT_CONVENTION(gcc_p, type) (TYPE_LENGTH(type) > 1)
9faacb92
SC
171
172/* Extract from an array REGBUF containing the (raw) register state
173 a function return value of type TYPE, and copy that, in virtual format,
174 into VALBUF. */
175
69992fc8 176extern void sh_extract_return_value PARAMS ((struct type *, void *, void *));
9faacb92 177#define EXTRACT_RETURN_VALUE(TYPE,REGBUF,VALBUF) \
69992fc8 178 sh_extract_return_value (TYPE, REGBUF, VALBUF)
9faacb92 179
9faacb92
SC
180/* Write into appropriate registers a function return value
181 of type TYPE, given in virtual format.
182
69992fc8 183 Things always get returned in R0/R1 */
9faacb92
SC
184
185#define STORE_RETURN_VALUE(TYPE,VALBUF) \
69992fc8 186 write_register_bytes (REGISTER_BYTE(0), VALBUF, TYPE_LENGTH (TYPE))
9faacb92 187
9faacb92
SC
188/* Extract from an array REGBUF containing the (raw) register state
189 the address in which a function should return its structure value,
190 as a CORE_ADDR (or an expression that can be used as one). */
191
192#define EXTRACT_STRUCT_VALUE_ADDRESS(REGBUF) (*(CORE_ADDR *)(REGBUF))
193\f
194
195/* Define other aspects of the stack frame.
196 we keep a copy of the worked out return pc lying around, since it
197 is a useful bit of info */
198
199#define EXTRA_FRAME_INFO \
e4483b99
SC
200 CORE_ADDR return_pc; \
201 int leaf_function; \
202 int f_offset;
9faacb92
SC
203
204#define INIT_EXTRA_FRAME_INFO(fromleaf, fi) \
69992fc8 205 sh_init_extra_frame_info(fromleaf, fi)
9faacb92
SC
206
207/* A macro that tells us whether the function invocation represented
208 by FI does not have a frame on the stack associated with it. If it
209 does not, FRAMELESS is set to 1, else 0. */
210
211#define FRAMELESS_FUNCTION_INVOCATION(FI, FRAMELESS) \
212 (FRAMELESS) = frameless_look_for_prologue(FI)
213
69992fc8
MS
214#define FRAME_SAVED_PC(FRAME) ((FRAME)->return_pc)
215#define FRAME_ARGS_ADDRESS(fi) ((fi)->frame)
216#define FRAME_LOCALS_ADDRESS(fi) ((fi)->frame)
9faacb92
SC
217
218/* Set VAL to the number of args passed to frame described by FI.
219 Can set VAL to -1, meaning no way to tell. */
220
221/* We can't tell how many args there are */
222
223#define FRAME_NUM_ARGS(val,fi) (val = -1)
224
225/* Return number of bytes at start of arglist that are not really args. */
226
227#define FRAME_ARGS_SKIP 0
228
69992fc8
MS
229extern void sh_frame_find_saved_regs PARAMS ((struct frame_info *fi,
230 struct frame_saved_regs *fsr));
231
9faacb92
SC
232/* Put here the code to store, into a struct frame_saved_regs,
233 the addresses of the saved registers of frame described by FRAME_INFO.
234 This includes special registers such as pc and fp saved in special
235 ways in the stack frame. sp is even more special:
236 the address we return for it IS the sp for the next frame. */
237
238#define FRAME_FIND_SAVED_REGS(frame_info, frame_saved_regs) \
69992fc8 239 sh_frame_find_saved_regs(frame_info, &(frame_saved_regs))
9faacb92
SC
240
241#define NAMES_HAVE_UNDERSCORE
242
243typedef unsigned short INSN_WORD;
244
69992fc8
MS
245extern CORE_ADDR generic_read_register_dummy PARAMS ((struct frame_info *,
246 int regno));
247
248extern void generic_push_dummy_frame PARAMS ((void));
249extern void generic_pop_dummy_frame PARAMS ((void));
250
251extern int generic_pc_in_call_dummy PARAMS ((CORE_ADDR pc,
252 CORE_ADDR fp,
253 CORE_ADDR sp));
254extern char * generic_find_dummy_frame PARAMS ((CORE_ADDR pc,
255 CORE_ADDR fp,
256 CORE_ADDR sp));
257
258extern void sh_push_return_address PARAMS ((CORE_ADDR));
259extern CORE_ADDR sh_push_arguments PARAMS ((int nargs,
260 struct value **args,
261 CORE_ADDR sp,
262 unsigned char struct_return,
263 CORE_ADDR struct_addr));
264extern int generic_frame_chain_valid PARAMS((CORE_ADDR, struct frame_info *));
265
266
267
268#define CALL_DUMMY { }
269#define CALL_DUMMY_LENGTH (0)
270#define CALL_DUMMY_START_OFFSET (0)
271#define CALL_DUMMY_BREAKPOINT_OFFSET (0)
272#define CALL_DUMMY_LOCATION AT_ENTRY_POINT
273#define CALL_DUMMY_ADDRESS() (entry_point_address ())
274#define PUSH_RETURN_ADDRESS(PC) (sh_push_return_address (PC))
275#define FRAME_CHAIN(FRAME) (sh_frame_chain(FRAME))
276#define PUSH_DUMMY_FRAME (generic_push_dummy_frame ())
277#define FRAME_CHAIN_VALID(FP, FRAME) (generic_frame_chain_valid (FP, FRAME))
278#define PC_IN_CALL_DUMMY(PC, SP, FP) (generic_pc_in_call_dummy (PC, SP, FP))
279#define FIX_CALL_DUMMY(DUMMYNAME, STARTADDR, FUNADDR, NARGS, ARGS, TYPE, GCCP)
280#define PUSH_ARGUMENTS(NARGS, ARGS, SP, STRUCT_RETURN, STRUCT_ADDR) \
281 (SP) = sh_push_arguments (NARGS, ARGS, SP, STRUCT_RETURN, STRUCT_ADDR)
9faacb92 282
12ffa10c
SS
283/* Discard from the stack the innermost frame, restoring all saved
284 registers. */
9faacb92 285
69992fc8 286#define POP_FRAME sh_pop_frame();
9faacb92 287
b4d3d0e5 288#define NOP {0x20, 0x0b}
826e69cf
SC
289
290#define REGISTER_SIZE 4
7f4b5f94 291
69992fc8 292#define COERCE_FLOAT_TO_DOUBLE 1
This page took 0.196829 seconds and 4 git commands to generate.