1 /* Parameters for execution on a Hitachi Super-H machine.
2 Copyright (C) 1993 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. */
22 #define GDB_TARGET_IS_SH
26 /* Define the bit, byte, and word ordering of the machine. */
28 #define TARGET_BYTE_ORDER BIG_ENDIAN
31 /* Offset from address of function to start of its code.
32 Zero on most machines. */
34 #define FUNCTION_START_OFFSET 0
36 /* Advance PC across any function entry prologue instructions
37 to reach some "real" code. */
39 extern CORE_ADDR sh_skip_prologue ();
40 #define SKIP_PROLOGUE(ip) \
41 {(ip) = sh_skip_prologue(ip);}
44 /* Immediately after a function call, return the saved pc.
45 Can't always go through the frames for this because on some machines
46 the new frame is not set up until the new function executes
49 The return address is the value saved in the PR register + 4 */
51 #define SAVED_PC_AFTER_CALL(frame) \
52 (ADDR_BITS_REMOVE(read_register(PR_REGNUM))+4)
54 /* Stack grows downward. */
58 /* Illegal instruction - used by the simulator for breakpoint
61 #define BREAKPOINT {0xc3, 0xff} /* 0xc3ff is trapa #ff */
64 /* If your kernel resets the pc after the trap happens you may need to
65 define this before including this file. */
66 #define DECR_PC_AFTER_BREAK 0
68 /* Nonzero if instruction at PC is a return instruction. */
69 #define ABOUT_TO_RETURN(pc) (read_memory_integer(pc,2) == 0x000b)
71 /* Return 1 if P points to an invalid floating point value. */
73 #define INVALID_FLOAT(p, len) 0 /* Just a first guess; not checked */
75 /* Say how long registers are. */
76 #define REGISTER_TYPE long
78 /* Say how much memory is needed to store a copy of the register set */
79 #define REGISTER_BYTES (NUM_REGS*4)
81 /* Index within `registers' of the first byte of the space for
84 #define REGISTER_BYTE(N) ((N)*4)
86 /* Number of bytes of storage in the actual machine representation
89 #define REGISTER_RAW_SIZE(N) 4
91 #define REGISTER_VIRTUAL_SIZE(N) 4
93 /* Largest value REGISTER_RAW_SIZE can have. */
95 #define MAX_REGISTER_RAW_SIZE 4
97 /* Largest value REGISTER_VIRTUAL_SIZE can have. */
99 #define MAX_REGISTER_VIRTUAL_SIZE 4
101 /* Nonzero if register N requires conversion
102 from raw format to virtual format. */
104 #define REGISTER_CONVERTIBLE(N) (0)
106 /* Convert data from raw format for register REGNUM
107 to virtual format for register REGNUM. */
109 #define REGISTER_CONVERT_TO_VIRTUAL(REGNUM,FROM,TO) \
110 { memcpy ((TO), (FROM), 4); }
112 /* Convert data from virtual format for register REGNUM
113 to raw format for register REGNUM. */
115 #define REGISTER_CONVERT_TO_RAW(REGNUM,FROM,TO) \
116 { memcpy ((TO), (FROM), 4); }
118 /* Return the GDB type object for the "standard" data type
119 of data in register N. */
121 #define REGISTER_VIRTUAL_TYPE(N) builtin_type_int
123 /* Initializer for an array of names of registers.
124 Entries beyond the first NUM_REGS are ignored. */
126 #define REGISTER_NAMES \
127 {"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", \
128 "r8", "r9", "r10","r11","r12","r13","r14","r15",\
129 "pc", "pr","gbr","vbr","mach","macl","sr","ticks","stalls","cycles","insts" ,"plr","tlr" }
133 /* Register numbers of various important registers.
134 Note that some of these values are "real" register numbers,
135 and correspond to the general registers of the machine,
136 and some are "phony" register numbers which are too large
137 to be actual register numbers as far as the user is concerned
138 but do serve to get the desired values when passed to read_register. */
144 #define GBR_REGNUM 18
145 #define VBR_REGNUM 19
146 #define MACH_REGNUM 20
147 #define MACL_REGNUM 21
150 /* Store the address of the place in which to copy the structure the
151 subroutine will return. This is called from call_function.
153 We store structs through a pointer passed in R4 */
155 #define STORE_STRUCT_RETURN(ADDR, SP) \
156 { write_register (4, (ADDR)); }
158 /* Extract from an array REGBUF containing the (raw) register state
159 a function return value of type TYPE, and copy that, in virtual format,
162 #define EXTRACT_RETURN_VALUE(TYPE,REGBUF,VALBUF) \
163 memcpy (VALBUF, (char *)(REGBUF), TYPE_LENGTH(TYPE))
166 /* Write into appropriate registers a function return value
167 of type TYPE, given in virtual format.
169 Things always get returned in R4/R5 */
171 #define STORE_RETURN_VALUE(TYPE,VALBUF) \
172 write_register_bytes (REGISTER_BYTE(4), VALBUF, TYPE_LENGTH (TYPE))
175 /* Extract from an array REGBUF containing the (raw) register state
176 the address in which a function should return its structure value,
177 as a CORE_ADDR (or an expression that can be used as one). */
179 #define EXTRACT_STRUCT_VALUE_ADDRESS(REGBUF) (*(CORE_ADDR *)(REGBUF))
182 /* Define other aspects of the stack frame.
183 we keep a copy of the worked out return pc lying around, since it
184 is a useful bit of info */
186 #define EXTRA_FRAME_INFO \
189 #define INIT_EXTRA_FRAME_INFO(fromleaf, fi) \
190 init_extra_frame_info(fromleaf, fi)
192 /* A macro that tells us whether the function invocation represented
193 by FI does not have a frame on the stack associated with it. If it
194 does not, FRAMELESS is set to 1, else 0. */
196 #define FRAMELESS_FUNCTION_INVOCATION(FI, FRAMELESS) \
197 (FRAMELESS) = frameless_look_for_prologue(FI)
199 #define FRAME_CHAIN(FRAME) sh_frame_chain(FRAME)
200 #define FRAME_SAVED_PC(FRAME) ((FRAME)->return_pc)
201 #define FRAME_ARGS_ADDRESS(fi) (fi)->frame
202 #define FRAME_LOCALS_ADDRESS(fi) (fi)->frame
204 /* Set VAL to the number of args passed to frame described by FI.
205 Can set VAL to -1, meaning no way to tell. */
207 /* We can't tell how many args there are */
209 #define FRAME_NUM_ARGS(val,fi) (val = -1)
211 /* Return number of bytes at start of arglist that are not really args. */
213 #define FRAME_ARGS_SKIP 0
215 /* Put here the code to store, into a struct frame_saved_regs,
216 the addresses of the saved registers of frame described by FRAME_INFO.
217 This includes special registers such as pc and fp saved in special
218 ways in the stack frame. sp is even more special:
219 the address we return for it IS the sp for the next frame. */
221 #define FRAME_FIND_SAVED_REGS(frame_info, frame_saved_regs) \
222 frame_find_saved_regs(frame_info, &(frame_saved_regs))
224 #define NAMES_HAVE_UNDERSCORE
226 typedef unsigned short INSN_WORD;
228 #define ADDR_BITS_REMOVE(addr) ((addr) & 0xffffff)
230 #define CALL_DUMMY_LENGTH 10
232 /* Discard from the stack the innermost frame,
233 restoring all saved registers. */
235 #define POP_FRAME pop_frame();