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