Removed superflous code.
[deliverable/binutils-gdb.git] / gdb / carp-tdep.c
CommitLineData
24615880
AC
1#include "defs.h"
2#include "tm.h"
3#include "target.h"
4
5/* #define CARP */
6
7/* BAD HACKS */
8
9int carp_sizeof_struct_frame_saved_regs;
10/* #define SIZEOF_STRUCT_FRAME_SAVED_REGS carp_sizeof_struct_frame_saved_regs */
11
12
13
14
15#if 0
16@item ADDITIONAL_OPTIONS
17@item ADDITIONAL_OPTION_CASES
18@item ADDITIONAL_OPTION_HANDLER
19@item ADDITIONAL_OPTION_HELP
20These are a set of macros that allow the addition of additional command
21line options to GDB. They are currently used only for the unsupported
22i960 Nindy target, and should not be used in any other configuration.
23#endif
24
25
26#if 0
27@item ADDR_BITS_REMOVE (addr)
28If a raw machine address includes any bits that are not really part of
29the address, then define this macro to expand into an expression that
30zeros those bits in @var{addr}. For example, the two low-order bits of
31a Motorola 88K address may be used by some kernels for their own
32purposes, since addresses must always be 4-byte aligned, and so are of
33no use for addressing. Those bits should be filtered out with an
34expression such as @code{((addr) & ~3)}.
35#endif
36CORE_ADDR carp_addr_bits_remove (CORE_ADDR addr) { return 0; }
37/* #define ADDR_BITS_REMOVE(addr) carp_addr_bits_remove (addr) */
38
39
40#if 0
41@item BEFORE_MAIN_LOOP_HOOK
42Define this to expand into any code that you want to execute before the
43main loop starts. Although this is not, strictly speaking, a target
44conditional, that is how it is currently being used. Note that if a
45configuration were to define it one way for a host and a different way
46for the target, GDB will probably not compile, let alone run correctly.
47This is currently used only for the unsupported i960 Nindy target, and
48should not be used in any other configuration.
49#endif
50
51
52#if 0
53@item BELIEVE_PCC_PROMOTION
54Define if the compiler promotes a short or char parameter to an int, but
55still reports the parameter as its original type, rather than the
56promoted type.
57#endif
58int carp_believe_pcc_promotion;
59/* #define BELIEVE_PCC_PROMOTION carp_believe_pcc_promotion */
60
61
62#if 0
63@item BELIEVE_PCC_PROMOTION_TYPE
64Define this if GDB should believe the type of a short argument when
65compiled by pcc, but look within a full int space to get its value.
66Only defined for Sun-3 at present.
67#endif
68int carp_believe_pcc_promotion_type;
69/* #define BELIEVE_PCC_PROMOTION_TYPE carp_believe_pcc_promotion_type */
70
71
72#if 0
73@item BITS_BIG_ENDIAN
74Define this if the numbering of bits in the targets does *not* match the
75endianness of the target byte order. A value of 1 means that the bits
76are numbered in a big-endian order, 0 means little-endian.
77#endif
78int carp_bits_big_endian;
79/* #define BITS_BIG_ENDIAN carp_bits_big_endian */
80
81
82#if 0
83@item BREAKPOINT
84This is the character array initializer for the bit pattern to put into
85memory where a breakpoint is set. Although it is common to use a trap
86instruction for a breakpoint, it is not required; for instance, the bit
87pattern could be an invalid instruction. The breakpoint must be no
88longer than the shortest instruction of the architecture.
89#endif
90char *carp_breakpoint;
91/* #define BREAKPOINT carp_breakpoint */
92
93
94#if 0
95@item BIG_BREAKPOINT
96@item LITTLE_BREAKPOINT
97Similar to BREAKPOINT, but used for bi-endian targets.
98#endif
99char *carp_big_breakpoint;
100char *carp_little_breakpoint;
101/* #define BIG_BREAKPOINT carp_big_breakpoint */
102/* #define LITTLE_BREAKPOINT carp_little_breakpoint */
103
104
105#if 0
106@item CALL_DUMMY
107valops.c
108@item CALL_DUMMY_LOCATION
109inferior.h
110@item CALL_DUMMY_STACK_ADJUST
111valops.c
112@item CALL_DUMMY_START_OFFSET
113#endif
114char *carp_call_dummy (void) { return 0; }
115/* #define CALL_DUMMY carp_call_dummy () */
116int carp_sizeof_call_dummy;
117/* #define SIZEOF_CALL_DUMMY carp_sizeof_call_dummy */
118int carp_call_dummy_location;
119/* #define CALL_DUMMY_LOCATION carp_call_dummy_location */
120int carp_call_stack_adjust;
121/* #define CALL_DUMMY_STACK_ADJUST carp_call_stack_adjust */
122int carp_call_start_offset;
123/* #define CALL_DUMMY_START_OFFSET carp_call_start_offset */
124
125
126#if 0
127@item CANNOT_FETCH_REGISTER (regno)
128A C expression that should be nonzero if @var{regno} cannot be fetched
129from an inferior process. This is only relevant if
130@code{FETCH_INFERIOR_REGISTERS} is not defined.
131#endif
132int carp_cannot_fetch_register;
133/* #define CANNOT_FETCH_REGISTER(regno) carp_cannot_fetch_register(regno) */
134
135
136#if 0
137@item CANNOT_STORE_REGISTER (regno)
138A C expression that should be nonzero if @var{regno} should not be
139written to the target. This is often the case for program counters,
140status words, and other special registers. If this is not defined, GDB
141will assume that all registers may be written.
142#endif
143int carp_cannot_store_register (int regno) { return 0; }
144/* #define CANNOT_STORE_REGISTER(regno) carp_cannot_store_register(regno) */
145
146
147#if 0
148@item CHILL_PRODUCER
149@item GCC_PRODUCER
150@item GPLUS_PRODUCER
151@item LCC_PRODUCER
152If defined, these are the producer strings in a DWARF 1 file. All of
153these have reasonable defaults already.
154#endif
155
156
157#if 0
158@item DO_DEFERRED_STORES
159@item CLEAR_DEFERRED_STORES
160Define this to execute any deferred stores of registers into the inferior,
161and to cancel any deferred stores.
162Currently only implemented correctly for native Sparc configurations?
163#endif
164void carp_do_deferred_stores (void) { return; }
165void carp_clear_deferred_stores (void) { return; }
166/* #define DO_DEFERRED_STORES carp_do_deferred_stores () */
167/* #define CLEAR_DEFERRED_STORES carp_clear_deferred_stores () */
168
169
170#if 0
171@item CPLUS_MARKER
172Define this to expand into the character that G++ uses to distinguish
173compiler-generated identifiers from programmer-specified identifiers.
174By default, this expands into @code{'$'}. Most System V targets should
175define this to @code{'.'}.
176#endif
177
178
179#if 0
180@item DBX_PARM_SYMBOL_CLASS
181Hook for the @code{SYMBOL_CLASS} of a parameter when decoding DBX symbol
182information. In the i960, parameters can be stored as locals or as
183args, depending on the type of the debug record.
184#endif
185
186
187#if 0
188@item DECR_PC_AFTER_BREAK
189Define this to be the amount by which to decrement the PC after the
190program encounters a breakpoint. This is often the number of bytes in
191BREAKPOINT, though not always. For most targets this value will be 0.
192#endif
193int carp_decr_pc_after_break;
194/* #define DECR_PC_AFTER_BREAK carp_decr_pc_after_break */
195
196
197#if 0
198@item DECR_PC_AFTER_HW_BREAK
199Similarly, for hardware breakpoints.
200#endif
201int carp_decr_pc_after_hw_break;
202/* #define DECR_PC_AFTER_HW_BREAK carp_decr_pc_after_hw_break */
203
204
205#if 0
206@item DISABLE_UNSETTABLE_BREAK addr
207If defined, this should evaluate to 1 if @var{addr} is in a shared
208library in which breakpoints cannot be set and so should be disabled.
209#endif
210
211
212#if 0
213@item DO_REGISTERS_INFO
214If defined, use this to print the value of a register or all registers.
215#endif
216void carp_do_registers_info (int regnum, int fpregs) { return; }
217/* #define DO_REGISTERS_INFO(r, f) carp_do_registers_info (r, f) */
218
219
220#if 0
221@item END_OF_TEXT_DEFAULT
222This is an expression that should designate the end of the text section
223(? FIXME ?)
224#endif
225
226
227#if 0
228@item EXTRACT_RETURN_VALUE(type,regbuf,valbuf)
229Define this to extract a functions return value of type @var{type} from
230the raw register state @var{regbuf} and copy that, in virtual format,
231into @var{valbuf}.
232#endif
233void carp_extract_return_value (struct type *type, char *regbuf, char *valbuf) { return; }
234/* #define EXTRACT_RETURN_VALUE(type,regbuf,valbuf) carp_extract_return_value(type,regbuf,valbuf) */
235
236
237#if 0
238@item EXTRACT_STRUCT_VALUE_ADDRESS(regbuf)
239Define this to extract from an array @var{regbuf} containing the (raw)
240register state, the address in which a function should return its
241structure value, as a CORE_ADDR (or an expression that can be used as
242one).
243#endif
244CORE_ADDR carp_extract_struct_value_address (char *regbuf) { return 0; }
245/* #define EXTRACT_STRUCT_VALUE_ADDRESS(regbuf) carp_extract_struct_value_address(regbuf) */
246
247
248#if 0
249@item EXTRA_FRAME_INFO
250If defined, this must be a list of slots that may be inserted into the
251@code{frame_info} structure defined in @code{frame.h}.
252#endif
253
254
255#if 0
256@item FIX_CALL_DUMMY
257#endif
258CORE_ADDR carp_fix_call_dummy (char *dummyname, CORE_ADDR start_sp, CORE_ADDR fun, int nargs, struct value **args, struct type *type, int gcc_p) { return 0; }
259/* #define FIX_CALL_DUMMY(dummy1, start_sp, funaddr, nargs, args, value_type, using_gcc) carp_fix_call_dummy (dummy1, start_sp, funaddr, nargs, args, value_type, using_gcc) */
260
261
262#if 0
263@item FLOAT_INFO
264If defined, then the info float command will print information about
265the processors floating point unit.
266#endif
267void carp_float_info (void) { return; }
268/* #define FLOAT_INFO carp_float_info () */
269
270
271#if 0
272@item FP_REGNUM
273The number of the frame pointer register.
274#endif
275int carp_fp_regnum;
276/* #define FP_REGNUM carp_fp_regnum */
277
278
279#if 0
280@item FRAMELESS_FUNCTION_INVOCATION(fi, frameless)
281Define this to set the variable @var{frameless} to 1 if the function
282invocation represented by @var{fi} does not have a stack frame
283associated with it. Otherwise set it to 0.
284#endif
285int carp_frameless_function_invocation (struct frame_info *fi) { return 0; }
286/* #define FRAMELESS_FUNCTION_INVOCATION(fi,frameless) (frameless) = carp_frameless_function_invocation (fi) */
287
288
289#if 0
290@item FRAME_ARGS_ADDRESS
291stack.c
292#endif
293CORE_ADDR carp_frame_args_address (struct frame_info *fi) { return 0; };
294/* #define FRAME_ARGS_ADDRESS(FI) carp_frame_args_address (FI) */
295
296
297#if 0
298@item FRAME_ARGS_ADDRESS_CORRECT
299stack.c
300#endif
301CORE_ADDR carp_frame_args_address_correct (struct frame_info *fi) { return 0; }
302/* #define FRAME_ARGS_ADDRESS_CORRECT(FI) carp_frame_args_address_correct(FI) */
303
304
305#if 0
306@item FRAME_ARGS_SKIP
307#endif
308int carp_frame_args_skip;
309/* #define FRAME_ARGS_SKIP carp_frame_args_skip */
310
311
312#if 0
313@item FRAME_CHAIN(frame)
314Given @var{frame}, return a pointer to the calling frame.
315#endif
316CORE_ADDR carp_frame_chain (struct frame_info *fi) { return 0; }
317/* #define FRAME_CHAIN(frame) carp_frame_chain (frame) */
318
319
320#if 0
321@item FRAME_CHAIN_COMBINE(chain,frame)
322Define this to take the frame chain pointer and the frames nominal
323address and produce the nominal address of the callers frame.
324Presently only defined for HP PA.
325#endif
326CORE_ADDR carp_frame_chain_combine (CORE_ADDR address, struct frame_info *fi) { return 0; }
327/* #define FRAME_CHAIN_COMBINE(address, frame) carp_frame_chain_combine (address, frame) */
328
329
330
331#if 0
332@item FRAME_CHAIN_VALID(chain,thisframe)
333Define this to be an expression that returns zero if the given frame is
334an outermost frame, with no caller, and nonzero otherwise. The default
335definition is nonzero if the chain pointer is nonzero and given frames
336PC is not inside the startup file (such as @file{crt0.o}). The
337alternate default definition (which is used if
338FRAME_CHAIN_VALID_ALTERNATE is defined) is nonzero if the chain pointer
339is nonzero and the given frames PC is not in @code{main()} or a known
340entry point function (such as @code{_start()}).
341#endif
342int carp_frame_chain_valid (CORE_ADDR address, struct frame_info *fi) { return 0; }
343/* #define FRAME_CHAIN_VALID(address, frame) carp_frame_chain_valid (address, frame) */
344
345
346#if 0
347@item FRAME_CHAIN_VALID_ALTERNATE
348Define this in order to use the alternate default definition of
349@code{FRAME_CHAIN_VALID}.
350#endif
351
352
353#if 0
354@item FRAME_FIND_SAVED_REGS
355stack.c
356#endif
357void carp_frame_find_saved_regs (struct frame_info *frame, struct frame_saved_regs *saved_regs_addr) { return; }
358/* #define FRAME_FIND_SAVED_REGS(frame, saved_regs_addr) carp_frame_find_saved_regs (frame, &(saved_regs_addr)) */
359
360
361#if 0
362@item FRAME_LOCALS_ADDRESS
363stack.c
364#endif
365CORE_ADDR carp_frame_locals_address (struct frame_info *fi) { return 0; };
366/* #define FRAME_LOCALS_ADDRESS(FI) carp_frame_locals_address (FI) */
367
368
369#if 0
370@item FRAME_NUM_ARGS (val, fi)
371For the frame described by fi, set val to the number of arguments
372that are being passed.
373#endif
374int carp_frame_num_args (struct frame_info *fi) { return 0; }
375/* #define FRAME_NUM_ARGS(val, fi) (val) = carp_frame_num_args (fi) */
376
377
378#if 0
379@item FRAME_SAVED_PC(frame)
380Given @var{frame}, return the pc saved there. That is, the return
381address.
382#endif
383CORE_ADDR carp_frame_saved_pc (struct frame_info *fi) { return 0; }
384/* #define FRAME_SAVED_PC(fi) carp_frame_saved_pc (fi) */
385
386
387#if 0
388@item FUNCTION_EPILOGUE_SIZE
389For some COFF targets, the @code{x_sym.x_misc.x_fsize} field of the
390function end symbol is 0. For such targets, you must define
391@code{FUNCTION_EPILOGUE_SIZE} to expand into the standard size of a
392functions epilogue.
393#endif
394int carp_function_epilogue_size;
395/* #define FUNCTION_EPILOGUE_SIZE carp_function_epilogue_size */
396
397
398#if 0
399@item FUNCTION_START_OFFSET
400#endif
401int carp_function_start_offset;
402/* #define FUNCTION_START_OFFSET carp_function_start_offset */
403
404
405#if 0
406@item GCC_COMPILED_FLAG_SYMBOL
407@item GCC2_COMPILED_FLAG_SYMBOL
408If defined, these are the names of the symbols that GDB will look for to
409detect that GCC compiled the file. The default symbols are
410@code{gcc_compiled.} and @code{gcc2_compiled.}, respectively. (Currently
411only defined for the Delta 68.)
412#endif
413
414
415#if 0
416@item GDB_TARGET_IS_HPPA
417This determines whether horrible kludge code in dbxread.c and
418partial-stab.h is used to mangle multiple-symbol-table files from
419HPPAs. This should all be ripped out, and a scheme like elfread.c
420used.
421#endif
422
423
424#if 0
425@item GDB_TARGET_IS_MACH386
426@item GDB_TARGET_IS_SUN3
427@item GDB_TARGET_IS_SUN386
428Kludges that should go away.
429#endif
430
431
432#if 0
433@item GET_LONGJMP_TARGET
434For most machines, this is a target-dependent parameter. On the
435DECstation and the Iris, this is a native-dependent parameter, since
436<setjmp.h> is needed to define it.
437
438This macro determines the target PC address that longjmp() will jump to,
439assuming that we have just stopped at a longjmp breakpoint. It takes a
440CORE_ADDR * as argument, and stores the target PC value through this
441pointer. It examines the current state of the machine as needed.
442#endif
443
444
445#if 0
446@item GET_SAVED_REGISTER
447Define this if you need to supply your own definition for the function
448@code{get_saved_register}. Currently this is only done for the a29k.
449#endif
450void get_saved_register (char *raw_buffer, int *optimized, CORE_ADDR *addrp, struct frame_info *frame, int regnum, enum lval_type *lval) { return; }
451/* #define GET_SAVED_REGISTER */
452
453
454#if 0
455@item HAVE_REGISTER_WINDOWS
456Define this if the target has register windows.
457@item REGISTER_IN_WINDOW_P (regnum)
458Define this to be an expression that is 1 is the given register is in
459the window.
460#endif
461int carp_have_register_windows;
462int carp_register_in_window_p (int regnum) { return 0; }
463/* #define HAVE_REGISTER_WINDOWS carp_have_register_windows */
464/* #define REGISTER_IN_WINDOW_P(regnum) carp_register_in_window_p (regnum) */
465
466
467#if 0
468@item REGISTER_VIRTUAL_TYPE
469#endif
470struct type *carp_register_virtual_type (int regno) { return 0; }
471/* #define REGISTER_VIRTUAL_TYPE(regno) carp_register_virtual_type (regno) */
472
473
474
475#if 0
476@item IBM6000_TARGET
477Shows that we are configured for an IBM RS/6000 target. This
478conditional should be eliminated (FIXME) and replaced by
479feature-specific macros. It was introduced in haste and we are
480repenting at leisure.
481#endif
482
483
484#if 0
485@item IEEE_FLOAT
486Define this if the target system uses IEEE-format floating point numbers.
487#endif
488int carp_ieee_float;
489/* #define IEEE_FLOAT carp_ieee_float */
490
491
492#if 0
493@item INIT_EXTRA_FRAME_INFO (fromleaf, fci)
494If defined, this should be a C expression or statement that fills in the
495@code{EXTRA_FRAME_INFO} slots of the given frame @var{fci}.
496#endif
497void carp_init_extra_frame_info (CORE_ADDR fromleaf, struct frame_info *fci) { return; }
498/* #define INIT_EXTRA_FRAME_INFO(fromleaf, fci) carp_init_extra_frame_info (fromleaf, fci) */
499
500
501
502#if 0
503@item INIT_FRAME_PC (fromleaf, prev)
504This is a C statement that sets the pc of the frame pointed to by
505@var{prev}. [By default...]
506#endif
507void carp_init_frame_pc (CORE_ADDR fromleaf, struct frame_info *fci) { return; }
508/* #define INIT_FRAME_PC(fromleaf, fci) carp_init_frame_pc (fromleaf, fci) */
509
510
511#if 0
512@item INNER_THAN
513Define this to be either @code{<} if the targets stack grows downward
514in memory, or @code{>} is the stack grows upwards.
515#endif
516/* #define INNER_THAN < */
517
518
519#if 0
520@item IN_SIGTRAMP (pc, name)
521Define this to return true if the given pc and/or name indicates that
522the current function is a sigtramp.
523#endif
524int carp_in_sigtramp (CORE_ADDR pc, char *name) { return 0; }
525/* #define IN_SIGTRAMP(pc, name) carp_in_sigtramp (pc, name) */
526
527
528#if 0
529@item SIGTRAMP_START (pc)
530@item SIGTRAMP_END (pc)
531Define these to be the start and end address of the sigtramp for the
532given pc. On machines where the address is just a compile time
533constant, the macro expansion will typically just ignore the supplied
534pc.
535#endif
536CORE_ADDR carp_sigtramp_start (CORE_ADDR pc) { return 0; }
537CORE_ADDR carp_sigtramp_end (CORE_ADDR pc) { return 0; }
538/* #define SIGTRAMP_START(pc) carp_sigtramp_start (pc) */
539/* #define SIGTRAMP_END(pc) carp_sigtramp_end (pc) */
540
541
542#if 0
543@item IN_SOLIB_TRAMPOLINE pc name
544Define this to evaluate to nonzero if the program is stopped in the
545trampoline that connects to a shared library.
546#endif
547
548
549#if 0
550@item IS_TRAPPED_INTERNALVAR name
551This is an ugly hook to allow the specification of special actions that
552should occur as a side-effect of setting the value of a variable
553internal to GDB. Currently only used by the h8500. Note that this
554could be either a host or target conditional.
555#endif
556int carp_is_trapped_internalvar (char *name) { return 0; }
557/* #define IS_TRAPPED_INTERNALVAR(name) carp_is_trapped_internalvar (name) */
558
559
560#if 0
561@item KERNEL_DEBUGGING
562tm-ultra3.h
563#endif
564
565
566#if 0
567@item MAX_REGISTER_RAW_SIZE
568#endif
569int carp_max_register_raw_size;
570/* #define MAX_REGISTER_RAW_SIZE carp_max_register_raw_size */
571
572
573#if 0
574@item MAX_REGISTER_VIRTUAL_SIZE
575#endif
576int carp_max_register_virtual_size;
577/* #define MAX_REGISTER_VIRTUAL_SIZE carp_max_register_virtual_size */
578
579
580#if 0
581@item MIPSEL
582mips-tdep.c
583#endif
584
585
586#if 0
587@item NEED_TEXT_START_END
588Define this if GDB should determine the start and end addresses of the
589text section. (Seems dubious.)
590#endif
591int carp_need_text_start_end;
592/* #define NEED_TEXT_START_END carp_need_text_start_end */
593
594
595#if 0
596@item NO_HIF_SUPPORT
597(Specific to the a29k.)
598#endif
599
600
601#if 0
602@item NO_SINGLE_STEP
603Define this if the target does not support single-stepping. If this is
604defined, you must supply, in @code{*-tdep.c}, the function
605@code{single_step}, which takes a target_signal as argument and returns
606nothing. It must insert breakpoints at each possible destinations of
607the next instruction. See @code{sparc-tdep.c} and @code{rs6000-tdep.c}
608for examples.
609#endif
610int one_stepped;
611void single_step (enum target_signal signal) { return; }
612/* #define NO_SINGLE_STEP */
613
614
615#if 0
616@item NUM_REGS
617#endif
618int carp_num_regs;
619/* #define NUM_REGS carp_num_regs */
620
621
622#if 0
623@item PCC_SOL_BROKEN
624(Used only in the Convex target.)
625#endif
626
627
628#if 0
629@item PC_IN_CALL_DUMMY
630inferior.h
631#endif
632int carp_pc_in_call_dummy (CORE_ADDR pc, CORE_ADDR sp, CORE_ADDR fp) { return 0; }
633/* #define PC_IN_CALL_DUMMY(pc, sp, fp) carp_pc_in_call_dummy (pc, sp, fp) */
634
635
636#if 0
637@item PC_LOAD_SEGMENT
638If defined, print information about the load segment for the program
639counter. (Defined only for the RS/6000.)
640#endif
641
642
643#if 0
644@item PC_REGNUM
645If the program counter is kept in a register, then define this macro to
646be the number of that register. This need be defined only if
647@code{TARGET_WRITE_PC} is not defined.
648#endif
649int carp_pc_regnum;
650/* #define PC_REGNUM carp_pc_regnum */
651
652
653#if 0
654@item NPC_REGNUM
655The number of the next program counter register, if defined.
656#endif
657
658
659#if 0
660@item NNPC_REGNUM
661The number of the next next program counter register, if defined.
662Currently, this is only defined for the Motorola 88K.
663#endif
664
665
666#if 0
667@item PRINT_REGISTER_HOOK (regno)
668If defined, this must be a function that prints the contents of the
669given register to standard output.
670#endif
671
672
673#if 0
674@item PRINT_TYPELESS_INTEGER
675This is an obscure substitute for @code{print_longest} that seems to
676have been defined for the Convex target.
677#endif
678
679
680#if 0
681@item PROCESS_LINENUMBER_HOOK
682A hook defined for XCOFF reading.
683#endif
684
685
686#if 0
687@item PROLOGUE_FIRSTLINE_OVERLAP
688(Only used in unsupported Convex configuration.)
689#endif
690
691
692#if 0
693@item PS_REGNUM
694If defined, this is the number of the processor status register. (This
695definition is only used in generic code when parsing "$ps".)
696#endif
697
698
699#if 0
700@item POP_FRAME
701Used in @samp{call_function_by_hand} to remove an artificial stack
702frame.
703#endif
704void carp_pop_frame (void) { return; }
705/* #define POP_FRAME carp_pop_frame () */
706
707
708#if 0
709@item PUSH_ARGUMENTS (nargs, args, sp, struct_return, struct_addr)
710Define this to push arguments onto the stack for inferior function call.
711#endif
712CORE_ADDR carp_push_arguments (int nargs, struct value **args, CORE_ADDR sp, unsigned char struct_return, CORE_ADDR struct_addr) { return 0; }
713/* #define PUSH_ARGUMENTS(NARGS, ARGS, SP, STRUCT_RETURN, STRUCT_ADDR) (SP) = carp_push_arguments (NARGS, ARGS, SP, STRUCT_RETURN, STRUCT_ADDR) */
714
715
716#if 0
717@item PUSH_DUMMY_FRAME
718Used in @samp{call_function_by_hand} to create an artificial stack frame.
719#endif
720void carp_push_dummy_frame (void) { return; }
721/* #define PUSH_DUMMY_FRAME carp_push_dummy_frame () */
722
723
724#if 0
725@item REGISTER_BYTE
726#endif
727int carp_register_byte (int regnum) { return 0; }
728#define REGISTER_BYTE(regnum) carp_register_byte (regnum)
729
730
731#if 0
732@item REGISTER_BYTES
733The total amount of space needed to store GDBs copy of the machines
734register state.
735#endif
736int carp_register_bytes;
737/* #define REGISTER_BYTES carp_register_bytes */
738
739
740#if 0
741@item REGISTER_NAMES
742Define this to expand into an initializer of an array of strings. Each
743string is the name of a register.
744#endif
745char **carp_register_names;
746/* #define REGISTER_NAMES carp_register_names */
747
748
749#if 0
750@item REGISTER_RAW_SIZE
751#endif
752int carp_register_raw_size (int regnum) { return 0; }
753/* #define REGISTER_RAW_SIZE(regnum) carp_register_raw_size (regnum) */
754
755
756#if 0
757@item REGISTER_SIZE
758Size of a general purpose register?
759#endif
760int carp_register_size;
761/* #define REGISTER_SIZE carp_register_size */
762
763
764#if 0
765@item REGISTER_VIRTUAL_SIZE
766#endif
767int carp_register_virtual_size (int regnum) { return 0; }
768/* #define REGISTER_VIRTUAL_SIZE(regnum) carp_register_virtual_size (regnum) */
769
770
771#if 0
772@item REG_STRUCT_HAS_ADDR (gcc_p, type)
773Define this to return 1 if the given type will be passed by pointer
774rather than directly.
775#endif
776int carp_reg_struct_has_addr (int gcc_p, struct type *type) { return 0; }
777/* #define REG_STRUCT_HAS_ADDR(gcc_p, type) carp_reg_struct_has_addr (gcc_p, type) */
778
779
780#if 0
781@item SAVED_PC_AFTER_CALL (frame)
782#endif
783CORE_ADDR carp_saved_pc_after_call (struct frame_info *frame) { return 0; }
784/* #define SAVED_PC_AFTER_CALL(frame) carp_saved_pc_after_call (frame) */
785
786
787#if 0
788@item SDB_REG_TO_REGNUM (regnum)
789Define this to convert sdb register numbers into GDB regnums. If not
790defined, no conversion will be done.
791#endif
792int carp_sdb_reg_to_regnum (int regnum) { return 0; }
793/* #define SDB_REG_TO_REGNUM(regnum) carp_sdb_reg_to_regnum (regnum) */
794
795
796#if 0
797@item SET_TRAPPED_INTERNALVAR
798#endif
799void carp_set_trapped_internalvar (struct internalvar *var, struct value *newval, int bitpos, int bitsize, int offset) { return; }
800/* #dfine SET_TRAPPED_INTERNALVAR(var, newval, bitpos, bitsize, offset) carp_set_trapped_internalvar (var, newval, bitpos, bitsize, offset) */
801
802
803#if 0
804@item SHIFT_INST_REGS
805(Only used for m88k targets.)
806#endif
807
808
809#if 0
810@item SKIP_PROLOGUE
811A C statement that advances the PC across any function entry prologue
812instructions so as to reach real code.
813#endif
814CORE_ADDR carp_skip_prologue (CORE_ADDR pc) { return 0; }
815/* #define SKIP_PROLOGUE(pc) (pc) = carp_skip_prologue (pc) */
816
817
818#if 0
819@item SKIP_PROLOGUE_FRAMELESS_P
820A C statement that should behave similarly, but that can stop as soon as
821the function is known to have a frame. If not defined,
822@code{SKIP_PROLOGUE} will be used instead.
823#endif
824CORE_ADDR carp_skip_prologue_frameless_p (CORE_ADDR pc) { return 0; }
825/* #define SKIP_PROLOGUE_FRAMELESS_P(pc) (pc) = carp_skip_prologue_frameless_p (pc) */
826
827
828#if 0
829@item SKIP_TRAMPOLINE_CODE (pc)
830If the target machine has trampoline code that sits between callers and
831the functions being called, then define this macro to return a new PC
832that is at the start of the real function.
833#endif
834CORE_ADDR carp_skip_trampoline_code (CORE_ADDR pc) { return 0; }
835/* #define SKIP_TRAMPOLINE_CODE(pc) (pc) = carp_skip_trampoline_code (pc) */
836
837
838#if 0
839@item SP_REGNUM
840Define this to be the number of the register that serves as the stack
841pointer.
842#endif
843int carp_sp_regnum;
844/* #define SP_REGNUM carp_sp_regnum */
845
846
847#if 0
848@item STAB_REG_TO_REGNUM
849Define this to convert stab register numbers (as gotten from r
850declarations) into GDB regnums. If not defined, no conversion will be
851done.
852#endif
853int carp_stab_reg_to_regnum (int regnum) { return 0; }
854/* #define STAB_REG_TO_REGNUM(regnum) carp_stab_reg_to_regnum (regnum) */
855
856
857#if 0
858@item STACK_ALIGN (addr)
859Define this to adjust the address to the alignment required for the
860processors stack.
861#endif
862CORE_ADDR carp_stack_align (CORE_ADDR pc) { return 0; }
863/* #define STACK_ALIGN(pc) carp_stack_align (pc) */
864
865
866#if 0
867@item STEP_SKIPS_DELAY (addr)
868Define this to return true if the address is of an instruction with a
869delay slot. If a breakpoint has been placed in the instructions delay
870slot, GDB will single-step over that instruction before resuming
871normally. Currently only defined for the Mips.
872#endif
873
874
875#if 0
876@item STORE_STRUCT_RETURN (type, valbuf)
877A C expression that stores a function return value of type @var{type},
878where @var{valbuf} is the address of the value to be stored.
879#endif
880void carp_store_struct_return (CORE_ADDR addr, CORE_ADDR sp) { return; }
881/* #define STORE_STRUCT_RETURN(addr,sp) carp_store_struct_return (addr, sp) */
882
883
884#if 0
885@item STORE_RETURN_VALUE (type, valbuf)
886A C expression that stores a function return value of type @var{type},
887where @var{valbuf} is the address of the value to be stored.
888#endif
889void carp_store_return_value (struct type *type, char *valbuf) { return; }
890/* #define STORE_RETURN_VALUE(type,valbuf) carp_store_return_value (type, valbuf) */
891
892
893#if 0
894@item SUN_FIXED_LBRAC_BUG
895(Used only for Sun-3 and Sun-4 targets.)
896#endif
897
898
899#if 0
900@item SYMBOL_RELOADING_DEFAULT
901The default value of the symbol-reloading variable. (Never defined in
902current sources.)
903#endif
904
905
906#if 0
907@item TARGET_BYTE_ORDER
908The ordering of bytes in the target. This must be defined to be either
909@code{BIG_ENDIAN} or @code{LITTLE_ENDIAN}.
910#endif
911int carp_target_byte_order;
912/* #define TARGET_BYTE_ORDER carp_target_byte_order */
913
914
915#if 0
916@item TARGET_CHAR_BIT
917Number of bits in a char; defaults to 8.
918#endif
919
920
921#if 0
922@item TARGET_COMPLEX_BIT
923Number of bits in a complex number; defaults to @code{2 * TARGET_FLOAT_BIT}.
924#endif
925int carp_target_complex_bit;
926/* #define TARGET_COMPLEX_BIT carp_target_complex_bit */
927
928
929#if 0
930@item TARGET_DOUBLE_BIT
931Number of bits in a double float; defaults to @code{8 * TARGET_CHAR_BIT}.
932#endif
933int carp_target_double_bit;
934/* #define TARGET_DOUBLE_BIT carp_target_double_bit */
935
936
937#if 0
938@item TARGET_DOUBLE_COMPLEX_BIT
939Number of bits in a double complex; defaults to @code{2 * TARGET_DOUBLE_BIT}.
940#endif
941int carp_target_double_complex_bit;
942/* #define TARGET_DOUBLE_COMPLEX_BIT carp_target_double_complex_bit */
943
944
945#if 0
946@item TARGET_FLOAT_BIT
947Number of bits in a float; defaults to @code{4 * TARGET_CHAR_BIT}.
948#endif
949int carp_target_float_bit;
950/* #define TARGET_FLOAT_BIT carp_target_float_bit */
951
952
953#if 0
954@item TARGET_INT_BIT
955Number of bits in an integer; defaults to @code{4 * TARGET_CHAR_BIT}.
956#endif
957int carp_target_int_bit;
958/* #define TARGET_INT_BIT carp_target_int_bit */
959
960
961#if 0
962@item TARGET_LONG_BIT
963Number of bits in a long integer; defaults to @code{4 * TARGET_CHAR_BIT}.
964#endif
965int carp_target_long_bit;
966/* #define TARGET_LONG_BIT carp_target_long_bit */
967
968
969#if 0
970@item TARGET_LONG_DOUBLE_BIT
971Number of bits in a long double float;
972defaults to @code{2 * TARGET_DOUBLE_BIT}.
973#endif
974int carp_target_long_double_bit;
975/* #define TARGET_LONG_DOUBLE_BIT carp_target_long_double_bit */
976
977
978#if 0
979@item TARGET_LONG_LONG_BIT
980Number of bits in a long long integer; defaults to @code{2 * TARGET_LONG_BIT}.
981#endif
982int carp_target_long_long_bit;
983/* #define TARGET_LONG_LONG_BIT carp_target_long_long_bit */
984
985
986#if 0
987@item TARGET_PTR_BIT
988Number of bits in a pointer; defaults to @code{TARGET_INT_BIT}.
989#endif
990int carp_target_ptr_bit;
991/* #define TARGET_PTR_BIT carp_target_ptr_bit */
992
993
994#if 0
995@item TARGET_SHORT_BIT
996Number of bits in a short integer; defaults to @code{2 * TARGET_CHAR_BIT}.
997#endif
998int carp_target_short_bit;
999/* #define TARGET_SHORT_BIT carp_target_short_bit */
1000
1001
1002#if 0
1003@item TARGET_READ_PC
1004@item TARGET_WRITE_PC (val, pid)
1005@item TARGET_READ_SP
1006@item TARGET_WRITE_SP
1007@item TARGET_READ_FP
1008@item TARGET_WRITE_FP
1009These change the behavior of @code{read_pc}, @code{write_pc},
1010@code{read_sp}, @code{write_sp}, @code{read_fp} and @code{write_fp}.
1011For most targets, these may be left undefined. GDB will call the read
1012and write register functions with the relevant @code{_REGNUM} argument.
1013
1014These macros are useful when a target keeps one of these registers in a
1015hard to get at place; for example, part in a segment register and part
1016in an ordinary register.
1017#endif
1018CORE_ADDR carp_target_read_pc (int pid) { return 0; }
1019CORE_ADDR carp_target_read_sp (void) { return 0; }
1020CORE_ADDR carp_target_read_fp (void) { return 0; }
1021void carp_target_write_pc (CORE_ADDR pc, int pid) { return; }
1022void carp_target_write_sp (CORE_ADDR sp) { return; }
1023void carp_target_write_fp (CORE_ADDR fp) { return; }
1024/* #define TARGET_READ_PC(pid) carp_target_read_pc (pid) */
1025/* #define TARGET_WRITE_PC(val,pid) carp_target_write_pc (val, pid) */
1026/* #define TARGET_READ_SP() carp_target_read_sp () */
1027/* #define TARGET_WRITE_SP(val) carp_target_write_sp (val) */
1028/* #define TARGET_READ_FP() carp_target_read_fp () */
1029/* #define TARGET_WRITE_FP(val) carp_target_write_fp (val) */
1030
1031
1032#if 0
1033@item USE_STRUCT_CONVENTION (gcc_p, type)
1034If defined, this must be an expression that is nonzero if a value of the
1035given @var{type} being returned from a function must have space
1036allocated for it on the stack. @var{gcc_p} is true if the function
1037being considered is known to have been compiled by GCC; this is helpful
1038for systems where GCC is known to use different calling convention than
1039other compilers.
1040#endif
1041
1042
1043#if 0
1044@item VALUE_OF_TRAPPED_INTERNALVAR
1045#endif
1046struct value *carp_value_of_trapped_internalvar (struct internalvar *var) { return 0; }
1047/* #define VALUE_OF_TRAPPED_INTERNALVAR(var) carp_value_of_trapped_internalvar (var) */
1048
1049
1050#if 0
1051@item VARIABLES_INSIDE_BLOCK (desc, gcc_p)
1052For dbx-style debugging information, if the compiler puts variable
1053declarations inside LBRAC/RBRAC blocks, this should be defined to be
1054nonzero. @var{desc} is the value of @code{n_desc} from the
1055@code{N_RBRAC} symbol, and @var{gcc_p} is true if GDB has noticed the
1056presence of either the @code{GCC_COMPILED_SYMBOL} or the
1057@code{GCC2_COMPILED_SYMBOL}. By default, this is 0.
1058#endif
1059
1060
1061#if 0
1062@item OS9K_VARIABLES_INSIDE_BLOCK (desc, gcc_p)
1063Similarly, for OS/9000. Defaults to 1.
1064#endif
This page took 0.059402 seconds and 4 git commands to generate.