Add '#define HAVE_PROCFS', move '#include "fopen-same.h" to end of file
[deliverable/binutils-gdb.git] / gdb / tm-pyr.h
CommitLineData
fbcb5095
JG
1/* Definitions to make GDB run on a Pyramid under OSx 4.0 (4.2bsd).
2 Copyright (C) 1988, 1989, 1991 Free Software Foundation, Inc.
dd3b648e
RP
3
4This file is part of GDB.
5
99a7de40 6This program is free software; you can redistribute it and/or modify
dd3b648e 7it under the terms of the GNU General Public License as published by
99a7de40
JG
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
dd3b648e 10
99a7de40 11This program is distributed in the hope that it will be useful,
dd3b648e
RP
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
99a7de40
JG
17along with this program; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
dd3b648e
RP
19
20#define TARGET_BYTE_ORDER BIG_ENDIAN
21
22/* Traditional Unix virtual address spaces have thre regions: text,
23 data and stack. The text, initialised data, and uninitialised data
24 are represented in separate segments of the a.out file.
25 When a process dumps core, the data and stack regions are written
26 to a core file. This gives a debugger enough information to
27 reconstruct (and debug) the virtual address space at the time of
28 the coredump.
29 Pyramids have an distinct fourth region of the virtual address
30 space, in which the contents of the windowed registers are stacked
31 in fixed-size frames. Pyramid refer to this region as the control
32 stack. Each call (or trap) automatically allocates a new register
33 frame; each return deallocates the current frame and restores the
34 windowed registers to their values before the call.
35
36 When dumping core, the control stack is written to a core files as
37 a third segment. The core-handling functions need to know to deal
38 with it. */
39/* Tell core.c there is an extra segment. */
40#define REG_STACK_SEGMENT
41
42/* Floating point is IEEE compatible on most Pyramid hardware
43 (Older processors do not have IEEE NaNs). */
44#define IEEE_FLOAT
45
46/* Define this if the C compiler puts an underscore at the front
47 of external names before giving them to the linker. */
48
49#define NAMES_HAVE_UNDERSCORE
50
dd3b648e
RP
51/* Offset from address of function to start of its code.
52 Zero on most machines. */
53
54#define FUNCTION_START_OFFSET 0
55
56/* Advance PC across any function entry prologue instructions
57 to reach some "real" code. */
58
59/* FIXME -- do we want to skip insns to allocate the local frame?
60 If so, what do they look like?
61 This is becoming harder, since tege@sics.SE wants to change
62 gcc to not output a prologue when no frame is needed. */
63#define SKIP_PROLOGUE(pc) do {} while (0)
64
65
66/* Immediately after a function call, return the saved pc.
67 Can't always go through the frames for this because on some machines
68 the new frame is not set up until the new function executes
69 some instructions. */
70
71#define SAVED_PC_AFTER_CALL(frame) FRAME_SAVED_PC(frame)
72
73/* Address of end of stack space. */
74/* This seems to be right for the 90x comp.vuw.ac.nz.
75 The correct value at any site may be a function of the configured
76 maximum control stack depth. If so, I don't know where the
77 control-stack depth is configured, so I can't #include it here. */
78#define STACK_END_ADDR (0xc00cc000)
79
80/* Register window stack (Control stack) stack definitions
81 - Address of beginning of control stack.
82 - size of control stack frame
83 (Note that since crts0 is usually the first function called,
84 main()'s control stack is one frame (0x80 bytes) beyond this value. */
85
86#define CONTROL_STACK_ADDR (0xc00cd000)
87
88/* Bytes in a register window -- 16 parameter regs, 16 local regs
89 for each call, is 32 regs * 4 bytes */
90
91#define CONTROL_STACK_FRAME_SIZE (32*4)
92
93/* FIXME. On a pyr, Data Stack grows downward; control stack goes upwards.
94 Which direction should we use for INNER_THAN, PC_INNER_THAN ?? */
95
96#define INNER_THAN <
97#define PC_INNER_THAN >
98
99/* Stack has strict alignment. */
100
101#define STACK_ALIGN(ADDR) (((ADDR)+3)&-4)
102
103/* Sequence of bytes for breakpoint instruction. */
104
105#define BREAKPOINT {0xf0, 00, 00, 00}
106
107/* Amount PC must be decremented by after a breakpoint.
108 This is often the number of bytes in BREAKPOINT
109 but not always. */
110
111#define DECR_PC_AFTER_BREAK 0
112
113/* Nonzero if instruction at PC is a return instruction.
114 On a pyr, this is either "ret" or "retd".
115 It would be friendly to check that any "retd" always had an
116 argument of 0, since anything else is invalid. */
117
118#define ABOUT_TO_RETURN(pc) \
119(((read_memory_integer (pc, 2) & 0x3ff0) == 0x3090) || \
120 ((read_memory_integer (pc, 2) & 0x0ff0) == 0x00a0))
121
122/* Return 1 if P points to an invalid floating point value.
123 LEN is the length in bytes -- not relevant on the Vax. */
124/* FIXME -- this is ok for a vax, bad for big-endian ieee format.
125 I would use the definition for a Sun; but it is no better! */
126
127#define INVALID_FLOAT(p, len) ((*(short *) p & 0xff80) == 0x8000)
128
129/* Say how long (ordinary) registers are. */
130
131#define REGISTER_TYPE long
132
133/* Number of machine registers */
134/* pyramids have 64, plus one for the PSW; plus perhaps one more for the
135 kernel stack pointer (ksp) and control-stack pointer (CSP) */
136
137#define NUM_REGS 67
138
139/* Initializer for an array of names of registers.
140 There should be NUM_REGS strings in this initializer. */
141
142#define REGISTER_NAMES \
143{"gr0", "gr1", "gr2", "gr3", "gr4", "gr5", "gr6", "gr7", \
144 "gr8", "gr9", "gr10", "gr11", "logpsw", "cfp", "sp", "pc", \
145 "pr0", "pr1", "pr2", "pr3", "pr4", "pr5", "pr6", "pr7", \
146 "pr8", "pr9", "pr10", "pr11", "pr12", "pr13", "pr14", "pr15", \
147 "lr0", "lr1", "lr2", "lr3", "lr4", "lr5", "lr6", "lr7", \
148 "lr8", "lr9", "lr10", "lr11", "lr12", "lr13", "lr14", "lr15", \
149 "tr0", "tr1", "tr2", "tr3", "tr4", "tr5", "tr6", "tr7", \
150 "tr8", "tr9", "tr10", "tr11", "tr12", "tr13", "tr14", "tr15", \
151 "psw", "ksp", "csp"}
152
153/* Register numbers of various important registers.
154 Note that some of these values are "real" register numbers,
155 and correspond to the general registers of the machine,
156 and some are "phony" register numbers which are too large
157 to be actual register numbers as far as the user is concerned
158 but do serve to get the desired values when passed to read_register. */
159
160/* pseudo-registers: */
161#define PS_REGNUM 64 /* Contains processor status */
162#define PSW_REGNUM 64 /* Contains current psw, whatever it is.*/
163#define CSP_REGNUM 65 /* address of this control stack frame*/
164#define KSP_REGNUM 66 /* Contains process's Kernel Stack Pointer */
165
166#define CFP_REGNUM 13 /* Current data-stack frame ptr */
167#define TR0_REGNUM 48 /* After function call, contains
168 function result */
169
170/* Registers interesting to the machine-independent part of gdb*/
171
172#define FP_REGNUM CSP_REGNUM /* Contains address of executing (control)
173 stack frame */
174#define SP_REGNUM 14 /* Contains address of top of stack -??*/
175#define PC_REGNUM 15 /* Contains program counter */
176
177/* Define DO_REGISTERS_INFO() to do machine-specific formatting
178 of register dumps. */
179
361bf6ee 180#define DO_REGISTERS_INFO(_regnum, fp) pyr_do_registers_info(_regnum, fp)
dd3b648e
RP
181
182/* need this so we can find the global registers: they never get saved. */
183extern unsigned int global_reg_offset;
184extern unsigned int last_frame_offset;
185
186/* Total amount of space needed to store our copies of the machine's
187 register state, the array `registers'. */
188#define REGISTER_BYTES (NUM_REGS*4)
189
190/* the Pyramid has register windows. */
191
192#define HAVE_REGISTER_WINDOWS
193
194/* Is this register part of the register window system? A yes answer
195 implies that 1) The name of this register will not be the same in
196 other frames, and 2) This register is automatically "saved" (out
197 registers shifting into ins counts) upon subroutine calls and thus
198 there is no need to search more than one stack frame for it. */
199
200#define REGISTER_IN_WINDOW_P(regnum) \
201 ((regnum) >= 16 && (regnum) < 64)
202
203/* Index within `registers' of the first byte of the space for
204 register N. */
205
206#define REGISTER_BYTE(N) ((N) * 4)
207
208/* Number of bytes of storage in the actual machine representation
209 for register N. On the Pyramid, all regs are 4 bytes. */
210
211#define REGISTER_RAW_SIZE(N) 4
212
213/* Number of bytes of storage in the program's representation
214 for register N. On the Pyramid, all regs are 4 bytes. */
215
216#define REGISTER_VIRTUAL_SIZE(N) 4
217
218/* Largest value REGISTER_RAW_SIZE can have. */
219
220#define MAX_REGISTER_RAW_SIZE 4
221
222/* Largest value REGISTER_VIRTUAL_SIZE can have. */
223
224#define MAX_REGISTER_VIRTUAL_SIZE 4
225
226/* Nonzero if register N requires conversion
227 from raw format to virtual format. */
228
229#define REGISTER_CONVERTIBLE(N) 0
230
231/* Convert data from raw format for register REGNUM
232 to virtual format for register REGNUM. */
233
234#define REGISTER_CONVERT_TO_VIRTUAL(REGNUM,FROM,TO) \
235 bcopy ((FROM), (TO), 4);
236
237/* Convert data from virtual format for register REGNUM
238 to raw format for register REGNUM. */
239
240#define REGISTER_CONVERT_TO_RAW(REGNUM,FROM,TO) \
241 bcopy ((FROM), (TO), 4);
242
243/* Return the GDB type object for the "standard" data type
244 of data in register N. */
245
246#define REGISTER_VIRTUAL_TYPE(N) builtin_type_int
247
248/* FIXME: It seems impossible for both EXTRACT_RETURN_VALUE and
249 STORE_RETURN_VALUE to be correct. */
250
251/* Store the address of the place in which to copy the structure the
252 subroutine will return. This is called from call_function. */
253
254/****FIXME****/
255#define STORE_STRUCT_RETURN(ADDR, SP) \
256 { write_register (TR0_REGNUM, (ADDR)); }
257
258/* Extract from an array REGBUF containing the (raw) register state
259 a function return value of type TYPE, and copy that, in virtual format,
260 into VALBUF. */
261
262/* Note that on a register-windowing machine (eg, Pyr, SPARC), this is
263 where the value is found after the function call -- ie, it should
264 correspond to GNU CC's FUNCTION_VALUE rather than FUNCTION_OUTGOING_VALUE.*/
265
266#define EXTRACT_RETURN_VALUE(TYPE,REGBUF,VALBUF) \
267 bcopy (((int *)(REGBUF))+TR0_REGNUM, VALBUF, TYPE_LENGTH (TYPE))
268
269/* Write into appropriate registers a function return value
270 of type TYPE, given in virtual format. */
271/* on pyrs, values are returned in */
272
273#define STORE_RETURN_VALUE(TYPE,VALBUF) \
274 write_register_bytes (REGISTER_BYTE(TR0_REGNUM), VALBUF, TYPE_LENGTH (TYPE))
275
276/* Extract from an array REGBUF containing the (raw) register state
277 the address in which a function should return its structure value,
278 as a CORE_ADDR (or an expression that can be used as one). */
279/* FIXME */
280#define EXTRACT_STRUCT_VALUE_ADDRESS(REGBUF) \
281 ( ((int *)(REGBUF)) [TR0_REGNUM])
282
283\f
284/* Describe the pointer in each stack frame to the previous stack frame
285 (its caller). */
286
287#define EXTRA_FRAME_INFO \
288 FRAME_ADDR bottom; \
289 CORE_ADDR frame_cfp; \
290 CORE_ADDR frame_window_addr;
291
a23075bc 292#define INIT_EXTRA_FRAME_INFO(fromleaf, fci) \
dd3b648e
RP
293do { \
294 (fci)->frame_window_addr = (fci)->frame; \
295 (fci)->bottom = \
296 ((fci)->next ? \
297 ((fci)->frame == (fci)->next_frame ? \
298 (fci)->next->bottom : (fci)->next->frame) : \
299 read_register (SP_REGNUM)); \
300 (fci)->frame_cfp = \
301 read_register (CFP_REGNUM); \
302 /***fprintf (stderr, \
303 "[[creating new frame for %0x,pc=%0x,csp=%0x]]\n", \
304 (fci)->frame, (fci)->pc,(fci)->frame_cfp);*/ \
305} while (0);
306
307/* FRAME_CHAIN takes a frame's nominal address
308 and produces the frame's chain-pointer.
309
dd3b648e 310 However, if FRAME_CHAIN_VALID returns zero,
e140f1da 311 it means the given frame is the outermost one and has no caller. */
dd3b648e
RP
312
313/* In the case of the pyr, the frame's nominal address is the address
314 of parameter register 0. The previous frame is found 32 words up. */
315
316#define FRAME_CHAIN(thisframe) \
317 ( (thisframe) -> frame - CONTROL_STACK_FRAME_SIZE)
318
319#define FRAME_CHAIN_VALID(chain, thisframe) \
320 (chain != 0 && (outside_startup_file (FRAME_SAVED_PC (thisframe))))
321
322 /*((thisframe) >= CONTROL_STACK_ADDR))*/
323
dd3b648e
RP
324/* Define other aspects of the stack frame. */
325
326/* A macro that tells us whether the function invocation represented
327 by FI does not have a frame on the stack associated with it. If it
328 does not, FRAMELESS is set to 1, else 0.
329
330 I do not understand what this means on a Pyramid, where functions
331 *always* have a control-stack frame, but may or may not have a
332 frame on the data stack. Since GBD uses the value of the
333 control stack pointer as its "address" of a frame, FRAMELESS
334 is always 1, so does not need to be defined. */
335
336
337/* Where is the PC for a specific frame */
338
339#define FRAME_SAVED_PC(fi) \
340 ((CORE_ADDR) (read_memory_integer ( (fi) -> frame + 60, 4)))
341
342/* There may be bugs in FRAME_ARGS_ADDRESS and FRAME_LOCALS_ADDRESS;
343 or there may be bugs in accessing the registers that break
344 their definitions.
345 Having the macros expand into functions makes them easier to debug.
346 When the bug is finally located, the inline macro defintions can
347 be un-#if 0ed, and frame_args_addr and frame_locals_address can
348 be deleted from pyr-dep.c */
349
350/* If the argument is on the stack, it will be here. */
351#define FRAME_ARGS_ADDRESS(fi) \
352 frame_args_addr(fi)
353
354#define FRAME_LOCALS_ADDRESS(fi) \
355 frame_locals_address(fi)
356
357/* The following definitions doesn't seem to work.
358 I don't understand why. */
359#if 0
360#define FRAME_ARGS_ADDRESS(fi) \
361 /*(FRAME_FP(fi) + (13*4))*/ (read_register (CFP_REGNUM))
362
363#define FRAME_LOCALS_ADDRESS(fi) \
364 ((fi)->frame +(16*4))
365
366#endif /* 0 */
367
368/* Return number of args passed to a frame.
369 Can return -1, meaning no way to tell. */
370
371#define FRAME_NUM_ARGS(val, fi) (val = -1)
372
373/* Return number of bytes at start of arglist that are not really args. */
374
375#define FRAME_ARGS_SKIP 0
376
377/* Put here the code to store, into a struct frame_saved_regs,
378 the addresses of the saved registers of frame described by FRAME_INFO.
379 This includes special registers such as pc and fp saved in special
380 ways in the stack frame. sp is even more special:
381 the address we return for it IS the sp for the next frame.
382
383 Note that on register window machines, we are currently making the
384 assumption that window registers are being saved somewhere in the
385 frame in which they are being used. If they are stored in an
386 inferior frame, find_saved_register will break.
387
388 On pyrs, frames of window registers are stored contiguously on a
389 separate stack. All window registers are always stored.
390 The pc and psw (gr15 and gr14) are also always saved: the call
391 insn saves them in pr15 and pr14 of the new frame (tr15,tr14 of the
392 old frame).
393 The data-stack frame pointer (CFP) is only saved in functions which
394 allocate a (data)stack frame (with "adsf"). We detect them by
395 looking at the first insn of the procedure.
396
397 Other non-window registers (gr0-gr11) are never saved. Pyramid's C
398 compiler and gcc currently ignore them, so it's not an issue. */
399
400#define FRAME_FIND_SAVED_REGS(fi_p, frame_saved_regs) \
401{ register int regnum; \
402 register CORE_ADDR pc; \
403 register CORE_ADDR fn_start_pc; \
404 register int first_insn; \
405 register CORE_ADDR prev_cf_addr; \
406 register int window_ptr; \
407 FRAME fid = FRAME_INFO_ID (fi_p); \
408 if (!fid) fatal ("Bad frame info struct in FRAME_FIND_SAVED_REGS"); \
409 bzero (&(frame_saved_regs), sizeof (frame_saved_regs)); \
410 \
411 window_ptr = prev_cf_addr = FRAME_FP(fi_p); \
412 \
413 for (regnum = 16 ; regnum < 64; regnum++,window_ptr+=4) \
414 { \
415 (frame_saved_regs).regs[regnum] = window_ptr; \
416 } \
417 \
418 /* In each window, psw, and pc are "saved" in tr14,tr15. */ \
419 /*** psw is sometimes saved in gr12 (so sez <sys/pcb.h>) */ \
420 (frame_saved_regs).regs[PS_REGNUM] = FRAME_FP(fi_p) + (14*4); \
421 \
422/*(frame_saved_regs).regs[PC_REGNUM] = (frame_saved_regs).regs[31];*/ \
423 (frame_saved_regs).regs[PC_REGNUM] = FRAME_FP(fi_p) + ((15+32)*4); \
424 \
425 /* Functions that allocate a frame save sp *where*? */ \
426/*first_insn = read_memory_integer (get_pc_function_start ((fi_p)->pc),4); */ \
427 \
428 fn_start_pc = (get_pc_function_start ((fi_p)->pc)); \
429 first_insn = read_memory_integer(fn_start_pc, 4); \
430 \
431 if (0x08 == ((first_insn >> 20) &0x0ff)) { \
432 /* NB: because WINDOW_REGISTER_P(cfp) is false, a saved cfp \
433 in this frame is only visible in this frame's callers. \
434 That means the cfp we mark saved is my caller's cfp, ie pr13. \
435 I don't understand why we don't have to do that for pc, too. */ \
436 \
437 (frame_saved_regs).regs[CFP_REGNUM] = FRAME_FP(fi_p)+(13*4); \
438 \
439 (frame_saved_regs).regs[SP_REGNUM] = \
440 read_memory_integer (FRAME_FP(fi_p)+((13+32)*4),4); \
441 } \
442 \
443/* \
444 *(frame_saved_regs).regs[CFP_REGNUM] = (frame_saved_regs).regs[61]; \
445 * (frame_saved_regs).regs[SP_REGNUM] = \
446 * read_memory_integer (FRAME_FP(fi_p)+((13+32)*4),4); \
447 */ \
448 \
449 (frame_saved_regs).regs[CSP_REGNUM] = prev_cf_addr; \
450}
451\f
452/* Things needed for making the inferior call functions. */
453#if 0
454/* These are all lies. These macro definitions are appropriate for a
455 SPARC. On a pyramid, pushing a dummy frame will
456 surely involve writing the control stack pointer,
457 then saving the pc. This requires a privileged instruction.
458 Maybe one day Pyramid can be persuaded to add a syscall to do this.
459 Until then, we are out of luck. */
460
461/* Push an empty stack frame, to record the current PC, etc. */
462
463#define PUSH_DUMMY_FRAME \
464{ register CORE_ADDR sp = read_register (SP_REGNUM);\
465 register int regnum; \
466 sp = push_word (sp, 0); /* arglist */ \
467 for (regnum = 11; regnum >= 0; regnum--) \
468 sp = push_word (sp, read_register (regnum)); \
469 sp = push_word (sp, read_register (PC_REGNUM)); \
470 sp = push_word (sp, read_register (FP_REGNUM)); \
471/* sp = push_word (sp, read_register (AP_REGNUM));*/ \
472 sp = push_word (sp, (read_register (PS_REGNUM) & 0xffef) \
473 + 0x2fff0000); \
474 sp = push_word (sp, 0); \
475 write_register (SP_REGNUM, sp); \
476 write_register (FP_REGNUM, sp); \
477/* write_register (AP_REGNUM, sp + 17 * sizeof (int));*/ }
478
479/* Discard from the stack the innermost frame, restoring all registers. */
480
481#define POP_FRAME \
482{ register CORE_ADDR fp = read_register (FP_REGNUM); \
483 register int regnum; \
484 register int regmask = read_memory_integer (fp + 4, 4); \
485 write_register (PS_REGNUM, \
486 (regmask & 0xffff) \
487 | (read_register (PS_REGNUM) & 0xffff0000)); \
488 write_register (PC_REGNUM, read_memory_integer (fp + 16, 4)); \
489 write_register (FP_REGNUM, read_memory_integer (fp + 12, 4)); \
490/* write_register (AP_REGNUM, read_memory_integer (fp + 8, 4));*/ \
491 fp += 16; \
492 for (regnum = 0; regnum < 12; regnum++) \
493 if (regmask & (0x10000 << regnum)) \
494 write_register (regnum, read_memory_integer (fp += 4, 4)); \
495 fp = fp + 4 + ((regmask >> 30) & 3); \
496 if (regmask & 0x20000000) \
497 { regnum = read_memory_integer (fp, 4); \
498 fp += (regnum + 1) * 4; } \
499 write_register (SP_REGNUM, fp); \
500 set_current_frame (read_register (FP_REGNUM)); }
501
502/* This sequence of words is the instructions
503 calls #69, @#32323232
504 bpt
505 Note this is 8 bytes. */
506
507#define CALL_DUMMY {0x329f69fb, 0x03323232}
508
509#define CALL_DUMMY_START_OFFSET 0 /* Start execution at beginning of dummy */
510
511/* Insert the specified number of args and function address
512 into a call sequence of the above form stored at DUMMYNAME. */
513
514#define FIX_CALL_DUMMY(dummyname, pc, fun, nargs, args, type, gcc_p) \
515{ *((char *) dummyname + 1) = nargs; \
516 *(int *)((char *) dummyname + 3) = fun; }
517#endif /* 0 */
518
519#define POP_FRAME \
520 { error ("The return command is not supported on this machine."); }
This page took 0.066332 seconds and 4 git commands to generate.