]> Git Repo - binutils.git/blame - gdb/config/d10v/tm-d10v.h
import gdb-1999-06-14 snapshot
[binutils.git] / gdb / config / d10v / tm-d10v.h
CommitLineData
c906108c 1/* Target-specific definition for the Mitsubishi D10V
ac9a91a7 2 Copyright (C) 1996,1999 Free Software Foundation, Inc.
c906108c
SS
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
18Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19
20/* Contributed by Martin Hunt, [email protected] */
21
0f71a2f6 22#define GDB_MULTI_ARCH 1
ac9a91a7 23
7a292a7a 24/* #define GDB_TARGET_IS_D10V - moved to gdbarch.h */
c906108c
SS
25
26/* Define the bit, byte, and word ordering of the machine. */
27
0f71a2f6
JM
28#if !GDB_MULTI_ARCH
29
c906108c
SS
30#define TARGET_BYTE_ORDER BIG_ENDIAN
31
32/* Offset from address of function to start of its code.
33 Zero on most machines. */
34
35#define FUNCTION_START_OFFSET 0
36
c906108c
SS
37/* Advance PC across any function entry prologue instructions
38 to reach some "real" code. */
39
40extern CORE_ADDR d10v_skip_prologue ();
b83266a0 41#define SKIP_PROLOGUE(ip) (d10v_skip_prologue (ip))
c906108c 42
c906108c 43/* Stack grows downward. */
392a587b 44#define INNER_THAN(lhs,rhs) (core_addr_lessthan ((lhs), (rhs)))
c906108c
SS
45
46/* for a breakpoint, use "dbt || nop" */
392a587b
JM
47extern breakpoint_from_pc_fn d10v_breakpoint_from_pc;
48#define BREAKPOINT_FROM_PC(PCPTR,LENPTR) (d10v_breakpoint_from_pc ((PCPTR), (LENPTR)))
c906108c
SS
49
50/* If your kernel resets the pc after the trap happens you may need to
51 define this before including this file. */
52#define DECR_PC_AFTER_BREAK 4
53
392a587b
JM
54extern char *d10v_register_name PARAMS ((int reg_nr));
55#define REGISTER_NAME(NR) (d10v_register_name (NR))
c906108c
SS
56
57#define NUM_REGS 37
58
0f71a2f6
JM
59#endif /* GDB_MULTI_ARCH */
60
c906108c
SS
61/* Register numbers of various important registers.
62 Note that some of these values are "real" register numbers,
63 and correspond to the general registers of the machine,
64 and some are "phony" register numbers which are too large
65 to be actual register numbers as far as the user is concerned
66 but do serve to get the desired values when passed to read_register. */
67
cce74817
JM
68/* Used by both d10v-tdep.c and remote-d10v.c */
69
c906108c
SS
70#define R0_REGNUM 0
71#define LR_REGNUM 13
0f71a2f6 72#if !GDB_MULTI_ARCH
c906108c
SS
73#define SP_REGNUM 15
74#define FP_REGNUM 11
75#define PC_REGNUM 18
0f71a2f6 76#endif
c906108c
SS
77#define PSW_REGNUM 16
78#define IMAP0_REGNUM 32
79#define IMAP1_REGNUM 33
80#define DMAP_REGNUM 34
81#define A0_REGNUM 35
82
0f71a2f6
JM
83#if !GDB_MULTI_ARCH
84
cce74817
JM
85/* ??? */
86#define REGISTER_SIZE 2
87
c906108c 88/* Say how much memory is needed to store a copy of the register set */
cce74817 89#define REGISTER_BYTES ((37/*NUM_REGS*/-2)*2+16)
c906108c
SS
90
91/* Index within `registers' of the first byte of the space for
92 register N. */
392a587b
JM
93extern int d10v_register_byte PARAMS ((int reg_nr));
94#define REGISTER_BYTE(N) (d10v_register_byte (N))
c906108c
SS
95
96/* Number of bytes of storage in the actual machine representation
97 for register N. */
392a587b
JM
98extern int d10v_register_raw_size PARAMS ((int reg_nr));
99#define REGISTER_RAW_SIZE(N) (d10v_register_raw_size (N))
c906108c
SS
100
101/* Number of bytes of storage in the program's representation
102 for register N. */
392a587b
JM
103extern int d10v_register_virtual_size PARAMS ((int reg_nr));
104#define REGISTER_VIRTUAL_SIZE(N) (d10v_register_virtual_size (N))
c906108c
SS
105
106/* Largest value REGISTER_RAW_SIZE can have. */
107
108#define MAX_REGISTER_RAW_SIZE 8
109
110/* Largest value REGISTER_VIRTUAL_SIZE can have. */
111
112#define MAX_REGISTER_VIRTUAL_SIZE 8
113
114/* Return the GDB type object for the "standard" data type
115 of data in register N. */
116
392a587b
JM
117extern struct type *d10v_register_virtual_type PARAMS ((int reg_nr));
118#define REGISTER_VIRTUAL_TYPE(N) (d10v_register_virtual_type (N))
c906108c 119
c906108c 120/* convert $pc and $sp to/from virtual addresses */
ac9a91a7 121extern int d10v_register_convertible PARAMS ((int nr));
ac9a91a7 122extern void d10v_register_convert_to_virtual PARAMS ((int regnum, struct type *type, char *from, char *to));
cce74817
JM
123extern void d10v_register_convert_to_raw PARAMS ((struct type *type, int regnum, char *from, char *to));
124#define REGISTER_CONVERTIBLE(N) (d10v_register_convertible ((N)))
c906108c 125#define REGISTER_CONVERT_TO_VIRTUAL(REGNUM,TYPE,FROM,TO) \
ac9a91a7 126 d10v_register_convert_to_virtual ((REGNUM), (TYPE), (FROM), (TO))
c906108c 127#define REGISTER_CONVERT_TO_RAW(TYPE,REGNUM,FROM,TO) \
ac9a91a7 128 d10v_register_convert_to_raw ((TYPE), (REGNUM), (FROM), (TO))
c906108c 129
392a587b
JM
130extern CORE_ADDR d10v_make_daddr PARAMS ((CORE_ADDR x));
131#define D10V_MAKE_DADDR(x) (d10v_make_daddr (x))
132extern CORE_ADDR d10v_make_iaddr PARAMS ((CORE_ADDR x));
133#define D10V_MAKE_IADDR(x) (d10v_make_iaddr (x))
c906108c 134
392a587b
JM
135extern int d10v_daddr_p PARAMS ((CORE_ADDR x));
136#define D10V_DADDR_P(X) (d10v_daddr_p (X))
137extern int d10v_iaddr_p PARAMS ((CORE_ADDR x));
138#define D10V_IADDR_P(X) (d10v_iaddr_p (X))
c906108c 139
392a587b
JM
140extern CORE_ADDR d10v_convert_daddr_to_raw PARAMS ((CORE_ADDR x));
141#define D10V_CONVERT_DADDR_TO_RAW(X) (d10v_convert_daddr_to_raw (X))
142extern CORE_ADDR d10v_convert_iaddr_to_raw PARAMS ((CORE_ADDR x));
143#define D10V_CONVERT_IADDR_TO_RAW(X) (d10v_convert_iaddr_to_raw (X))
c906108c 144
c906108c
SS
145/* Store the address of the place in which to copy the structure the
146 subroutine will return. This is called from call_function.
147
148 We store structs through a pointer passed in the first Argument
149 register. */
150
392a587b
JM
151extern void d10v_store_struct_return PARAMS ((CORE_ADDR addr, CORE_ADDR sp));
152#define STORE_STRUCT_RETURN(ADDR, SP) d10v_store_struct_return ((ADDR), (SP))
c906108c
SS
153
154
155/* Write into appropriate registers a function return value
156 of type TYPE, given in virtual format.
157
158 Things always get returned in RET1_REGNUM, RET2_REGNUM, ... */
159
392a587b
JM
160extern void d10v_store_return_value PARAMS ((struct type *type, char *valbuf));
161#define STORE_RETURN_VALUE(TYPE,VALBUF) d10v_store_return_value ((TYPE), (VALBUF))
c906108c
SS
162
163
164/* Extract from an array REGBUF containing the (raw) register state
165 the address in which a function should return its structure value,
166 as a CORE_ADDR (or an expression that can be used as one). */
167
392a587b
JM
168extern CORE_ADDR d10v_extract_struct_value_address PARAMS ((char *regbuf));
169#define EXTRACT_STRUCT_VALUE_ADDRESS(REGBUF) (d10v_extract_struct_value_address ((REGBUF)))
c906108c
SS
170
171/* Should we use EXTRACT_STRUCT_VALUE_ADDRESS instead of
172 EXTRACT_RETURN_VALUE? GCC_P is true if compiled with gcc
173 and TYPE is the type (which is known to be struct, union or array).
174
175 The d10v returns anything less than 8 bytes in size in
176 registers. */
177
178extern use_struct_convention_fn d10v_use_struct_convention;
179#define USE_STRUCT_CONVENTION(gcc_p, type) d10v_use_struct_convention (gcc_p, type)
180
181\f
c906108c
SS
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 */
185
cce74817 186extern void d10v_init_extra_frame_info PARAMS ((int fromleaf, struct frame_info *fi));
c906108c
SS
187#define INIT_EXTRA_FRAME_INFO(fromleaf, fi) \
188 d10v_init_extra_frame_info(fromleaf, fi)
189
c906108c
SS
190/* A macro that tells us whether the function invocation represented
191 by FI does not have a frame on the stack associated with it. If it
192 does not, FRAMELESS is set to 1, else 0. */
193
392a587b
JM
194#define FRAMELESS_FUNCTION_INVOCATION(FI) \
195 (frameless_look_for_prologue (FI))
c906108c 196
392a587b 197extern CORE_ADDR d10v_frame_chain PARAMS ((struct frame_info *frame));
c906108c
SS
198#define FRAME_CHAIN(FRAME) d10v_frame_chain(FRAME)
199extern int d10v_frame_chain_valid PARAMS ((CORE_ADDR, struct frame_info *));
200#define FRAME_CHAIN_VALID(chain, thisframe) d10v_frame_chain_valid (chain, thisframe)
392a587b
JM
201extern CORE_ADDR d10v_frame_saved_pc PARAMS ((struct frame_info *fi));
202#define FRAME_SAVED_PC(fi) (d10v_frame_saved_pc ((fi)))
203extern CORE_ADDR d10v_frame_args_address PARAMS ((struct frame_info *fi));
204#define FRAME_ARGS_ADDRESS(fi) (d10v_frame_args_address ((fi)))
205extern CORE_ADDR d10v_frame_locals_address PARAMS ((struct frame_info *fi));
206#define FRAME_LOCALS_ADDRESS(fi) (d10v_frame_locals_address ((fi)))
c906108c
SS
207
208/* Immediately after a function call, return the saved pc. We can't */
209/* use frame->return_pc beause that is determined by reading R13 off the */
210/*stack and that may not be written yet. */
211
392a587b
JM
212extern CORE_ADDR d10v_saved_pc_after_call PARAMS ((struct frame_info *frame));
213#define SAVED_PC_AFTER_CALL(frame) (d10v_saved_pc_after_call ((frame)))
c906108c
SS
214
215/* Set VAL to the number of args passed to frame described by FI.
216 Can set VAL to -1, meaning no way to tell. */
217/* We can't tell how many args there are */
218
392a587b 219#define FRAME_NUM_ARGS(fi) (-1)
c906108c
SS
220
221/* Return number of bytes at start of arglist that are not really args. */
222
223#define FRAME_ARGS_SKIP 0
224
cce74817
JM
225/* Put here the code to store, into frame_info->saved_regs, the
226 addresses of the saved registers of frame described by FRAME_INFO.
c906108c 227 This includes special registers such as pc and fp saved in special
cce74817
JM
228 ways in the stack frame. sp is even more special: the address we
229 return for it IS the sp for the next frame. */
c906108c 230
cce74817
JM
231extern void d10v_frame_init_saved_regs PARAMS ((struct frame_info *));
232#define FRAME_INIT_SAVED_REGS(frame_info) \
233 d10v_frame_init_saved_regs(frame_info)
c906108c 234
c906108c
SS
235/* DUMMY FRAMES. Need these to support inferior function calls. They
236 work like this on D10V: First we set a breakpoint at 0 or __start.
237 Then we push all the registers onto the stack. Then put the
238 function arguments in the proper registers and set r13 to our
239 breakpoint address. Finally, the PC is set to the start of the
240 function being called (no JSR/BSR insn). When it hits the
241 breakpoint, clear the break point and pop the old register contents
242 off the stack. */
243
cce74817
JM
244extern void d10v_pop_frame PARAMS ((void));
245#define POP_FRAME d10v_pop_frame ()
c906108c 246
7a292a7a 247#define USE_GENERIC_DUMMY_FRAMES 1
c906108c
SS
248#define CALL_DUMMY {0}
249#define CALL_DUMMY_START_OFFSET (0)
250#define CALL_DUMMY_BREAKPOINT_OFFSET (0)
251#define CALL_DUMMY_LOCATION AT_ENTRY_POINT
252#define FIX_CALL_DUMMY(DUMMY, START, FUNADDR, NARGS, ARGS, TYPE, GCCP)
253#define CALL_DUMMY_ADDRESS() entry_point_address ()
254extern CORE_ADDR d10v_push_return_address PARAMS ((CORE_ADDR pc, CORE_ADDR sp));
255#define PUSH_RETURN_ADDRESS(PC, SP) d10v_push_return_address (PC, SP)
256
7a292a7a 257#define PC_IN_CALL_DUMMY(PC, SP, FP) generic_pc_in_call_dummy (PC, SP, FP)
c906108c
SS
258/* #define PC_IN_CALL_DUMMY(pc, sp, frame_address) ( pc == IMEM_START + 4 ) */
259
260#define PUSH_DUMMY_FRAME generic_push_dummy_frame ()
261
262/* override the default get_saved_register function with one that
263 takes account of generic CALL_DUMMY frames */
7a292a7a
SS
264#define GET_SAVED_REGISTER(raw_buffer, optimized, addrp, frame, regnum, lval) \
265 generic_get_saved_register (raw_buffer, optimized, addrp, frame, regnum, lval)
c906108c
SS
266
267#define PUSH_ARGUMENTS(nargs, args, sp, struct_return, struct_addr) \
392a587b 268 (d10v_push_arguments((nargs), (args), (sp), (struct_return), (struct_addr)))
c906108c
SS
269extern CORE_ADDR d10v_push_arguments PARAMS ((int, struct value **, CORE_ADDR, int, CORE_ADDR));
270
271
272/* Extract from an array REGBUF containing the (raw) register state
273 a function return value of type TYPE, and copy that, in virtual format,
274 into VALBUF. */
275
276#define EXTRACT_RETURN_VALUE(TYPE,REGBUF,VALBUF) \
277d10v_extract_return_value(TYPE, REGBUF, VALBUF)
cce74817 278extern void d10v_extract_return_value PARAMS ((struct type *, char *, char *));
c906108c 279
c906108c
SS
280
281void d10v_write_pc PARAMS ((CORE_ADDR val, int pid));
282CORE_ADDR d10v_read_pc PARAMS ((int pid));
283void d10v_write_sp PARAMS ((CORE_ADDR val));
284CORE_ADDR d10v_read_sp PARAMS ((void));
285void d10v_write_fp PARAMS ((CORE_ADDR val));
286CORE_ADDR d10v_read_fp PARAMS ((void));
287
288#define TARGET_READ_PC(pid) d10v_read_pc (pid)
289#define TARGET_WRITE_PC(val,pid) d10v_write_pc (val, pid)
290#define TARGET_READ_FP() d10v_read_fp ()
291#define TARGET_WRITE_FP(val) d10v_write_fp (val)
292#define TARGET_READ_SP() d10v_read_sp ()
293#define TARGET_WRITE_SP(val) d10v_write_sp (val)
294
295/* Number of bits in the appropriate type */
296#define TARGET_INT_BIT (2 * TARGET_CHAR_BIT)
297#define TARGET_PTR_BIT (4 * TARGET_CHAR_BIT)
298#define TARGET_DOUBLE_BIT (4 * TARGET_CHAR_BIT)
299#define TARGET_LONG_DOUBLE_BIT (8 * TARGET_CHAR_BIT)
300
301\f
302/* For the d10v when talking to the remote d10v board, GDB addresses
303 need to be translated into a format that the d10v rom monitor
304 understands. */
305
392a587b 306extern void remote_d10v_translate_xfer_address PARAMS ((CORE_ADDR gdb_addr, int gdb_len, CORE_ADDR *rem_addr, int *rem_len));
c906108c 307#define REMOTE_TRANSLATE_XFER_ADDRESS(GDB_ADDR, GDB_LEN, REM_ADDR, REM_LEN) \
392a587b 308 remote_d10v_translate_xfer_address ((GDB_ADDR), (GDB_LEN), (REM_ADDR), (REM_LEN))
c906108c 309
0f71a2f6 310#endif
This page took 0.07292 seconds and 4 git commands to generate.