import gdb-19990504 snapshot
[deliverable/binutils-gdb.git] / gdb / config / d10v / tm-d10v.h
CommitLineData
c906108c
SS
1/* Target-specific definition for the Mitsubishi D10V
2 Copyright (C) 1996 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
18Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19
20/* Contributed by Martin Hunt, hunt@cygnus.com */
21
7a292a7a 22/* #define GDB_TARGET_IS_D10V - moved to gdbarch.h */
c906108c
SS
23
24/* Define the bit, byte, and word ordering of the machine. */
25
26#define TARGET_BYTE_ORDER BIG_ENDIAN
27
28/* Offset from address of function to start of its code.
29 Zero on most machines. */
30
31#define FUNCTION_START_OFFSET 0
32
33/* these are the addresses the D10V-EVA board maps data */
34/* and instruction memory to. */
35
36#define DMEM_START 0x0000000
37#define IMEM_START 0x1000000
38#define STACK_START 0x0007ffe
39
40#ifdef __STDC__ /* Forward decls for prototypes */
41struct frame_info;
42struct frame_saved_regs;
43struct type;
44struct value;
45#endif
46
47/* Advance PC across any function entry prologue instructions
48 to reach some "real" code. */
49
50extern CORE_ADDR d10v_skip_prologue ();
b83266a0 51#define SKIP_PROLOGUE(ip) (d10v_skip_prologue (ip))
c906108c
SS
52
53
54/* Stack grows downward. */
55#define INNER_THAN(lhs,rhs) ((lhs) < (rhs))
56
57/* for a breakpoint, use "dbt || nop" */
58#define BREAKPOINT {0x2f, 0x90, 0x5e, 0x00}
59
60/* If your kernel resets the pc after the trap happens you may need to
61 define this before including this file. */
62#define DECR_PC_AFTER_BREAK 4
63
64#define REGISTER_NAMES \
65{ "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", \
66 "r8", "r9", "r10","r11","r12", "r13", "r14","r15",\
67 "psw","bpsw","pc","bpc", "cr4", "cr5", "cr6", "rpt_c",\
68 "rpt_s","rpt_e", "mod_s", "mod_e", "cr12", "cr13", "iba", "cr15",\
69 "imap0","imap1","dmap","a0", "a1"\
70 }
71
72#define NUM_REGS 37
73
74/* Register numbers of various important registers.
75 Note that some of these values are "real" register numbers,
76 and correspond to the general registers of the machine,
77 and some are "phony" register numbers which are too large
78 to be actual register numbers as far as the user is concerned
79 but do serve to get the desired values when passed to read_register. */
80
81#define R0_REGNUM 0
82#define LR_REGNUM 13
83#define SP_REGNUM 15
84#define FP_REGNUM 11
85#define PC_REGNUM 18
86#define PSW_REGNUM 16
87#define IMAP0_REGNUM 32
88#define IMAP1_REGNUM 33
89#define DMAP_REGNUM 34
90#define A0_REGNUM 35
91
92/* Say how much memory is needed to store a copy of the register set */
93#define REGISTER_BYTES ((NUM_REGS-2)*2+16)
94
95/* Index within `registers' of the first byte of the space for
96 register N. */
97
98#define REGISTER_BYTE(N) \
99( ((N) > A0_REGNUM) ? ( ((N)-A0_REGNUM)*8 + A0_REGNUM*2 ) : ((N) * 2) )
100
101/* Number of bytes of storage in the actual machine representation
102 for register N. */
103
104#define REGISTER_RAW_SIZE(N) ( ((N) >= A0_REGNUM) ? 8 : 2 )
105
106/* Number of bytes of storage in the program's representation
107 for register N. */
108#define REGISTER_VIRTUAL_SIZE(N) ( ((N) >= A0_REGNUM) ? 8 : ( ((N) == PC_REGNUM || (N) == SP_REGNUM) ? 4 : 2 ))
109
110/* Largest value REGISTER_RAW_SIZE can have. */
111
112#define MAX_REGISTER_RAW_SIZE 8
113
114/* Largest value REGISTER_VIRTUAL_SIZE can have. */
115
116#define MAX_REGISTER_VIRTUAL_SIZE 8
117
118/* Return the GDB type object for the "standard" data type
119 of data in register N. */
120
121#define REGISTER_VIRTUAL_TYPE(N) \
122( ((N) < A0_REGNUM ) ? ((N) == PC_REGNUM || (N) == SP_REGNUM ? builtin_type_long : builtin_type_short) : builtin_type_long_long)
123
124
125/* convert $pc and $sp to/from virtual addresses */
126#define REGISTER_CONVERTIBLE(N) ((N) == PC_REGNUM || (N) == SP_REGNUM)
127#define REGISTER_CONVERT_TO_VIRTUAL(REGNUM,TYPE,FROM,TO) \
128{ \
129 ULONGEST x = extract_unsigned_integer ((FROM), REGISTER_RAW_SIZE (REGNUM)); \
130 if (REGNUM == PC_REGNUM) x = (x << 2) | IMEM_START; \
131 else x |= DMEM_START; \
132 store_unsigned_integer ((TO), TYPE_LENGTH(TYPE), x); \
133}
134#define REGISTER_CONVERT_TO_RAW(TYPE,REGNUM,FROM,TO) \
135{ \
136 ULONGEST x = extract_unsigned_integer ((FROM), TYPE_LENGTH(TYPE)); \
137 x &= 0x3ffff; \
138 if (REGNUM == PC_REGNUM) x >>= 2; \
139 store_unsigned_integer ((TO), 2, x); \
140}
141
142#define D10V_MAKE_DADDR(x) ((x) | DMEM_START)
143#define D10V_MAKE_IADDR(x) (((x) << 2) | IMEM_START)
144
145#define D10V_DADDR_P(X) (((X) & 0x3000000) == DMEM_START)
146#define D10V_IADDR_P(X) (((X) & 0x3000000) == IMEM_START)
147
148#define D10V_CONVERT_IADDR_TO_RAW(X) (((X) >> 2) & 0xffff)
149#define D10V_CONVERT_DADDR_TO_RAW(X) ((X) & 0xffff)
150
151#define ARG1_REGNUM R0_REGNUM
152#define ARGN_REGNUM 3
153#define RET1_REGNUM R0_REGNUM
154
155/* Store the address of the place in which to copy the structure the
156 subroutine will return. This is called from call_function.
157
158 We store structs through a pointer passed in the first Argument
159 register. */
160
161#define STORE_STRUCT_RETURN(ADDR, SP) \
162 { write_register (ARG1_REGNUM, (ADDR)); }
163
164
165/* Write into appropriate registers a function return value
166 of type TYPE, given in virtual format.
167
168 Things always get returned in RET1_REGNUM, RET2_REGNUM, ... */
169
170#define STORE_RETURN_VALUE(TYPE,VALBUF) \
171 write_register_bytes (REGISTER_BYTE(RET1_REGNUM), VALBUF, TYPE_LENGTH (TYPE))
172
173
174/* Extract from an array REGBUF containing the (raw) register state
175 the address in which a function should return its structure value,
176 as a CORE_ADDR (or an expression that can be used as one). */
177
178#define EXTRACT_STRUCT_VALUE_ADDRESS(REGBUF) \
179 (extract_address ((REGBUF) + REGISTER_BYTE (ARG1_REGNUM), REGISTER_RAW_SIZE (ARG1_REGNUM)) | DMEM_START)
180
181/* Should we use EXTRACT_STRUCT_VALUE_ADDRESS instead of
182 EXTRACT_RETURN_VALUE? GCC_P is true if compiled with gcc
183 and TYPE is the type (which is known to be struct, union or array).
184
185 The d10v returns anything less than 8 bytes in size in
186 registers. */
187
188extern use_struct_convention_fn d10v_use_struct_convention;
189#define USE_STRUCT_CONVENTION(gcc_p, type) d10v_use_struct_convention (gcc_p, type)
190
191\f
192
193/* Define other aspects of the stack frame.
194 we keep a copy of the worked out return pc lying around, since it
195 is a useful bit of info */
196
197#define EXTRA_FRAME_INFO \
198 CORE_ADDR return_pc; \
199 int frameless; \
200 int size;
201
202#define INIT_EXTRA_FRAME_INFO(fromleaf, fi) \
203 d10v_init_extra_frame_info(fromleaf, fi)
204
205extern void d10v_init_extra_frame_info PARAMS (( int fromleaf, struct frame_info *fi ));
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
214#define FRAME_CHAIN(FRAME) d10v_frame_chain(FRAME)
215extern int d10v_frame_chain_valid PARAMS ((CORE_ADDR, struct frame_info *));
216#define FRAME_CHAIN_VALID(chain, thisframe) d10v_frame_chain_valid (chain, thisframe)
217#define FRAME_SAVED_PC(FRAME) ((FRAME)->return_pc)
218#define FRAME_ARGS_ADDRESS(fi) (fi)->frame
219#define FRAME_LOCALS_ADDRESS(fi) (fi)->frame
220
221/* Immediately after a function call, return the saved pc. We can't */
222/* use frame->return_pc beause that is determined by reading R13 off the */
223/*stack and that may not be written yet. */
224
225#define SAVED_PC_AFTER_CALL(frame) ((read_register(LR_REGNUM) << 2) | IMEM_START)
226
227/* Set VAL to the number of args passed to frame described by FI.
228 Can set VAL to -1, meaning no way to tell. */
229/* We can't tell how many args there are */
230
231#define FRAME_NUM_ARGS(val,fi) (val = -1)
232
233/* Return number of bytes at start of arglist that are not really args. */
234
235#define FRAME_ARGS_SKIP 0
236
237
238/* Put here the code to store, into a struct frame_saved_regs,
239 the addresses of the saved registers of frame described by FRAME_INFO.
240 This includes special registers such as pc and fp saved in special
241 ways in the stack frame. sp is even more special:
242 the address we return for it IS the sp for the next frame. */
243
244#define FRAME_FIND_SAVED_REGS(frame_info, frame_saved_regs) \
245 d10v_frame_find_saved_regs(frame_info, &(frame_saved_regs))
246
247extern void d10v_frame_find_saved_regs PARAMS ((struct frame_info *, struct frame_saved_regs *));
248
249#define NAMES_HAVE_UNDERSCORE
250
251
252/* DUMMY FRAMES. Need these to support inferior function calls. They
253 work like this on D10V: First we set a breakpoint at 0 or __start.
254 Then we push all the registers onto the stack. Then put the
255 function arguments in the proper registers and set r13 to our
256 breakpoint address. Finally, the PC is set to the start of the
257 function being called (no JSR/BSR insn). When it hits the
258 breakpoint, clear the break point and pop the old register contents
259 off the stack. */
260
261extern void d10v_pop_frame PARAMS ((struct frame_info *frame));
262#define POP_FRAME generic_pop_current_frame (d10v_pop_frame)
263
7a292a7a 264#define USE_GENERIC_DUMMY_FRAMES 1
c906108c
SS
265#define CALL_DUMMY {0}
266#define CALL_DUMMY_START_OFFSET (0)
267#define CALL_DUMMY_BREAKPOINT_OFFSET (0)
268#define CALL_DUMMY_LOCATION AT_ENTRY_POINT
269#define FIX_CALL_DUMMY(DUMMY, START, FUNADDR, NARGS, ARGS, TYPE, GCCP)
270#define CALL_DUMMY_ADDRESS() entry_point_address ()
271extern CORE_ADDR d10v_push_return_address PARAMS ((CORE_ADDR pc, CORE_ADDR sp));
272#define PUSH_RETURN_ADDRESS(PC, SP) d10v_push_return_address (PC, SP)
273
7a292a7a 274#define PC_IN_CALL_DUMMY(PC, SP, FP) generic_pc_in_call_dummy (PC, SP, FP)
c906108c
SS
275/* #define PC_IN_CALL_DUMMY(pc, sp, frame_address) ( pc == IMEM_START + 4 ) */
276
277#define PUSH_DUMMY_FRAME generic_push_dummy_frame ()
278
279/* override the default get_saved_register function with one that
280 takes account of generic CALL_DUMMY frames */
7a292a7a
SS
281#define GET_SAVED_REGISTER(raw_buffer, optimized, addrp, frame, regnum, lval) \
282 generic_get_saved_register (raw_buffer, optimized, addrp, frame, regnum, lval)
c906108c
SS
283
284#define PUSH_ARGUMENTS(nargs, args, sp, struct_return, struct_addr) \
285 sp = d10v_push_arguments((nargs), (args), (sp), (struct_return), (struct_addr))
286extern CORE_ADDR d10v_push_arguments PARAMS ((int, struct value **, CORE_ADDR, int, CORE_ADDR));
287
288
289/* Extract from an array REGBUF containing the (raw) register state
290 a function return value of type TYPE, and copy that, in virtual format,
291 into VALBUF. */
292
293#define EXTRACT_RETURN_VALUE(TYPE,REGBUF,VALBUF) \
294d10v_extract_return_value(TYPE, REGBUF, VALBUF)
295 extern void
296d10v_extract_return_value PARAMS ((struct type *, char *, char *));
297
298
299#define REGISTER_SIZE 2
300
301#ifdef CC_HAS_LONG_LONG
302# define LONGEST long long
303#else
304# define LONGEST long
305#endif
306#define ULONGEST unsigned LONGEST
307
308void d10v_write_pc PARAMS ((CORE_ADDR val, int pid));
309CORE_ADDR d10v_read_pc PARAMS ((int pid));
310void d10v_write_sp PARAMS ((CORE_ADDR val));
311CORE_ADDR d10v_read_sp PARAMS ((void));
312void d10v_write_fp PARAMS ((CORE_ADDR val));
313CORE_ADDR d10v_read_fp PARAMS ((void));
314
315#define TARGET_READ_PC(pid) d10v_read_pc (pid)
316#define TARGET_WRITE_PC(val,pid) d10v_write_pc (val, pid)
317#define TARGET_READ_FP() d10v_read_fp ()
318#define TARGET_WRITE_FP(val) d10v_write_fp (val)
319#define TARGET_READ_SP() d10v_read_sp ()
320#define TARGET_WRITE_SP(val) d10v_write_sp (val)
321
322/* Number of bits in the appropriate type */
323#define TARGET_INT_BIT (2 * TARGET_CHAR_BIT)
324#define TARGET_PTR_BIT (4 * TARGET_CHAR_BIT)
325#define TARGET_DOUBLE_BIT (4 * TARGET_CHAR_BIT)
326#define TARGET_LONG_DOUBLE_BIT (8 * TARGET_CHAR_BIT)
327
328\f
329/* For the d10v when talking to the remote d10v board, GDB addresses
330 need to be translated into a format that the d10v rom monitor
331 understands. */
332
333int remote_d10v_translate_xfer_address PARAMS ((CORE_ADDR gdb_addr, int gdb_len, CORE_ADDR *rem_addr));
334#define REMOTE_TRANSLATE_XFER_ADDRESS(GDB_ADDR, GDB_LEN, REM_ADDR, REM_LEN) \
335(REM_LEN) = remote_d10v_translate_xfer_address ((GDB_ADDR), (GDB_LEN), &(REM_ADDR))
336
This page took 0.035937 seconds and 4 git commands to generate.