Mon Sep 23 16:13:50 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
[deliverable/binutils-gdb.git] / gdb / config / d10v / tm-d10v.h
CommitLineData
ab0268b7
MH
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
22
23#define GDB_TARGET_IS_D10V
24
25
26/* Define the bit, byte, and word ordering of the machine. */
27
28#define TARGET_BYTE_ORDER BIG_ENDIAN
29
30
31/* Offset from address of function to start of its code.
32 Zero on most machines. */
33
34#define FUNCTION_START_OFFSET 0
35
36/* Advance PC across any function entry prologue instructions
37 to reach some "real" code. */
38
39extern CORE_ADDR d10v_skip_prologue ();
40#define SKIP_PROLOGUE(ip) \
41 {(ip) = d10v_skip_prologue(ip);}
42
43
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
47 some instructions.
48
49 The return address is the value saved in the PR register + 4 */
50
8626a9d5 51#define SAVED_PC_AFTER_CALL(frame) (read_register(LR_REGNUM) << 2 )
ab0268b7
MH
52
53/* Stack grows downward. */
54
55#define INNER_THAN <
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. */
81dc176f 62#define DECR_PC_AFTER_BREAK 4
ab0268b7
MH
63
64#define REGISTER_NAMES \
65{ "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", \
66 "r8", "r9", "r10","r11","r12", "r13", "r14","sp",\
67 "psw","bpsw","pc","bpc", "cr4", "cr5", "cr6", "rpt_c",\
68 "rpt_s","rpt_e", "mod_s", "mod_e", "cr12", "cr13", "iba", "cr15",\
69 "a0", "a1"\
70 }
71
72#define NUM_REGS 34
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
ab0268b7
MH
86#define PSW_REGNUM 16
87#define A0_REGNUM 32
88
89/* Say how much memory is needed to store a copy of the register set */
90#define REGISTER_BYTES ((NUM_REGS-2)*2+16)
91
92/* Index within `registers' of the first byte of the space for
93 register N. */
94
95#define REGISTER_BYTE(N) \
96( ((N) > A0_REGNUM) ? ( ((N)-A0_REGNUM)*8 + A0_REGNUM*2 ) : ((N) * 2) )
97
98/* Number of bytes of storage in the actual machine representation
99 for register N. */
100
101#define REGISTER_RAW_SIZE(N) ( ((N) >= A0_REGNUM) ? 8 : 2 )
102
103/* Number of bytes of storage in the program's representation
104 for register N. */
105#define REGISTER_VIRTUAL_SIZE(N) ( ((N) >= A0_REGNUM) ? 8 : 2 )
106
107/* Largest value REGISTER_RAW_SIZE can have. */
108
109#define MAX_REGISTER_RAW_SIZE 8
110
111/* Largest value REGISTER_VIRTUAL_SIZE can have. */
112
113#define MAX_REGISTER_VIRTUAL_SIZE 8
114
115/* Return the GDB type object for the "standard" data type
116 of data in register N. */
117
118#define REGISTER_VIRTUAL_TYPE(N) \
119( ((N) < A0_REGNUM ) ? builtin_type_short : builtin_type_long_long)
120
121
122/* Store the address of the place in which to copy the structure the
123 subroutine will return. This is called from call_function.
124
125 We store structs through a pointer passed in R2 */
126
127#define STORE_STRUCT_RETURN(ADDR, SP) \
128 { write_register (2, (ADDR)); }
129
130/* Extract from an array REGBUF containing the (raw) register state
131 a function return value of type TYPE, and copy that, in virtual format,
132 into VALBUF. */
133
134#define EXTRACT_RETURN_VALUE(TYPE,REGBUF,VALBUF) \
135 memcpy (VALBUF, (char *)(REGBUF), TYPE_LENGTH(TYPE))
136
137
138/* Write into appropriate registers a function return value
139 of type TYPE, given in virtual format.
140
141 Things always get returned in R2/R3 */
142
143#define STORE_RETURN_VALUE(TYPE,VALBUF) \
144 write_register_bytes (REGISTER_BYTE(2), VALBUF, TYPE_LENGTH (TYPE))
145
146
147/* Extract from an array REGBUF containing the (raw) register state
148 the address in which a function should return its structure value,
149 as a CORE_ADDR (or an expression that can be used as one). */
150
151#define EXTRACT_STRUCT_VALUE_ADDRESS(REGBUF) (*(CORE_ADDR *)(REGBUF))
152\f
153
154/* Define other aspects of the stack frame.
155 we keep a copy of the worked out return pc lying around, since it
156 is a useful bit of info */
157
158#define EXTRA_FRAME_INFO \
159 CORE_ADDR return_pc; \
8ebc9891 160 int size;
ab0268b7
MH
161
162#define INIT_EXTRA_FRAME_INFO(fromleaf, fi) \
163 d10v_init_extra_frame_info(fromleaf, fi)
164
165/* A macro that tells us whether the function invocation represented
166 by FI does not have a frame on the stack associated with it. If it
167 does not, FRAMELESS is set to 1, else 0. */
168
169#define FRAMELESS_FUNCTION_INVOCATION(FI, FRAMELESS) \
170 (FRAMELESS) = frameless_look_for_prologue(FI)
171
172#define FRAME_CHAIN(FRAME) d10v_frame_chain(FRAME)
8ebc9891 173#define FRAME_SAVED_PC(FRAME) ((FRAME)->return_pc)
ab0268b7
MH
174#define FRAME_ARGS_ADDRESS(fi) (fi)->frame
175#define FRAME_LOCALS_ADDRESS(fi) (fi)->frame
176
177/* Set VAL to the number of args passed to frame described by FI.
178 Can set VAL to -1, meaning no way to tell. */
179
180/* We can't tell how many args there are */
181
182#define FRAME_NUM_ARGS(val,fi) (val = -1)
183
184/* Return number of bytes at start of arglist that are not really args. */
185
186#define FRAME_ARGS_SKIP 0
187
188/* Put here the code to store, into a struct frame_saved_regs,
189 the addresses of the saved registers of frame described by FRAME_INFO.
190 This includes special registers such as pc and fp saved in special
191 ways in the stack frame. sp is even more special:
192 the address we return for it IS the sp for the next frame. */
193
194#define FRAME_FIND_SAVED_REGS(frame_info, frame_saved_regs) \
195 d10v_frame_find_saved_regs(frame_info, &(frame_saved_regs))
196
197#define NAMES_HAVE_UNDERSCORE
198
199typedef unsigned short INSN_WORD;
200
201#define ADDR_BITS_REMOVE(addr) ((addr))
202
203#define CALL_DUMMY_LENGTH 10
204
205/* Discard from the stack the innermost frame,
206 restoring all saved registers. */
207
208#define POP_FRAME d10v_pop_frame();
209
210#define REGISTER_SIZE 2
211
212# ifdef CC_HAS_LONG_LONG
213# define LONGEST long long
214# else
215# define LONGEST long
216# endif
217
218void d10v_write_register_pid PARAMS (( int regno, LONGEST val, int pid));
219CORE_ADDR d10v_read_register_pid PARAMS ((int regno, int pid));
220
221#define TARGET_READ_PC(pid) d10v_read_register_pid (PC_REGNUM, pid)
222#define TARGET_WRITE_PC(val,pid) d10v_write_register_pid (PC_REGNUM, val, pid)
This page took 0.032654 seconds and 4 git commands to generate.