Create new file regcache.h. Update all uses.
[deliverable/binutils-gdb.git] / gdb / value.h
CommitLineData
c906108c 1/* Definitions for values of C expressions, for GDB.
338d7c5c
JM
2 Copyright 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 2000, 2001
3 Free Software Foundation, Inc.
c906108c 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
d7491b3f
EZ
101 (and the lval field should be lval_memory).
102
103 WARNING: This field is used by the code which handles
104 watchpoints (see breakpoint.c) to decide whether a particular
105 value can be watched by hardware watchpoints. If the lazy flag
106 is set for some member of a value chain, it is assumed that
107 this member of the chain doesn't need to be watched as part of
108 watching the value itself. This is how GDB avoids watching the
109 entire struct or array when the user wants to watch a single
110 struct member or array element. If you ever change the way
111 lazy flag is set and reset, be sure to consider this use as
112 well! */
c906108c
SS
113 char lazy;
114 /* If nonzero, this is the value of a variable which does not
115 actually exist in the program. */
116 char optimized_out;
117 /* If this value represents an object that is embedded inside a
118 larger object (e.g., a base subobject in C++), this gives the
119 offset (in bytes) from the start of the contents buffer where
120 the embedded object begins. This is required because some C++
121 runtime implementations lay out objects (especially virtual bases
122 with possibly negative offsets to ancestors).
123 Note: This may be positive or negative! Also note that this offset
124 is not used when retrieving contents from target memory; the entire
125 enclosing object has to be retrieved always, and the offset for
126 that is given by the member offset above. */
127 int embedded_offset;
128 /* If this value represents a pointer to an object that is embedded
129 in another object, this gives the embedded_offset of the object
130 that is pointed to. */
131 int pointed_to_offset;
132 /* The BFD section associated with this value. */
133 asection *bfd_section;
134 /* Actual contents of the value. For use of this value; setting
135 it uses the stuff above. Not valid if lazy is nonzero.
136 Target byte-order. We force it to be aligned properly for any
137 possible value. Note that a value therefore extends beyond
138 what is declared here. */
c5aa993b
JM
139 union
140 {
141 long contents[1];
142 double force_double_align;
143 LONGEST force_longlong_align;
144 char *literal_data;
145 }
146 aligner;
c906108c
SS
147 /* Do not add any new members here -- contents above will trash them */
148 };
149
150typedef struct value *value_ptr;
151
152#define VALUE_TYPE(val) (val)->type
153#define VALUE_ENCLOSING_TYPE(val) (val)->enclosing_type
154#define VALUE_LAZY(val) (val)->lazy
155/* VALUE_CONTENTS and VALUE_CONTENTS_RAW both return the address of
156 the gdb buffer used to hold a copy of the contents of the lval.
157 VALUE_CONTENTS is used when the contents of the buffer are needed --
158 it uses value_fetch_lazy() to load the buffer from the process being
159 debugged if it hasn't already been loaded. VALUE_CONTENTS_RAW is
160 used when data is being stored into the buffer, or when it is
161 certain that the contents of the buffer are valid.
162 Note: The contents pointer is adjusted by the offset required to
163 get to the real subobject, if the value happens to represent
164 something embedded in a larger run-time object. */
165
166#define VALUE_CONTENTS_RAW(val) ((char *) (val)->aligner.contents + (val)->embedded_offset)
167#define VALUE_CONTENTS(val) ((void)(VALUE_LAZY(val) && value_fetch_lazy(val)),\
168 VALUE_CONTENTS_RAW(val))
169
170/* The ALL variants of the above two macros do not adjust the returned
171 pointer by the embedded_offset value. */
c5aa993b 172
c906108c
SS
173#define VALUE_CONTENTS_ALL_RAW(val) ((char *) (val)->aligner.contents)
174#define VALUE_CONTENTS_ALL(val) ((void) (VALUE_LAZY(val) && value_fetch_lazy(val)),\
175 VALUE_CONTENTS_ALL_RAW(val))
c5aa993b
JM
176
177
a14ed312 178extern int value_fetch_lazy (value_ptr val);
c906108c
SS
179
180#define VALUE_LVAL(val) (val)->lval
181#define VALUE_ADDRESS(val) (val)->location.address
182#define VALUE_INTERNALVAR(val) (val)->location.internalvar
183#define VALUE_FRAME_REGNUM(val) ((val)->location.regnum)
184#define VALUE_FRAME(val) ((val)->frame_addr)
185#define VALUE_OFFSET(val) (val)->offset
186#define VALUE_BITSIZE(val) (val)->bitsize
187#define VALUE_BITPOS(val) (val)->bitpos
188#define VALUE_NEXT(val) (val)->next
189#define VALUE_REGNO(val) (val)->regno
190#define VALUE_OPTIMIZED_OUT(val) ((val)->optimized_out)
191#define VALUE_EMBEDDED_OFFSET(val) ((val)->embedded_offset)
192#define VALUE_POINTED_TO_OFFSET(val) ((val)->pointed_to_offset)
193#define VALUE_BFD_SECTION(val) ((val)->bfd_section)
194
195/* Convert a REF to the object referenced. */
196
197#define COERCE_REF(arg) \
198do { struct type *value_type_arg_tmp = check_typedef (VALUE_TYPE (arg));\
199 if (TYPE_CODE (value_type_arg_tmp) == TYPE_CODE_REF) \
200 arg = value_at_lazy (TYPE_TARGET_TYPE (value_type_arg_tmp), \
4478b372
JB
201 unpack_pointer (VALUE_TYPE (arg), \
202 VALUE_CONTENTS (arg)), \
c906108c
SS
203 VALUE_BFD_SECTION (arg)); \
204 } while (0)
205
206/* If ARG is an array, convert it to a pointer.
207 If ARG is an enum, convert it to an integer.
208 If ARG is a function, convert it to a function pointer.
209
210 References are dereferenced. */
211
212#define COERCE_ARRAY(arg) \
213do { COERCE_REF(arg); \
214 if (current_language->c_style_arrays \
215 && TYPE_CODE (VALUE_TYPE (arg)) == TYPE_CODE_ARRAY) \
216 arg = value_coerce_array (arg); \
217 if (TYPE_CODE (VALUE_TYPE (arg)) == TYPE_CODE_FUNC) \
218 arg = value_coerce_function (arg); \
219} while (0)
220
221#define COERCE_NUMBER(arg) \
222 do { COERCE_ARRAY(arg); COERCE_ENUM(arg); } while (0)
223
224#define COERCE_VARYING_ARRAY(arg, real_arg_type) \
225{ if (chill_varying_type (real_arg_type)) \
226 arg = varying_to_slice (arg), real_arg_type = VALUE_TYPE (arg); }
227
228/* If ARG is an enum, convert it to an integer. */
229
230#define COERCE_ENUM(arg) { \
231 if (TYPE_CODE (check_typedef (VALUE_TYPE (arg))) == TYPE_CODE_ENUM) \
232 arg = value_cast (builtin_type_unsigned_int, arg); \
233}
234
235/* Internal variables (variables for convenience of use of debugger)
236 are recorded as a chain of these structures. */
237
238struct internalvar
c5aa993b
JM
239 {
240 struct internalvar *next;
241 char *name;
242 value_ptr value;
243 };
c906108c
SS
244
245/* Pointer to member function. Depends on compiler implementation. */
246
247#define METHOD_PTR_IS_VIRTUAL(ADDR) ((ADDR) & 0x80000000)
248#define METHOD_PTR_FROM_VOFFSET(OFFSET) (0x80000000 + (OFFSET))
249#define METHOD_PTR_TO_VOFFSET(ADDR) (~0x80000000 & (ADDR))
c906108c 250\f
c5aa993b 251
c906108c
SS
252#include "symtab.h"
253#include "gdbtypes.h"
254#include "expression.h"
255
c906108c
SS
256struct frame_info;
257struct fn_field;
c906108c 258
d9fcf2fb 259extern void print_address_demangle (CORE_ADDR, struct ui_file *, int);
c906108c 260
a14ed312 261extern LONGEST value_as_long (value_ptr val);
c906108c 262
a14ed312 263extern DOUBLEST value_as_double (value_ptr val);
c906108c 264
a14ed312 265extern CORE_ADDR value_as_pointer (value_ptr val);
c906108c 266
a14ed312 267extern LONGEST unpack_long (struct type *type, char *valaddr);
c906108c 268
a14ed312 269extern DOUBLEST unpack_double (struct type *type, char *valaddr, int *invp);
c906108c 270
a14ed312 271extern CORE_ADDR unpack_pointer (struct type *type, char *valaddr);
c906108c 272
a14ed312
KB
273extern LONGEST unpack_field_as_long (struct type *type, char *valaddr,
274 int fieldno);
c906108c 275
a14ed312 276extern value_ptr value_from_longest (struct type *type, LONGEST num);
c906108c 277
4478b372
JB
278extern value_ptr value_from_pointer (struct type *type, CORE_ADDR addr);
279
a14ed312 280extern value_ptr value_from_double (struct type *type, DOUBLEST num);
c906108c 281
a14ed312 282extern value_ptr value_from_string (char *string);
0f71a2f6 283
a14ed312
KB
284extern value_ptr value_at (struct type *type, CORE_ADDR addr,
285 asection * sect);
c906108c 286
a14ed312
KB
287extern value_ptr value_at_lazy (struct type *type, CORE_ADDR addr,
288 asection * sect);
c906108c 289
a14ed312
KB
290extern value_ptr value_from_register (struct type *type, int regnum,
291 struct frame_info *frame);
c906108c 292
a14ed312 293extern value_ptr value_of_variable (struct symbol *var, struct block *b);
c906108c 294
a14ed312 295extern value_ptr value_of_register (int regnum);
c906108c 296
a14ed312 297extern int symbol_read_needs_frame (struct symbol *);
c906108c 298
a14ed312
KB
299extern value_ptr read_var_value (struct symbol *var,
300 struct frame_info *frame);
c906108c 301
a14ed312
KB
302extern value_ptr locate_var_value (struct symbol *var,
303 struct frame_info *frame);
c906108c 304
a14ed312 305extern value_ptr allocate_value (struct type *type);
c906108c 306
a14ed312 307extern value_ptr allocate_repeat_value (struct type *type, int count);
c906108c 308
a14ed312 309extern value_ptr value_mark (void);
c906108c 310
a14ed312 311extern void value_free_to_mark (value_ptr mark);
c906108c 312
a14ed312
KB
313extern value_ptr value_string (char *ptr, int len);
314extern value_ptr value_bitstring (char *ptr, int len);
c906108c 315
a14ed312
KB
316extern value_ptr value_array (int lowbound, int highbound,
317 value_ptr * elemvec);
c906108c 318
a14ed312 319extern value_ptr value_concat (value_ptr arg1, value_ptr arg2);
c906108c 320
a14ed312
KB
321extern value_ptr value_binop (value_ptr arg1, value_ptr arg2,
322 enum exp_opcode op);
c906108c 323
a14ed312 324extern value_ptr value_add (value_ptr arg1, value_ptr arg2);
c906108c 325
a14ed312 326extern value_ptr value_sub (value_ptr arg1, value_ptr arg2);
c906108c 327
a14ed312 328extern value_ptr value_coerce_array (value_ptr arg1);
c906108c 329
a14ed312 330extern value_ptr value_coerce_function (value_ptr arg1);
c906108c 331
a14ed312 332extern value_ptr value_ind (value_ptr arg1);
c906108c 333
a14ed312 334extern value_ptr value_addr (value_ptr arg1);
c906108c 335
a14ed312 336extern value_ptr value_assign (value_ptr toval, value_ptr fromval);
c906108c 337
a14ed312 338extern value_ptr value_neg (value_ptr arg1);
c906108c 339
a14ed312 340extern value_ptr value_complement (value_ptr arg1);
c906108c 341
a14ed312
KB
342extern value_ptr value_struct_elt (value_ptr * argp, value_ptr * args,
343 char *name,
344 int *static_memfuncp, char *err);
c906108c 345
a14ed312
KB
346extern value_ptr value_struct_elt_for_reference (struct type *domain,
347 int offset,
348 struct type *curtype,
349 char *name,
350 struct type *intype);
c906108c 351
a14ed312 352extern value_ptr value_static_field (struct type *type, int fieldno);
c906108c 353
a14ed312
KB
354extern struct fn_field *value_find_oload_method_list (value_ptr *, char *,
355 int, int *, int *,
356 struct type **, int *);
7a292a7a 357
a14ed312
KB
358extern int find_overload_match (struct type **arg_types, int nargs,
359 char *name, int method, int lax,
360 value_ptr obj, struct symbol *fsym,
361 value_ptr * valp, struct symbol **symp,
362 int *staticp);
c906108c 363
a14ed312 364extern value_ptr value_field (value_ptr arg1, int fieldno);
c906108c 365
a14ed312
KB
366extern value_ptr value_primitive_field (value_ptr arg1, int offset,
367 int fieldno, struct type *arg_type);
c906108c 368
a14ed312 369extern struct type *value_rtti_type (value_ptr, int *, int *, int *);
c906108c 370
a14ed312 371extern struct type *value_rtti_target_type (value_ptr, int *, int *, int *);
c906108c 372
a14ed312 373extern value_ptr value_full_object (value_ptr, struct type *, int, int, int);
c906108c 374
a14ed312 375extern value_ptr value_cast (struct type *type, value_ptr arg2);
c906108c 376
a14ed312 377extern value_ptr value_zero (struct type *type, enum lval_type lv);
c906108c 378
a14ed312 379extern value_ptr value_repeat (value_ptr arg1, int count);
c906108c 380
a14ed312 381extern value_ptr value_subscript (value_ptr array, value_ptr idx);
c906108c 382
a14ed312 383extern value_ptr value_from_vtable_info (value_ptr arg, struct type *type);
c906108c 384
a14ed312
KB
385extern value_ptr value_being_returned (struct type *valtype,
386 char *retbuf, int struct_return);
c906108c 387
a14ed312 388extern value_ptr value_in (value_ptr element, value_ptr set);
c906108c 389
a14ed312 390extern int value_bit_index (struct type *type, char *addr, int index);
c906108c 391
a14ed312
KB
392extern int using_struct_return (value_ptr function, CORE_ADDR funcaddr,
393 struct type *value_type, int gcc_p);
c906108c 394
a14ed312 395extern void set_return_value (value_ptr val);
c906108c 396
a14ed312 397extern value_ptr evaluate_expression (struct expression *exp);
c906108c 398
a14ed312 399extern value_ptr evaluate_type (struct expression *exp);
c906108c 400
a14ed312
KB
401extern value_ptr evaluate_subexp_with_coercion (struct expression *,
402 int *, enum noside);
c906108c 403
a14ed312 404extern value_ptr parse_and_eval (char *exp);
c906108c 405
a14ed312 406extern value_ptr parse_to_comma_and_eval (char **expp);
c906108c 407
a14ed312 408extern struct type *parse_and_eval_type (char *p, int length);
c906108c 409
a14ed312 410extern CORE_ADDR parse_and_eval_address (char *exp);
c906108c 411
a14ed312 412extern CORE_ADDR parse_and_eval_address_1 (char **expptr);
c906108c 413
bb518678
DT
414extern LONGEST parse_and_eval_long (char *exp);
415
a14ed312 416extern value_ptr access_value_history (int num);
c906108c 417
a14ed312 418extern value_ptr value_of_internalvar (struct internalvar *var);
c906108c 419
a14ed312 420extern void set_internalvar (struct internalvar *var, value_ptr val);
c906108c 421
a14ed312
KB
422extern void set_internalvar_component (struct internalvar *var,
423 int offset,
424 int bitpos, int bitsize,
425 value_ptr newvalue);
c906108c 426
a14ed312 427extern struct internalvar *lookup_internalvar (char *name);
c906108c 428
a14ed312 429extern int value_equal (value_ptr arg1, value_ptr arg2);
c906108c 430
a14ed312 431extern int value_less (value_ptr arg1, value_ptr arg2);
c906108c 432
a14ed312 433extern int value_logical_not (value_ptr arg1);
c906108c
SS
434
435/* C++ */
436
a14ed312 437extern value_ptr value_of_this (int complain);
c906108c 438
a14ed312
KB
439extern value_ptr value_x_binop (value_ptr arg1, value_ptr arg2,
440 enum exp_opcode op,
441 enum exp_opcode otherop, enum noside noside);
c906108c 442
a14ed312
KB
443extern value_ptr value_x_unop (value_ptr arg1, enum exp_opcode op,
444 enum noside noside);
c906108c 445
a14ed312
KB
446extern value_ptr value_fn_field (value_ptr * arg1p, struct fn_field *f,
447 int j, struct type *type, int offset);
c906108c 448
a14ed312
KB
449extern value_ptr value_virtual_fn_field (value_ptr * arg1p,
450 struct fn_field *f, int j,
451 struct type *type, int offset);
c906108c 452
a14ed312
KB
453extern int binop_user_defined_p (enum exp_opcode op,
454 value_ptr arg1, value_ptr arg2);
c906108c 455
a14ed312 456extern int unop_user_defined_p (enum exp_opcode op, value_ptr arg1);
c906108c 457
a14ed312 458extern int destructor_name_p (const char *name, const struct type *type);
c906108c 459
338d7c5c 460#define value_free(val) xfree (val)
c906108c 461
a14ed312 462extern void free_all_values (void);
c906108c 463
a14ed312 464extern void release_value (value_ptr val);
c906108c 465
a14ed312 466extern int record_latest_value (value_ptr val);
c906108c 467
c906108c 468extern void
a14ed312 469modify_field (char *addr, LONGEST fieldval, int bitpos, int bitsize);
c906108c 470
d9fcf2fb
JM
471extern void type_print (struct type * type, char *varstring,
472 struct ui_file * stream, int show);
c906108c 473
a14ed312
KB
474extern char *baseclass_addr (struct type *type, int index,
475 char *valaddr, value_ptr * valuep, int *errp);
c906108c 476
d9fcf2fb
JM
477extern void print_longest (struct ui_file * stream, int format,
478 int use_local, LONGEST val);
c906108c 479
d9fcf2fb
JM
480extern void print_floating (char *valaddr, struct type * type,
481 struct ui_file * stream);
c906108c 482
d9fcf2fb
JM
483extern int value_print (value_ptr val, struct ui_file *stream, int format,
484 enum val_prettyprint pretty);
c906108c 485
d9fcf2fb
JM
486extern void value_print_array_elements (value_ptr val,
487 struct ui_file *stream,
488 int format,
489 enum val_prettyprint pretty);
c906108c 490
a14ed312 491extern value_ptr value_release_to_mark (value_ptr mark);
c906108c 492
d9fcf2fb
JM
493extern int val_print (struct type * type, char *valaddr,
494 int embedded_offset, CORE_ADDR address,
495 struct ui_file * stream, int format,
496 int deref_ref, int recurse,
497 enum val_prettyprint pretty);
c906108c 498
d9fcf2fb 499extern int val_print_string (CORE_ADDR addr, int len, int width, struct ui_file *stream);
c906108c 500
d9fcf2fb
JM
501extern void print_variable_value (struct symbol * var,
502 struct frame_info * frame,
503 struct ui_file *stream);
c906108c 504
a14ed312 505extern int check_field (value_ptr, const char *);
c906108c 506
a5238fbc 507extern void typedef_print (struct type * type, struct symbol * news,
d9fcf2fb 508 struct ui_file * stream);
c906108c 509
a14ed312 510extern char *internalvar_name (struct internalvar *var);
c906108c 511
a14ed312 512extern void clear_value_history (void);
c906108c 513
a14ed312 514extern void clear_internalvars (void);
c906108c
SS
515
516/* From values.c */
517
a14ed312 518extern value_ptr value_copy (value_ptr);
c906108c 519
a14ed312 520extern int baseclass_offset (struct type *, int, char *, CORE_ADDR);
c906108c
SS
521
522/* From valops.c */
523
a14ed312 524extern value_ptr varying_to_slice (value_ptr);
c906108c 525
a14ed312 526extern value_ptr value_slice (value_ptr, int, int);
c906108c 527
a14ed312 528extern value_ptr call_function_by_hand (value_ptr, int, value_ptr *);
c906108c 529
b9a8e3bf
JB
530extern int default_coerce_float_to_double (struct type *, struct type *);
531
532extern int standard_coerce_float_to_double (struct type *, struct type *);
533
a14ed312 534extern value_ptr value_literal_complex (value_ptr, value_ptr, struct type *);
c906108c 535
a14ed312
KB
536extern void find_rt_vbase_offset (struct type *, struct type *, char *, int,
537 int *, int *);
c906108c 538
a14ed312 539extern value_ptr find_function_in_inferior (char *);
c906108c 540
a14ed312 541extern value_ptr value_allocate_space_in_inferior (int);
c906108c 542
a14ed312
KB
543extern CORE_ADDR default_push_arguments (int nargs, value_ptr * args,
544 CORE_ADDR sp,
545 int struct_return,
546 CORE_ADDR struct_addr);
392a587b 547
c5aa993b 548#endif /* !defined (VALUE_H) */
This page took 0.130844 seconds and 4 git commands to generate.