Update FSF address.
[deliverable/binutils-gdb.git] / gdb / config / z8k / tm-z8k.h
CommitLineData
5076de82
FF
1/* Parameters for execution on a z8000 series machine.
2 Copyright 1992, 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. */
5076de82
FF
19
20#define IEEE_FLOAT 1
21
826e69cf
SC
22#undef TARGET_INT_BIT
23#undef TARGET_LONG_BIT
24#undef TARGET_SHORT_BIT
25#undef TARGET_PTR_BIT
26
5076de82
FF
27#define TARGET_SHORT_BIT 16
28#define TARGET_INT_BIT 16
29#define TARGET_LONG_BIT 32
30#define TARGET_PTR_BIT (BIG ? 32: 16)
31
32/* Define the bit, byte, and word ordering of the machine. */
33#define TARGET_BYTE_ORDER BIG_ENDIAN
34
35/* Offset from address of function to start of its code.
36 Zero on most machines. */
37
38#define FUNCTION_START_OFFSET 0
39
40/* Advance PC across any function entry prologue instructions
41 to reach some "real" code. */
42
43#define SKIP_PROLOGUE(ip) {(ip) = z8k_skip_prologue(ip);}
44extern CORE_ADDR mz8k_skip_prologue PARAMS ((CORE_ADDR ip));
45
46
47/* Immediately after a function call, return the saved pc.
48 Can't always go through the frames for this because on some machines
49 the new frame is not set up until the new function executes
50 some instructions. */
51
52#define SAVED_PC_AFTER_CALL(frame) saved_pc_after_call(frame)
53
54/* Stack grows downward. */
55
56#define INNER_THAN <
57
58/* Sequence of bytes for breakpoint instruction. */
59
60#define BREAKPOINT {0x36,0x00}
61
62/* If your kernel resets the pc after the trap happens you may need to
63 define this before including this file. */
64
65#define DECR_PC_AFTER_BREAK 0
66
67/* Nonzero if instruction at PC is a return instruction. */
68/* Allow any of the return instructions, including a trapv and a return
69 from interupt. */
70
71#define ABOUT_TO_RETURN(pc) about_to_return(pc)
72
826e69cf 73/* Say how long registers are. */
5076de82 74
826e69cf 75#define REGISTER_TYPE unsigned int
5076de82
FF
76
77#define NUM_REGS 23 /* 16 registers + 1 ccr + 1 pc + 3 debug
78 regs + fake fp + fake sp*/
79#define REGISTER_BYTES (NUM_REGS *4)
80
81/* Index within `registers' of the first byte of the space for
82 register N. */
83
84#define REGISTER_BYTE(N) ((N)*4)
85
86/* Number of bytes of storage in the actual machine representation
87 for register N. On the z8k, all but the pc are 2 bytes, but we
88 keep them all as 4 bytes and trim them on I/O */
89
90
91#define REGISTER_RAW_SIZE(N) (((N) < 16)? 2:4)
92
93/* Number of bytes of storage in the program's representation
94 for register N. */
95
96#define REGISTER_VIRTUAL_SIZE(N) REGISTER_RAW_SIZE(N)
97
98/* Largest value REGISTER_RAW_SIZE can have. */
99
100#define MAX_REGISTER_RAW_SIZE 4
101
102/* Largest value REGISTER_VIRTUAL_SIZE can have. */
103
104#define MAX_REGISTER_VIRTUAL_SIZE 4
105
5076de82
FF
106/* Return the GDB type object for the "standard" data type
107 of data in register N. */
108
109#define REGISTER_VIRTUAL_TYPE(N) \
110 (REGISTER_VIRTUAL_SIZE(N) == 2? builtin_type_unsigned_int : builtin_type_long)
111
112/*#define INIT_FRAME_PC(x,y) init_frame_pc(x,y)*/
113/* Initializer for an array of names of registers.
114 Entries beyond the first NUM_REGS are ignored. */
115
116#define REGISTER_NAMES \
117 {"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", \
118 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15", \
119 "ccr", "pc", "cycles","insts","time","fp","sp"}
120
121/* Register numbers of various important registers.
122 Note that some of these values are "real" register numbers,
123 and correspond to the general registers of the machine,
124 and some are "phony" register numbers which are too large
125 to be actual register numbers as far as the user is concerned
126 but do serve to get the desired values when passed to read_register. */
127
128#define CCR_REGNUM 16 /* Contains processor status */
129#define PC_REGNUM 17 /* Contains program counter */
130#define CYCLES_REGNUM 18
131#define INSTS_REGNUM 19
132#define TIME_REGNUM 20
133#define FP_REGNUM 21 /* Contains fp, whatever memory model */
134#define SP_REGNUM 22 /* Conatins sp, whatever memory model */
135
136
137
138#define PTR_SIZE (BIG ? 4: 2)
139#define PTR_MASK (BIG ? 0xff00ffff : 0x0000ffff)
140
141/* Store the address of the place in which to copy the structure the
142 subroutine will return. This is called from call_function. */
143
144#define STORE_STRUCT_RETURN(ADDR, SP) abort();
145
146/* Extract from an array REGBUF containing the (raw) register state
147 a function return value of type TYPE, and copy that, in virtual format,
148 into VALBUF. This is assuming that floating point values are returned
149 as doubles in d0/d1. */
150
151
152#define EXTRACT_RETURN_VALUE(TYPE,REGBUF,VALBUF) \
ade40d31 153 memcpy(VALBUF, REGBUF + REGISTER_BYTE(2), TYPE_LENGTH(TYPE));
5076de82
FF
154
155/* Write into appropriate registers a function return value
156 of type TYPE, given in virtual format. */
157
158#define STORE_RETURN_VALUE(TYPE,VALBUF) abort();
159
160/* Extract from an array REGBUF containing the (raw) register state
161 the address in which a function should return its structure value,
162 as a CORE_ADDR (or an expression that can be used as one). */
163
164#define EXTRACT_STRUCT_VALUE_ADDRESS(REGBUF) (*(CORE_ADDR *)(REGBUF))
165\f
166/* Describe the pointer in each stack frame to the previous stack frame
167 (its caller). */
168
169/* FRAME_CHAIN takes a frame's nominal address and produces the frame's
170 chain-pointer.
171 In the case of the Z8000, the frame's nominal address
172 is the address of a ptr sized byte word containing the calling
173 frame's address. */
174
175#define FRAME_CHAIN(thisframe) frame_chain(thisframe);
176
177
178
179/* Define other aspects of the stack frame. */
180
181/* A macro that tells us whether the function invocation represented
182 by FI does not have a frame on the stack associated with it. If it
183 does not, FRAMELESS is set to 1, else 0. */
184#define FRAMELESS_FUNCTION_INVOCATION(FI, FRAMELESS) \
185 (FRAMELESS) = frameless_look_for_prologue(FI)
186
187#define FRAME_SAVED_PC(FRAME) frame_saved_pc(FRAME)
188
189#define FRAME_ARGS_ADDRESS(fi) ((fi)->frame)
190
191#define FRAME_LOCALS_ADDRESS(fi) ((fi)->frame)
192
193/* Set VAL to the number of args passed to frame described by FI.
194 Can set VAL to -1, meaning no way to tell. */
195
196/* We can't tell how many args there are
197 now that the C compiler delays popping them. */
198#if !defined (FRAME_NUM_ARGS)
199#define FRAME_NUM_ARGS(val,fi) (val = -1)
200#endif
201
202/* Return number of bytes at start of arglist that are not really args. */
203
204#define FRAME_ARGS_SKIP 8
205
206
207\f
208/* Things needed for making the inferior call functions.
209 It seems like every m68k based machine has almost identical definitions
210 in the individual machine's configuration files. Most other cpu types
211 (mips, i386, etc) have routines in their *-tdep.c files to handle this
212 for most configurations. The m68k family should be able to do this as
213 well. These macros can still be overridden when necessary. */
214
215/* The CALL_DUMMY macro is the sequence of instructions, as disassembled
216 by gdb itself:
217
218 fmovemx fp0-fp7,sp@- 0xf227 0xe0ff
219 moveml d0-a5,sp@- 0x48e7 0xfffc
220 clrw sp@- 0x4267
221 movew ccr,sp@- 0x42e7
222
223 /..* The arguments are pushed at this point by GDB;
224 no code is needed in the dummy for this.
225 The CALL_DUMMY_START_OFFSET gives the position of
226 the following jsr instruction. *../
227
228 jsr @#0x32323232 0x4eb9 0x3232 0x3232
229 addal #0x69696969,sp 0xdffc 0x6969 0x6969
230 trap #<your BPT_VECTOR number here> 0x4e4?
231 nop 0x4e71
232
233 Note this is CALL_DUMMY_LENGTH bytes (28 for the above example).
234 We actually start executing at the jsr, since the pushing of the
235 registers is done by PUSH_DUMMY_FRAME. If this were real code,
236 the arguments for the function called by the jsr would be pushed
237 between the moveml and the jsr, and we could allow it to execute through.
238 But the arguments have to be pushed by GDB after the PUSH_DUMMY_FRAME is
239 done, and we cannot allow the moveml to push the registers again lest
240 they be taken for the arguments. */
241
242
243#define CALL_DUMMY { 0 }
244#define CALL_DUMMY_LENGTH 24 /* Size of CALL_DUMMY */
245#define CALL_DUMMY_START_OFFSET 8 /* Offset to jsr instruction*/
246
247
248/* Insert the specified number of args and function address
249 into a call sequence of the above form stored at DUMMYNAME.
250 We use the BFD routines to store a big-endian value of known size. */
251
252#define FIX_CALL_DUMMY(dummyname, pc, fun, nargs, args, type, gcc_p) \
4a87a64a
ILT
253{ bfd_putb32 (fun, (char *) dummyname + CALL_DUMMY_START_OFFSET + 2); \
254 bfd_putb32 (nargs*4, (char *) dummyname + CALL_DUMMY_START_OFFSET + 8); }
5076de82
FF
255
256/* Push an empty stack frame, to record the current PC, etc. */
257
258#define PUSH_DUMMY_FRAME { z8k_push_dummy_frame (); }
259
260extern void z8k_push_dummy_frame PARAMS ((void));
261
262extern void z8k_pop_frame PARAMS ((void));
263
264/* Discard from the stack the innermost frame, restoring all registers. */
265
266#define POP_FRAME { z8k_pop_frame (); }
267
268/* Offset from SP to first arg on stack at first instruction of a function */
269
270#define SP_ARG0 (1 * 4)
271
272#define ADDR_BITS_REMOVE(x) addr_bits_remove(x)
e34f4a43
SC
273int sim_z8001_mode;
274#define BIG (sim_z8001_mode)
5076de82
FF
275
276#define read_memory_short(x) (read_memory_integer(x,2) & 0xffff)
277
278#define NO_STD_REGS
279
280#define PRINT_REGISTER_HOOK(regno) print_register_hook(regno)
281
282
283#define INIT_EXTRA_SYMTAB_INFO \
284 z8k_set_pointer_size(objfile->obfd->arch_info->bits_per_address);
826e69cf
SC
285
286#define REGISTER_SIZE 4
287
This page took 0.18637 seconds and 4 git commands to generate.