import gdb-1999-12-06 snapshot
[deliverable/binutils-gdb.git] / gdb / value.h
CommitLineData
c906108c
SS
1/* Definitions for values of C expressions, for GDB.
2 Copyright 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996
3 Free Software Foundation, Inc.
4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b
JM
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
c906108c
SS
21
22#if !defined (VALUE_H)
23#define VALUE_H 1
24
25/*
26 * The structure which defines the type of a value. It should never
27 * be possible for a program lval value to survive over a call to the inferior
28 * (ie to be put into the history list or an internal variable).
29 */
c906108c
SS
30
31struct value
32 {
33 /* Type of value; either not an lval, or one of the various
34 different possible kinds of lval. */
35 enum lval_type lval;
36 /* Is it modifiable? Only relevant if lval != not_lval. */
37 int modifiable;
38 /* Location of value (if lval). */
39 union
40 {
c2d11a7d
JM
41 /* If lval == lval_memory, this is the address in the inferior.
42 If lval == lval_register, this is the byte offset into the
43 registers structure. */
c906108c
SS
44 CORE_ADDR address;
45 /* Pointer to internal variable. */
46 struct internalvar *internalvar;
47 /* Number of register. Only used with
48 lval_reg_frame_relative. */
49 int regnum;
c5aa993b
JM
50 }
51 location;
c906108c 52 /* Describes offset of a value within lval of a structure in bytes.
c2d11a7d
JM
53 If lval == lval_memory, this is an offset to the address.
54 If lval == lval_register, this is a further offset from
55 location.address within the registers structure.
56 Note also the member embedded_offset below. */
c5aa993b 57 int offset;
c906108c
SS
58 /* Only used for bitfields; number of bits contained in them. */
59 int bitsize;
60 /* Only used for bitfields; position of start of field.
61 For BITS_BIG_ENDIAN=0 targets, it is the position of the LSB.
62 For BITS_BIG_ENDIAN=1 targets, it is the position of the MSB. */
63 int bitpos;
64 /* Frame value is relative to. In practice, this address is only
65 used if the value is stored in several registers in other than
66 the current frame, and these registers have not all been saved
67 at the same place in memory. This will be described in the
68 lval enum above as "lval_reg_frame_relative". */
69 CORE_ADDR frame_addr;
70 /* Type of the value. */
71 struct type *type;
72 /* Type of the enclosing object if this is an embedded subobject.
73 The member embedded_offset gives the real position of the subobject
74 if type is not the same as enclosing_type.
75
76 If the type field is a pointer type, then enclosing_type is
77 a pointer type pointing to the real (enclosing) type of the target
78 object. */
79 struct type *enclosing_type;
80 /* Values are stored in a chain, so that they can be deleted
81 easily over calls to the inferior. Values assigned to internal
82 variables or put into the value history are taken off this
83 list. */
84 struct value *next;
85
86 /* ??? When is this used? */
c5aa993b
JM
87 union
88 {
89 CORE_ADDR memaddr;
90 char *myaddr;
91 }
92 substring_addr;
c906108c
SS
93
94 /* Register number if the value is from a register. Is not kept
95 if you take a field of a structure that is stored in a
96 register. Shouldn't it be? */
97 short regno;
98 /* If zero, contents of this value are in the contents field.
99 If nonzero, contents are in inferior memory at address
100 in the location.address field plus the offset field
101 (and the lval field should be lval_memory). */
102 char lazy;
103 /* If nonzero, this is the value of a variable which does not
104 actually exist in the program. */
105 char optimized_out;
106 /* If this value represents an object that is embedded inside a
107 larger object (e.g., a base subobject in C++), this gives the
108 offset (in bytes) from the start of the contents buffer where
109 the embedded object begins. This is required because some C++
110 runtime implementations lay out objects (especially virtual bases
111 with possibly negative offsets to ancestors).
112 Note: This may be positive or negative! Also note that this offset
113 is not used when retrieving contents from target memory; the entire
114 enclosing object has to be retrieved always, and the offset for
115 that is given by the member offset above. */
116 int embedded_offset;
117 /* If this value represents a pointer to an object that is embedded
118 in another object, this gives the embedded_offset of the object
119 that is pointed to. */
120 int pointed_to_offset;
121 /* The BFD section associated with this value. */
122 asection *bfd_section;
123 /* Actual contents of the value. For use of this value; setting
124 it uses the stuff above. Not valid if lazy is nonzero.
125 Target byte-order. We force it to be aligned properly for any
126 possible value. Note that a value therefore extends beyond
127 what is declared here. */
c5aa993b
JM
128 union
129 {
130 long contents[1];
131 double force_double_align;
132 LONGEST force_longlong_align;
133 char *literal_data;
134 }
135 aligner;
c906108c
SS
136 /* Do not add any new members here -- contents above will trash them */
137 };
138
139typedef struct value *value_ptr;
140
141#define VALUE_TYPE(val) (val)->type
142#define VALUE_ENCLOSING_TYPE(val) (val)->enclosing_type
143#define VALUE_LAZY(val) (val)->lazy
144/* VALUE_CONTENTS and VALUE_CONTENTS_RAW both return the address of
145 the gdb buffer used to hold a copy of the contents of the lval.
146 VALUE_CONTENTS is used when the contents of the buffer are needed --
147 it uses value_fetch_lazy() to load the buffer from the process being
148 debugged if it hasn't already been loaded. VALUE_CONTENTS_RAW is
149 used when data is being stored into the buffer, or when it is
150 certain that the contents of the buffer are valid.
151 Note: The contents pointer is adjusted by the offset required to
152 get to the real subobject, if the value happens to represent
153 something embedded in a larger run-time object. */
154
155#define VALUE_CONTENTS_RAW(val) ((char *) (val)->aligner.contents + (val)->embedded_offset)
156#define VALUE_CONTENTS(val) ((void)(VALUE_LAZY(val) && value_fetch_lazy(val)),\
157 VALUE_CONTENTS_RAW(val))
158
159/* The ALL variants of the above two macros do not adjust the returned
160 pointer by the embedded_offset value. */
c5aa993b 161
c906108c
SS
162#define VALUE_CONTENTS_ALL_RAW(val) ((char *) (val)->aligner.contents)
163#define VALUE_CONTENTS_ALL(val) ((void) (VALUE_LAZY(val) && value_fetch_lazy(val)),\
164 VALUE_CONTENTS_ALL_RAW(val))
c5aa993b
JM
165
166
c906108c
SS
167extern int value_fetch_lazy PARAMS ((value_ptr val));
168
169#define VALUE_LVAL(val) (val)->lval
170#define VALUE_ADDRESS(val) (val)->location.address
171#define VALUE_INTERNALVAR(val) (val)->location.internalvar
172#define VALUE_FRAME_REGNUM(val) ((val)->location.regnum)
173#define VALUE_FRAME(val) ((val)->frame_addr)
174#define VALUE_OFFSET(val) (val)->offset
175#define VALUE_BITSIZE(val) (val)->bitsize
176#define VALUE_BITPOS(val) (val)->bitpos
177#define VALUE_NEXT(val) (val)->next
178#define VALUE_REGNO(val) (val)->regno
179#define VALUE_OPTIMIZED_OUT(val) ((val)->optimized_out)
180#define VALUE_EMBEDDED_OFFSET(val) ((val)->embedded_offset)
181#define VALUE_POINTED_TO_OFFSET(val) ((val)->pointed_to_offset)
182#define VALUE_BFD_SECTION(val) ((val)->bfd_section)
183
184/* Convert a REF to the object referenced. */
185
186#define COERCE_REF(arg) \
187do { struct type *value_type_arg_tmp = check_typedef (VALUE_TYPE (arg));\
188 if (TYPE_CODE (value_type_arg_tmp) == TYPE_CODE_REF) \
189 arg = value_at_lazy (TYPE_TARGET_TYPE (value_type_arg_tmp), \
190 unpack_long (VALUE_TYPE (arg), \
191 VALUE_CONTENTS (arg)), \
192 VALUE_BFD_SECTION (arg)); \
193 } while (0)
194
195/* If ARG is an array, convert it to a pointer.
196 If ARG is an enum, convert it to an integer.
197 If ARG is a function, convert it to a function pointer.
198
199 References are dereferenced. */
200
201#define COERCE_ARRAY(arg) \
202do { COERCE_REF(arg); \
203 if (current_language->c_style_arrays \
204 && TYPE_CODE (VALUE_TYPE (arg)) == TYPE_CODE_ARRAY) \
205 arg = value_coerce_array (arg); \
206 if (TYPE_CODE (VALUE_TYPE (arg)) == TYPE_CODE_FUNC) \
207 arg = value_coerce_function (arg); \
208} while (0)
209
210#define COERCE_NUMBER(arg) \
211 do { COERCE_ARRAY(arg); COERCE_ENUM(arg); } while (0)
212
213#define COERCE_VARYING_ARRAY(arg, real_arg_type) \
214{ if (chill_varying_type (real_arg_type)) \
215 arg = varying_to_slice (arg), real_arg_type = VALUE_TYPE (arg); }
216
217/* If ARG is an enum, convert it to an integer. */
218
219#define COERCE_ENUM(arg) { \
220 if (TYPE_CODE (check_typedef (VALUE_TYPE (arg))) == TYPE_CODE_ENUM) \
221 arg = value_cast (builtin_type_unsigned_int, arg); \
222}
223
224/* Internal variables (variables for convenience of use of debugger)
225 are recorded as a chain of these structures. */
226
227struct internalvar
c5aa993b
JM
228 {
229 struct internalvar *next;
230 char *name;
231 value_ptr value;
232 };
c906108c
SS
233
234/* Pointer to member function. Depends on compiler implementation. */
235
236#define METHOD_PTR_IS_VIRTUAL(ADDR) ((ADDR) & 0x80000000)
237#define METHOD_PTR_FROM_VOFFSET(OFFSET) (0x80000000 + (OFFSET))
238#define METHOD_PTR_TO_VOFFSET(ADDR) (~0x80000000 & (ADDR))
c906108c 239\f
c5aa993b 240
c906108c
SS
241#include "symtab.h"
242#include "gdbtypes.h"
243#include "expression.h"
244
c906108c
SS
245struct frame_info;
246struct fn_field;
c906108c
SS
247
248extern void
249print_address_demangle PARAMS ((CORE_ADDR, GDB_FILE *, int));
250
251extern LONGEST value_as_long PARAMS ((value_ptr val));
252
253extern DOUBLEST value_as_double PARAMS ((value_ptr val));
254
255extern CORE_ADDR value_as_pointer PARAMS ((value_ptr val));
256
c5aa993b 257extern LONGEST unpack_long PARAMS ((struct type * type, char *valaddr));
c906108c 258
c5aa993b 259extern DOUBLEST unpack_double PARAMS ((struct type * type, char *valaddr,
c906108c
SS
260 int *invp));
261
c5aa993b 262extern CORE_ADDR unpack_pointer PARAMS ((struct type * type, char *valaddr));
c906108c 263
c5aa993b 264extern LONGEST unpack_field_as_long PARAMS ((struct type * type, char *valaddr,
c906108c
SS
265 int fieldno));
266
c5aa993b 267extern value_ptr value_from_longest PARAMS ((struct type * type, LONGEST num));
c906108c 268
c5aa993b 269extern value_ptr value_from_double PARAMS ((struct type * type, DOUBLEST num));
c906108c 270
0f71a2f6
JM
271extern value_ptr value_from_string PARAMS ((char *string));
272
c5aa993b 273extern value_ptr value_at PARAMS ((struct type * type, CORE_ADDR addr, asection * sect));
c906108c 274
c5aa993b 275extern value_ptr value_at_lazy PARAMS ((struct type * type, CORE_ADDR addr, asection * sect));
c906108c 276
c5aa993b
JM
277extern value_ptr value_from_register PARAMS ((struct type * type, int regnum,
278 struct frame_info * frame));
c906108c 279
c5aa993b
JM
280extern value_ptr value_of_variable PARAMS ((struct symbol * var,
281 struct block * b));
c906108c
SS
282
283extern value_ptr value_of_register PARAMS ((int regnum));
284
285extern int symbol_read_needs_frame PARAMS ((struct symbol *));
286
c5aa993b
JM
287extern value_ptr read_var_value PARAMS ((struct symbol * var,
288 struct frame_info * frame));
c906108c 289
c5aa993b
JM
290extern value_ptr locate_var_value PARAMS ((struct symbol * var,
291 struct frame_info * frame));
c906108c 292
c5aa993b 293extern value_ptr allocate_value PARAMS ((struct type * type));
c906108c 294
c5aa993b 295extern value_ptr allocate_repeat_value PARAMS ((struct type * type, int count));
c906108c
SS
296
297extern value_ptr value_mark PARAMS ((void));
298
299extern void value_free_to_mark PARAMS ((value_ptr mark));
300
301extern value_ptr value_string PARAMS ((char *ptr, int len));
302extern value_ptr value_bitstring PARAMS ((char *ptr, int len));
303
304extern value_ptr value_array PARAMS ((int lowbound, int highbound,
c5aa993b 305 value_ptr * elemvec));
c906108c
SS
306
307extern value_ptr value_concat PARAMS ((value_ptr arg1, value_ptr arg2));
308
309extern value_ptr value_binop PARAMS ((value_ptr arg1, value_ptr arg2,
310 enum exp_opcode op));
311
312extern value_ptr value_add PARAMS ((value_ptr arg1, value_ptr arg2));
313
314extern value_ptr value_sub PARAMS ((value_ptr arg1, value_ptr arg2));
315
316extern value_ptr value_coerce_array PARAMS ((value_ptr arg1));
317
318extern value_ptr value_coerce_function PARAMS ((value_ptr arg1));
319
320extern value_ptr value_ind PARAMS ((value_ptr arg1));
321
322extern value_ptr value_addr PARAMS ((value_ptr arg1));
323
324extern value_ptr value_assign PARAMS ((value_ptr toval, value_ptr fromval));
325
326extern value_ptr value_neg PARAMS ((value_ptr arg1));
327
328extern value_ptr value_complement PARAMS ((value_ptr arg1));
329
c5aa993b 330extern value_ptr value_struct_elt PARAMS ((value_ptr * argp, value_ptr * args,
c906108c
SS
331 char *name,
332 int *static_memfuncp, char *err));
333
c5aa993b 334extern value_ptr value_struct_elt_for_reference PARAMS ((struct type * domain,
c906108c 335 int offset,
c5aa993b 336 struct type * curtype,
c906108c 337 char *name,
c5aa993b 338 struct type * intype));
c906108c 339
c5aa993b 340extern value_ptr value_static_field PARAMS ((struct type * type, int fieldno));
c906108c 341
7a292a7a
SS
342extern struct fn_field *value_find_oload_method_list PARAMS ((value_ptr *, char *, int, int *, int *, struct type **, int *));
343
c5aa993b 344extern int find_overload_match PARAMS ((struct type ** arg_types, int nargs, char *name, int method, int lax, value_ptr obj, struct symbol * fsym, value_ptr * valp, struct symbol ** symp, int *staticp));
c906108c
SS
345
346extern value_ptr value_field PARAMS ((value_ptr arg1, int fieldno));
347
348extern value_ptr value_primitive_field PARAMS ((value_ptr arg1, int offset,
349 int fieldno,
c5aa993b 350 struct type * arg_type));
c906108c
SS
351
352extern struct type *
c5aa993b 353 value_rtti_type PARAMS ((value_ptr, int *, int *, int *));
c906108c
SS
354
355extern struct type *
c5aa993b 356 value_rtti_target_type PARAMS ((value_ptr, int *, int *, int *));
c906108c
SS
357
358extern value_ptr
c5aa993b 359 value_full_object PARAMS ((value_ptr, struct type *, int, int, int));
c906108c 360
c5aa993b 361extern value_ptr value_cast PARAMS ((struct type * type, value_ptr arg2));
c906108c 362
c5aa993b 363extern value_ptr value_zero PARAMS ((struct type * type, enum lval_type lv));
c906108c
SS
364
365extern value_ptr value_repeat PARAMS ((value_ptr arg1, int count));
366
367extern value_ptr value_subscript PARAMS ((value_ptr array, value_ptr idx));
368
369extern value_ptr value_from_vtable_info PARAMS ((value_ptr arg,
c5aa993b 370 struct type * type));
c906108c 371
c5aa993b 372extern value_ptr value_being_returned PARAMS ((struct type * valtype,
7a292a7a 373 char *retbuf,
c906108c
SS
374 int struct_return));
375
376extern value_ptr value_in PARAMS ((value_ptr element, value_ptr set));
377
c5aa993b 378extern int value_bit_index PARAMS ((struct type * type, char *addr, int index));
c906108c
SS
379
380extern int using_struct_return PARAMS ((value_ptr function, CORE_ADDR funcaddr,
c5aa993b 381 struct type * value_type, int gcc_p));
c906108c
SS
382
383extern void set_return_value PARAMS ((value_ptr val));
384
c5aa993b 385extern value_ptr evaluate_expression PARAMS ((struct expression * exp));
c906108c 386
c5aa993b 387extern value_ptr evaluate_type PARAMS ((struct expression * exp));
c906108c
SS
388
389extern value_ptr evaluate_subexp_with_coercion PARAMS ((struct expression *,
390 int *, enum noside));
391
392extern value_ptr parse_and_eval PARAMS ((char *exp));
393
394extern value_ptr parse_to_comma_and_eval PARAMS ((char **expp));
395
396extern struct type *parse_and_eval_type PARAMS ((char *p, int length));
397
398extern CORE_ADDR parse_and_eval_address PARAMS ((char *exp));
399
400extern CORE_ADDR parse_and_eval_address_1 PARAMS ((char **expptr));
401
402extern value_ptr access_value_history PARAMS ((int num));
403
c5aa993b 404extern value_ptr value_of_internalvar PARAMS ((struct internalvar * var));
c906108c 405
c5aa993b 406extern void set_internalvar PARAMS ((struct internalvar * var, value_ptr val));
c906108c 407
c5aa993b 408extern void set_internalvar_component PARAMS ((struct internalvar * var,
c906108c
SS
409 int offset,
410 int bitpos, int bitsize,
411 value_ptr newvalue));
412
413extern struct internalvar *lookup_internalvar PARAMS ((char *name));
414
415extern int value_equal PARAMS ((value_ptr arg1, value_ptr arg2));
416
417extern int value_less PARAMS ((value_ptr arg1, value_ptr arg2));
418
419extern int value_logical_not PARAMS ((value_ptr arg1));
420
421/* C++ */
422
423extern value_ptr value_of_this PARAMS ((int complain));
424
425extern value_ptr value_x_binop PARAMS ((value_ptr arg1, value_ptr arg2,
426 enum exp_opcode op,
427 enum exp_opcode otherop,
428 enum noside noside));
429
430extern value_ptr value_x_unop PARAMS ((value_ptr arg1, enum exp_opcode op,
431 enum noside noside));
432
c5aa993b 433extern value_ptr value_fn_field PARAMS ((value_ptr * arg1p, struct fn_field * f,
c906108c 434 int j,
c5aa993b 435 struct type * type, int offset));
c906108c 436
c5aa993b
JM
437extern value_ptr value_virtual_fn_field PARAMS ((value_ptr * arg1p,
438 struct fn_field * f, int j,
439 struct type * type,
c906108c
SS
440 int offset));
441
442extern int binop_user_defined_p PARAMS ((enum exp_opcode op,
443 value_ptr arg1, value_ptr arg2));
444
445extern int unop_user_defined_p PARAMS ((enum exp_opcode op, value_ptr arg1));
446
447extern int destructor_name_p PARAMS ((const char *name,
c5aa993b 448 const struct type * type));
c906108c
SS
449
450#define value_free(val) free ((PTR)val)
451
452extern void free_all_values PARAMS ((void));
453
454extern void release_value PARAMS ((value_ptr val));
455
456extern int record_latest_value PARAMS ((value_ptr val));
457
458extern void registers_changed PARAMS ((void));
459
460extern void read_register_bytes PARAMS ((int regbyte, char *myaddr, int len));
461
462extern void write_register_bytes PARAMS ((int regbyte, char *myaddr, int len));
463
464extern void
465read_register_gen PARAMS ((int regno, char *myaddr));
466
467extern CORE_ADDR
c5aa993b 468 read_register PARAMS ((int regno));
c906108c
SS
469
470extern CORE_ADDR
c5aa993b 471 read_register_pid PARAMS ((int regno, int pid));
c906108c
SS
472
473extern void
474write_register PARAMS ((int regno, LONGEST val));
475
476extern void
477write_register_pid PARAMS ((int regno, CORE_ADDR val, int pid));
478
479extern void
480supply_register PARAMS ((int regno, char *val));
481
7a292a7a 482extern void get_saved_register PARAMS ((char *raw_buffer, int *optimized,
c5aa993b
JM
483 CORE_ADDR * addrp,
484 struct frame_info * frame,
485 int regnum, enum lval_type * lval));
c906108c
SS
486
487extern void
488modify_field PARAMS ((char *addr, LONGEST fieldval, int bitpos, int bitsize));
489
490extern void
c5aa993b 491type_print PARAMS ((struct type * type, char *varstring, GDB_FILE * stream,
c906108c
SS
492 int show));
493
c5aa993b 494extern char *baseclass_addr PARAMS ((struct type * type, int index,
c906108c 495 char *valaddr,
c5aa993b 496 value_ptr * valuep, int *errp));
c906108c
SS
497
498extern void
c5aa993b 499print_longest PARAMS ((GDB_FILE * stream, int format, int use_local,
c906108c
SS
500 LONGEST val));
501
502extern void
c5aa993b 503print_floating PARAMS ((char *valaddr, struct type * type, GDB_FILE * stream));
c906108c 504
c5aa993b 505extern int value_print PARAMS ((value_ptr val, GDB_FILE * stream, int format,
c906108c
SS
506 enum val_prettyprint pretty));
507
508extern void
c5aa993b
JM
509value_print_array_elements PARAMS ((value_ptr val, GDB_FILE * stream,
510 int format, enum val_prettyprint pretty));
c906108c
SS
511
512extern value_ptr
c5aa993b 513 value_release_to_mark PARAMS ((value_ptr mark));
c906108c
SS
514
515extern int
c5aa993b
JM
516val_print PARAMS ((struct type * type, char *valaddr, int embedded_offset, CORE_ADDR address,
517 GDB_FILE * stream, int format, int deref_ref,
c906108c
SS
518 int recurse, enum val_prettyprint pretty));
519
520extern int
c5aa993b 521val_print_string PARAMS ((CORE_ADDR addr, int len, int width, GDB_FILE * stream));
c906108c
SS
522
523extern void
c5aa993b
JM
524print_variable_value PARAMS ((struct symbol * var, struct frame_info * frame,
525 GDB_FILE * stream));
c906108c
SS
526
527extern int check_field PARAMS ((value_ptr, const char *));
528
529extern void
c5aa993b 530c_typedef_print PARAMS ((struct type * type, struct symbol * news, GDB_FILE * stream));
c906108c
SS
531
532extern char *
c5aa993b 533 internalvar_name PARAMS ((struct internalvar * var));
c906108c
SS
534
535extern void
536clear_value_history PARAMS ((void));
537
538extern void
539clear_internalvars PARAMS ((void));
540
541/* From values.c */
542
543extern value_ptr value_copy PARAMS ((value_ptr));
544
545extern int baseclass_offset PARAMS ((struct type *, int, char *, CORE_ADDR));
546
547/* From valops.c */
548
549extern value_ptr varying_to_slice PARAMS ((value_ptr));
550
551extern value_ptr value_slice PARAMS ((value_ptr, int, int));
552
553extern value_ptr call_function_by_hand PARAMS ((value_ptr, int, value_ptr *));
554
c5aa993b 555extern value_ptr value_literal_complex PARAMS ((value_ptr, value_ptr, struct type *));
c906108c
SS
556
557extern void find_rt_vbase_offset PARAMS ((struct type *, struct type *, char *, int, int *, int *));
558
559extern value_ptr find_function_in_inferior PARAMS ((char *));
560
561extern value_ptr value_allocate_space_in_inferior PARAMS ((int));
562
c5aa993b 563extern CORE_ADDR default_push_arguments PARAMS ((int nargs, value_ptr * args,
392a587b 564 CORE_ADDR sp,
ac9a91a7 565 int struct_return,
392a587b
JM
566 CORE_ADDR struct_addr));
567
c5aa993b 568#endif /* !defined (VALUE_H) */
This page took 0.059502 seconds and 4 git commands to generate.