]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/value.h
Minor typos.
[thirdparty/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;
104 /* Actual contents of the value. For use of this value; setting
105 it uses the stuff above. Not valid if lazy is nonzero.
106 Target byte-order. We force it to be aligned properly for any
107 possible value. */
108 union {
109 long contents[1];
110 double force_double_align;
30974778 111 LONGEST force_longlong_align;
ff87df19 112 char *literal_data;
bd5635a1
RP
113 } aligner;
114
115 };
116
82a2edfb 117typedef struct value *value_ptr;
bd5635a1
RP
118
119#define VALUE_TYPE(val) (val)->type
120#define VALUE_LAZY(val) (val)->lazy
121/* VALUE_CONTENTS and VALUE_CONTENTS_RAW both return the address of
122 the gdb buffer used to hold a copy of the contents of the lval.
123 VALUE_CONTENTS is used when the contents of the buffer are needed --
124 it uses value_fetch_lazy() to load the buffer from the process being
125 debugged if it hasn't already been loaded. VALUE_CONTENTS_RAW is
126 used when data is being stored into the buffer, or when it is
127 certain that the contents of the buffer are valid. */
128#define VALUE_CONTENTS_RAW(val) ((char *) (val)->aligner.contents)
129#define VALUE_CONTENTS(val) ((void)(VALUE_LAZY(val) && value_fetch_lazy(val)),\
130 VALUE_CONTENTS_RAW(val))
82a2edfb 131extern int value_fetch_lazy PARAMS ((value_ptr val));
01be6913 132
bd5635a1
RP
133#define VALUE_LVAL(val) (val)->lval
134#define VALUE_ADDRESS(val) (val)->location.address
135#define VALUE_INTERNALVAR(val) (val)->location.internalvar
136#define VALUE_FRAME_REGNUM(val) ((val)->location.regnum)
137#define VALUE_FRAME(val) ((val)->frame_addr)
138#define VALUE_OFFSET(val) (val)->offset
139#define VALUE_BITSIZE(val) (val)->bitsize
140#define VALUE_BITPOS(val) (val)->bitpos
141#define VALUE_NEXT(val) (val)->next
bd5635a1
RP
142#define VALUE_REGNO(val) (val)->regno
143#define VALUE_OPTIMIZED_OUT(val) ((val)->optimized_out)
144
145/* Convert a REF to the object referenced. */
146
147#define COERCE_REF(arg) \
b5865bb2
WM
148do { CHECK_TYPEDEF (VALUE_TYPE (arg)); \
149 if (TYPE_CODE (VALUE_TYPE (arg)) == TYPE_CODE_REF) \
150 arg = value_at_lazy (TYPE_TARGET_TYPE (VALUE_TYPE (arg)), \
151 unpack_long (VALUE_TYPE (arg), \
152 VALUE_CONTENTS (arg))); \
153} while (0)
bd5635a1
RP
154
155/* If ARG is an array, convert it to a pointer.
156 If ARG is an enum, convert it to an integer.
157 If ARG is a function, convert it to a function pointer.
158
159 References are dereferenced. */
160
161#define COERCE_ARRAY(arg) \
b5865bb2 162do { COERCE_REF(arg); \
f91a9e05 163 if (current_language->c_style_arrays \
b5865bb2 164 && TYPE_CODE (VALUE_TYPE (arg)) == TYPE_CODE_ARRAY) \
bd5635a1
RP
165 arg = value_coerce_array (arg); \
166 if (TYPE_CODE (VALUE_TYPE (arg)) == TYPE_CODE_FUNC) \
167 arg = value_coerce_function (arg); \
b5865bb2
WM
168} while (0)
169
170#define COERCE_NUMBER(arg) \
171 do { COERCE_ARRAY(arg); COERCE_ENUM(arg); } while (0)
bd5635a1 172
b5865bb2
WM
173#define COERCE_VARYING_ARRAY(arg, real_arg_type) \
174{ if (chill_varying_type (real_arg_type)) \
175 arg = varying_to_slice (arg), real_arg_type = VALUE_TYPE (arg); }
f91a9e05 176
bd5635a1
RP
177/* If ARG is an enum, convert it to an integer. */
178
b5865bb2 179#define COERCE_ENUM(arg) { \
bd5635a1
RP
180 if (TYPE_CODE (VALUE_TYPE (arg)) == TYPE_CODE_ENUM) \
181 arg = value_cast (builtin_type_unsigned_int, arg); \
182}
183
184/* Internal variables (variables for convenience of use of debugger)
185 are recorded as a chain of these structures. */
186
187struct internalvar
188{
189 struct internalvar *next;
190 char *name;
82a2edfb 191 value_ptr value;
bd5635a1 192};
01be6913 193
35fcebce
PB
194/* Pointer to member function. Depends on compiler implementation. */
195
196#define METHOD_PTR_IS_VIRTUAL(ADDR) ((ADDR) & 0x80000000)
197#define METHOD_PTR_FROM_VOFFSET(OFFSET) (0x80000000 + (OFFSET))
198#define METHOD_PTR_TO_VOFFSET(ADDR) (~0x80000000 & (ADDR))
199
bd5635a1
RP
200\f
201#include "symtab.h"
01be6913
PB
202#include "gdbtypes.h"
203#include "expression.h"
204
e17960fb 205#ifdef __STDC__
01be6913 206struct frame_info;
c7da3ed3 207struct fn_field;
e17960fb 208#endif
01be6913
PB
209
210extern void
30974778 211print_address_demangle PARAMS ((CORE_ADDR, GDB_FILE *, int));
01be6913 212
82a2edfb 213extern LONGEST value_as_long PARAMS ((value_ptr val));
01be6913 214
b5865bb2 215extern DOUBLEST value_as_double PARAMS ((value_ptr val));
01be6913 216
82a2edfb 217extern CORE_ADDR value_as_pointer PARAMS ((value_ptr val));
01be6913 218
82a2edfb 219extern LONGEST unpack_long PARAMS ((struct type *type, char *valaddr));
01be6913 220
b5865bb2
WM
221extern DOUBLEST unpack_double PARAMS ((struct type *type, char *valaddr,
222 int *invp));
01be6913 223
5573d7d4 224extern CORE_ADDR unpack_pointer PARAMS ((struct type *type, char *valaddr));
01be6913 225
5573d7d4
JK
226extern LONGEST unpack_field_as_long PARAMS ((struct type *type, char *valaddr,
227 int fieldno));
01be6913 228
82a2edfb 229extern value_ptr value_from_longest PARAMS ((struct type *type, LONGEST num));
01be6913 230
b5865bb2 231extern value_ptr value_from_double PARAMS ((struct type *type, DOUBLEST num));
01be6913 232
82a2edfb 233extern value_ptr value_at PARAMS ((struct type *type, CORE_ADDR addr));
01be6913 234
82a2edfb 235extern value_ptr value_at_lazy PARAMS ((struct type *type, CORE_ADDR addr));
01be6913 236
82a2edfb 237extern value_ptr value_from_register PARAMS ((struct type *type, int regnum,
5573d7d4 238 struct frame_info * frame));
01be6913 239
82a2edfb
JK
240extern value_ptr value_of_variable PARAMS ((struct symbol *var,
241 struct block *b));
01be6913 242
82a2edfb 243extern value_ptr value_of_register PARAMS ((int regnum));
01be6913 244
30974778
JK
245extern int symbol_read_needs_frame PARAMS ((struct symbol *));
246
82a2edfb
JK
247extern value_ptr read_var_value PARAMS ((struct symbol *var,
248 struct frame_info *frame));
01be6913 249
82a2edfb 250extern value_ptr locate_var_value PARAMS ((struct symbol *var,
5573d7d4 251 struct frame_info *frame));
01be6913 252
82a2edfb 253extern value_ptr allocate_value PARAMS ((struct type *type));
01be6913 254
82a2edfb 255extern value_ptr allocate_repeat_value PARAMS ((struct type *type, int count));
01be6913 256
82a2edfb 257extern value_ptr value_mark PARAMS ((void));
01be6913 258
82a2edfb 259extern void value_free_to_mark PARAMS ((value_ptr mark));
01be6913 260
82a2edfb 261extern value_ptr value_string PARAMS ((char *ptr, int len));
6d34c236 262extern value_ptr value_bitstring PARAMS ((char *ptr, int len));
01be6913 263
82a2edfb
JK
264extern value_ptr value_array PARAMS ((int lowbound, int highbound,
265 value_ptr *elemvec));
7efb57c3 266
82a2edfb 267extern value_ptr value_concat PARAMS ((value_ptr arg1, value_ptr arg2));
7efb57c3 268
82a2edfb
JK
269extern value_ptr value_binop PARAMS ((value_ptr arg1, value_ptr arg2,
270 enum exp_opcode op));
01be6913 271
82a2edfb 272extern value_ptr value_add PARAMS ((value_ptr arg1, value_ptr arg2));
01be6913 273
82a2edfb 274extern value_ptr value_sub PARAMS ((value_ptr arg1, value_ptr arg2));
01be6913 275
82a2edfb 276extern value_ptr value_coerce_array PARAMS ((value_ptr arg1));
01be6913 277
82a2edfb 278extern value_ptr value_coerce_function PARAMS ((value_ptr arg1));
01be6913 279
82a2edfb 280extern value_ptr value_ind PARAMS ((value_ptr arg1));
01be6913 281
82a2edfb 282extern value_ptr value_addr PARAMS ((value_ptr arg1));
01be6913 283
82a2edfb 284extern value_ptr value_assign PARAMS ((value_ptr toval, value_ptr fromval));
01be6913 285
82a2edfb 286extern value_ptr value_neg PARAMS ((value_ptr arg1));
01be6913 287
82a2edfb 288extern value_ptr value_complement PARAMS ((value_ptr arg1));
01be6913 289
999dd04b 290extern value_ptr value_struct_elt PARAMS ((value_ptr *argp, value_ptr *args,
82a2edfb
JK
291 char *name,
292 int *static_memfuncp, char *err));
01be6913 293
82a2edfb
JK
294extern value_ptr value_struct_elt_for_reference PARAMS ((struct type *domain,
295 int offset,
296 struct type *curtype,
297 char *name,
298 struct type *intype));
01be6913 299
82a2edfb 300extern value_ptr value_field PARAMS ((value_ptr arg1, int fieldno));
01be6913 301
82a2edfb
JK
302extern value_ptr value_primitive_field PARAMS ((value_ptr arg1, int offset,
303 int fieldno,
304 struct type *arg_type));
01be6913 305
82a2edfb 306extern value_ptr value_cast PARAMS ((struct type *type, value_ptr arg2));
01be6913 307
82a2edfb 308extern value_ptr value_zero PARAMS ((struct type *type, enum lval_type lv));
01be6913 309
82a2edfb 310extern value_ptr value_repeat PARAMS ((value_ptr arg1, int count));
01be6913 311
82a2edfb 312extern value_ptr value_subscript PARAMS ((value_ptr array, value_ptr idx));
01be6913 313
82a2edfb
JK
314extern value_ptr value_from_vtable_info PARAMS ((value_ptr arg,
315 struct type *type));
01be6913 316
82a2edfb
JK
317extern value_ptr value_being_returned PARAMS ((struct type *valtype,
318 char retbuf[REGISTER_BYTES],
319 int struct_return));
01be6913 320
82a2edfb 321extern value_ptr value_in PARAMS ((value_ptr element, value_ptr set));
30974778
JK
322
323extern int value_bit_index PARAMS ((struct type *type, char *addr, int index));
324
82a2edfb
JK
325extern int using_struct_return PARAMS ((value_ptr function, CORE_ADDR funcaddr,
326 struct type *value_type, int gcc_p));
01be6913 327
82a2edfb 328extern void set_return_value PARAMS ((value_ptr val));
01be6913 329
82a2edfb 330extern value_ptr evaluate_expression PARAMS ((struct expression *exp));
01be6913 331
82a2edfb 332extern value_ptr evaluate_type PARAMS ((struct expression *exp));
01be6913 333
b5865bb2
WM
334extern value_ptr evaluate_subexp_with_coercion PARAMS ((struct expression *,
335 int *, enum noside));
336
82a2edfb 337extern value_ptr parse_and_eval PARAMS ((char *exp));
01be6913 338
82a2edfb 339extern value_ptr parse_to_comma_and_eval PARAMS ((char **expp));
01be6913 340
82a2edfb 341extern struct type *parse_and_eval_type PARAMS ((char *p, int length));
01be6913 342
82a2edfb 343extern CORE_ADDR parse_and_eval_address PARAMS ((char *exp));
01be6913 344
82a2edfb 345extern CORE_ADDR parse_and_eval_address_1 PARAMS ((char **expptr));
01be6913 346
82a2edfb 347extern value_ptr access_value_history PARAMS ((int num));
01be6913 348
82a2edfb 349extern value_ptr value_of_internalvar PARAMS ((struct internalvar *var));
01be6913 350
82a2edfb 351extern void set_internalvar PARAMS ((struct internalvar *var, value_ptr val));
01be6913 352
82a2edfb
JK
353extern void set_internalvar_component PARAMS ((struct internalvar *var,
354 int offset,
355 int bitpos, int bitsize,
356 value_ptr newvalue));
01be6913 357
82a2edfb 358extern struct internalvar *lookup_internalvar PARAMS ((char *name));
01be6913 359
82a2edfb 360extern int value_equal PARAMS ((value_ptr arg1, value_ptr arg2));
01be6913 361
82a2edfb 362extern int value_less PARAMS ((value_ptr arg1, value_ptr arg2));
01be6913 363
82a2edfb 364extern int value_logical_not PARAMS ((value_ptr arg1));
bd5635a1
RP
365
366/* C++ */
01be6913 367
82a2edfb 368extern value_ptr value_of_this PARAMS ((int complain));
01be6913 369
82a2edfb
JK
370extern value_ptr value_x_binop PARAMS ((value_ptr arg1, value_ptr arg2,
371 enum exp_opcode op,
b5865bb2
WM
372 enum exp_opcode otherop,
373 enum noside noside));
01be6913 374
b5865bb2
WM
375extern value_ptr value_x_unop PARAMS ((value_ptr arg1, enum exp_opcode op,
376 enum noside noside));
01be6913 377
82a2edfb
JK
378extern value_ptr value_fn_field PARAMS ((value_ptr *arg1p, struct fn_field *f,
379 int j,
380 struct type* type, int offset));
01be6913 381
82a2edfb
JK
382extern value_ptr value_virtual_fn_field PARAMS ((value_ptr *arg1p,
383 struct fn_field *f, int j,
384 struct type *type,
385 int offset));
01be6913 386
82a2edfb
JK
387extern int binop_user_defined_p PARAMS ((enum exp_opcode op,
388 value_ptr arg1, value_ptr arg2));
01be6913 389
82a2edfb 390extern int unop_user_defined_p PARAMS ((enum exp_opcode op, value_ptr arg1));
01be6913 391
82a2edfb
JK
392extern int destructor_name_p PARAMS ((const char *name,
393 const struct type *type));
bd5635a1 394
35fcebce 395#define value_free(val) free ((PTR)val)
01be6913 396
82a2edfb 397extern void free_all_values PARAMS ((void));
01be6913 398
82a2edfb 399extern void release_value PARAMS ((value_ptr val));
01be6913 400
82a2edfb 401extern int record_latest_value PARAMS ((value_ptr val));
01be6913 402
82a2edfb 403extern void registers_changed PARAMS ((void));
01be6913 404
82a2edfb 405extern void read_register_bytes PARAMS ((int regbyte, char *myaddr, int len));
01be6913 406
82a2edfb 407extern void write_register_bytes PARAMS ((int regbyte, char *myaddr, int len));
01be6913
PB
408
409extern void
410read_register_gen PARAMS ((int regno, char *myaddr));
411
412extern CORE_ADDR
413read_register PARAMS ((int regno));
414
415extern void
30974778 416write_register PARAMS ((int regno, LONGEST val));
01be6913
PB
417
418extern void
419supply_register PARAMS ((int regno, char *val));
420
01be6913
PB
421extern void
422get_saved_register PARAMS ((char *raw_buffer, int *optimized,
423 CORE_ADDR *addrp, struct frame_info *frame,
424 int regnum, enum lval_type *lval));
425
426extern void
5573d7d4 427modify_field PARAMS ((char *addr, LONGEST fieldval, int bitpos, int bitsize));
01be6913
PB
428
429extern void
30974778 430type_print PARAMS ((struct type *type, char *varstring, GDB_FILE *stream,
01be6913
PB
431 int show));
432
82a2edfb
JK
433extern char *baseclass_addr PARAMS ((struct type *type, int index,
434 char *valaddr,
435 value_ptr *valuep, int *errp));
01be6913 436
7efb57c3 437extern void
30974778
JK
438print_longest PARAMS ((GDB_FILE *stream, int format, int use_local,
439 LONGEST val));
7efb57c3 440
01be6913 441extern void
30974778 442print_floating PARAMS ((char *valaddr, struct type *type, GDB_FILE *stream));
01be6913 443
82a2edfb
JK
444extern int value_print PARAMS ((value_ptr val, GDB_FILE *stream, int format,
445 enum val_prettyprint pretty));
01be6913 446
a91a6192
SS
447extern void
448value_print_array_elements PARAMS ((value_ptr val, GDB_FILE* stream,
449 int format, enum val_prettyprint pretty));
450
999dd04b
JL
451extern value_ptr
452value_release_to_mark PARAMS ((value_ptr mark));
453
01be6913
PB
454extern int
455val_print PARAMS ((struct type *type, char *valaddr, CORE_ADDR address,
30974778 456 GDB_FILE *stream, int format, int deref_ref,
01be6913
PB
457 int recurse, enum val_prettyprint pretty));
458
c7da3ed3 459extern int
30974778 460val_print_string PARAMS ((CORE_ADDR addr, unsigned int len, GDB_FILE *stream));
c7da3ed3 461
01be6913
PB
462extern void
463print_variable_value PARAMS ((struct symbol *var, struct frame_info *frame,
30974778 464 GDB_FILE *stream));
01be6913 465
82a2edfb 466extern int check_field PARAMS ((value_ptr, const char *));
01be6913
PB
467
468extern void
6d34c236 469c_typedef_print PARAMS ((struct type *type, struct symbol *news, GDB_FILE *stream));
01be6913
PB
470
471extern char *
472internalvar_name PARAMS ((struct internalvar *var));
473
474extern void
475clear_value_history PARAMS ((void));
476
477extern void
478clear_internalvars PARAMS ((void));
479
480/* From values.c */
481
82a2edfb 482extern value_ptr value_copy PARAMS ((value_ptr));
01be6913 483
b5865bb2 484extern int baseclass_offset PARAMS ((struct type *, int, char *, CORE_ADDR));
c7da3ed3 485
01be6913 486/* From valops.c */
bd5635a1 487
f91a9e05
PB
488extern value_ptr varying_to_slice PARAMS ((value_ptr));
489
490extern value_ptr value_slice PARAMS ((value_ptr, int, int));
491
82a2edfb 492extern value_ptr call_function_by_hand PARAMS ((value_ptr, int, value_ptr *));
e17960fb 493
5222ca60 494extern value_ptr value_literal_complex PARAMS ((value_ptr, value_ptr, struct type*));
a91a6192 495
b5865bb2
WM
496extern value_ptr find_function_in_inferior PARAMS ((char *));
497
498extern value_ptr value_allocate_space_in_inferior PARAMS ((int));
499
01be6913 500#endif /* !defined (VALUE_H) */