* gdb.stabs/configure (alpha-*-*,mips-*-*): Add missing
[deliverable/binutils-gdb.git] / gdb / valops.c
CommitLineData
bd5635a1 1/* Perform non-arithmetic operations on values, for GDB.
2b576293 2 Copyright 1986, 1987, 1989, 1991, 1992, 1993, 1994, 1995
67e9b3b3 3 Free Software Foundation, Inc.
bd5635a1
RP
4
5This file is part of GDB.
6
06b6c733 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
06b6c733
JG
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
bd5635a1 11
06b6c733 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
06b6c733 18along with this program; if not, write to the Free Software
b4680522 19Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
bd5635a1 20
bd5635a1 21#include "defs.h"
bd5635a1 22#include "symtab.h"
01be6913 23#include "gdbtypes.h"
bd5635a1
RP
24#include "value.h"
25#include "frame.h"
26#include "inferior.h"
27#include "gdbcore.h"
28#include "target.h"
2e4964ad 29#include "demangle.h"
54023465 30#include "language.h"
bd5635a1
RP
31
32#include <errno.h>
2b576293 33#include "gdb_string.h"
bd5635a1
RP
34
35/* Local functions. */
01be6913 36
a91a6192 37static int typecmp PARAMS ((int staticp, struct type *t1[], value_ptr t2[]));
01be6913 38
a91a6192 39static CORE_ADDR find_function_addr PARAMS ((value_ptr, struct type **));
01be6913 40
a91a6192 41static CORE_ADDR value_push PARAMS ((CORE_ADDR, value_ptr));
01be6913 42
a91a6192
SS
43static value_ptr search_struct_field PARAMS ((char *, value_ptr, int,
44 struct type *, int));
01be6913 45
a91a6192
SS
46static value_ptr search_struct_method PARAMS ((char *, value_ptr *,
47 value_ptr *,
48 int, int *, struct type *));
01be6913 49
a91a6192 50static int check_field_in PARAMS ((struct type *, const char *));
a163ddec 51
a91a6192 52static CORE_ADDR allocate_space_in_inferior PARAMS ((int));
9ed8604f 53
5222ca60 54static value_ptr cast_into_complex PARAMS ((struct type *, value_ptr));
9ed8604f
PS
55
56#define VALUE_SUBSTRING_START(VAL) VALUE_FRAME(VAL)
57
5e548861
PB
58/* Flag for whether we want to abandon failed expression evals by default. */
59
60static int auto_abandon = 0;
61
bd5635a1 62\f
09af5868 63/* Find the address of function name NAME in the inferior. */
a163ddec 64
09af5868
PS
65value_ptr
66find_function_in_inferior (name)
67 char *name;
a163ddec 68{
a163ddec 69 register struct symbol *sym;
09af5868 70 sym = lookup_symbol (name, 0, VAR_NAMESPACE, 0, NULL);
a163ddec
MT
71 if (sym != NULL)
72 {
73 if (SYMBOL_CLASS (sym) != LOC_BLOCK)
74 {
09af5868
PS
75 error ("\"%s\" exists in this program but is not a function.",
76 name);
a163ddec 77 }
09af5868 78 return value_of_variable (sym, NULL);
a163ddec
MT
79 }
80 else
81 {
09af5868 82 struct minimal_symbol *msymbol = lookup_minimal_symbol(name, NULL, NULL);
a163ddec
MT
83 if (msymbol != NULL)
84 {
09af5868
PS
85 struct type *type;
86 LONGEST maddr;
a163ddec
MT
87 type = lookup_pointer_type (builtin_type_char);
88 type = lookup_function_type (type);
89 type = lookup_pointer_type (type);
90 maddr = (LONGEST) SYMBOL_VALUE_ADDRESS (msymbol);
09af5868 91 return value_from_longest (type, maddr);
a163ddec
MT
92 }
93 else
94 {
09af5868 95 error ("evaluation of this expression requires the program to have a function \"%s\".", name);
a163ddec
MT
96 }
97 }
09af5868
PS
98}
99
100/* Allocate NBYTES of space in the inferior using the inferior's malloc
101 and return a value that is a pointer to the allocated space. */
102
103value_ptr
104value_allocate_space_in_inferior (len)
105 int len;
106{
107 value_ptr blocklen;
108 register value_ptr val = find_function_in_inferior ("malloc");
a163ddec
MT
109
110 blocklen = value_from_longest (builtin_type_int, (LONGEST) len);
111 val = call_function_by_hand (val, 1, &blocklen);
112 if (value_logical_not (val))
113 {
114 error ("No memory available to program.");
115 }
09af5868
PS
116 return val;
117}
118
119static CORE_ADDR
120allocate_space_in_inferior (len)
121 int len;
122{
123 return value_as_long (value_allocate_space_in_inferior (len));
a163ddec
MT
124}
125
bd5635a1
RP
126/* Cast value ARG2 to type TYPE and return as a value.
127 More general than a C cast: accepts any two types of the same length,
128 and if ARG2 is an lvalue it can be cast into anything at all. */
54023465 129/* In C++, casts may change pointer or object representations. */
bd5635a1 130
a91a6192 131value_ptr
bd5635a1
RP
132value_cast (type, arg2)
133 struct type *type;
a91a6192 134 register value_ptr arg2;
bd5635a1 135{
5e548861 136 register enum type_code code1;
bd5635a1
RP
137 register enum type_code code2;
138 register int scalar;
5e548861 139 struct type *type2;
bd5635a1 140
f91a9e05
PB
141 if (VALUE_TYPE (arg2) == type)
142 return arg2;
143
5e548861
PB
144 CHECK_TYPEDEF (type);
145 code1 = TYPE_CODE (type);
f7a69ed7 146 COERCE_REF(arg2);
5e548861 147 type2 = check_typedef (VALUE_TYPE (arg2));
13ffa6be
JL
148
149 /* A cast to an undetermined-length array_type, such as (TYPE [])OBJECT,
150 is treated like a cast to (TYPE [N])OBJECT,
151 where N is sizeof(OBJECT)/sizeof(TYPE). */
5e548861 152 if (code1 == TYPE_CODE_ARRAY)
13ffa6be
JL
153 {
154 struct type *element_type = TYPE_TARGET_TYPE (type);
5e548861
PB
155 unsigned element_length = TYPE_LENGTH (check_typedef (element_type));
156 if (element_length > 0
157 && TYPE_ARRAY_UPPER_BOUND_TYPE (type) == BOUND_CANNOT_BE_DETERMINED)
158 {
159 struct type *range_type = TYPE_INDEX_TYPE (type);
160 int val_length = TYPE_LENGTH (type2);
161 LONGEST low_bound, high_bound, new_length;
162 if (get_discrete_bounds (range_type, &low_bound, &high_bound) < 0)
163 low_bound = 0, high_bound = 0;
164 new_length = val_length / element_length;
165 if (val_length % element_length != 0)
166 warning("array element type size does not divide object size in cast");
167 /* FIXME-type-allocation: need a way to free this type when we are
168 done with it. */
169 range_type = create_range_type ((struct type *) NULL,
170 TYPE_TARGET_TYPE (range_type),
171 low_bound,
172 new_length + low_bound - 1);
173 VALUE_TYPE (arg2) = create_array_type ((struct type *) NULL,
174 element_type, range_type);
175 return arg2;
176 }
13ffa6be 177 }
9ed8604f 178
f7a69ed7 179 if (current_language->c_style_arrays
5e548861 180 && TYPE_CODE (type2) == TYPE_CODE_ARRAY)
e70bba9f 181 arg2 = value_coerce_array (arg2);
f7a69ed7 182
5e548861 183 if (TYPE_CODE (type2) == TYPE_CODE_FUNC)
f7a69ed7
PB
184 arg2 = value_coerce_function (arg2);
185
5e548861
PB
186 type2 = check_typedef (VALUE_TYPE (arg2));
187 COERCE_VARYING_ARRAY (arg2, type2);
188 code2 = TYPE_CODE (type2);
f7a69ed7 189
34cfa2da
PB
190 if (code1 == TYPE_CODE_COMPLEX)
191 return cast_into_complex (type, arg2);
192 if (code1 == TYPE_CODE_BOOL || code1 == TYPE_CODE_CHAR)
f7a69ed7 193 code1 = TYPE_CODE_INT;
34cfa2da 194 if (code2 == TYPE_CODE_BOOL || code2 == TYPE_CODE_CHAR)
f7a69ed7
PB
195 code2 = TYPE_CODE_INT;
196
bd5635a1 197 scalar = (code2 == TYPE_CODE_INT || code2 == TYPE_CODE_FLT
f91a9e05 198 || code2 == TYPE_CODE_ENUM || code2 == TYPE_CODE_RANGE);
bd5635a1 199
54023465
JK
200 if ( code1 == TYPE_CODE_STRUCT
201 && code2 == TYPE_CODE_STRUCT
202 && TYPE_NAME (type) != 0)
203 {
204 /* Look in the type of the source to see if it contains the
205 type of the target as a superclass. If so, we'll need to
206 offset the object in addition to changing its type. */
a91a6192 207 value_ptr v = search_struct_field (type_name_no_tag (type),
5e548861 208 arg2, 0, type2, 1);
54023465
JK
209 if (v)
210 {
211 VALUE_TYPE (v) = type;
212 return v;
213 }
214 }
bd5635a1
RP
215 if (code1 == TYPE_CODE_FLT && scalar)
216 return value_from_double (type, value_as_double (arg2));
f91a9e05
PB
217 else if ((code1 == TYPE_CODE_INT || code1 == TYPE_CODE_ENUM
218 || code1 == TYPE_CODE_RANGE)
bd5635a1 219 && (scalar || code2 == TYPE_CODE_PTR))
06b6c733 220 return value_from_longest (type, value_as_long (arg2));
5e548861 221 else if (TYPE_LENGTH (type) == TYPE_LENGTH (type2))
bd5635a1
RP
222 {
223 if (code1 == TYPE_CODE_PTR && code2 == TYPE_CODE_PTR)
224 {
225 /* Look in the type of the source to see if it contains the
226 type of the target as a superclass. If so, we'll need to
227 offset the pointer rather than just change its type. */
5e548861
PB
228 struct type *t1 = check_typedef (TYPE_TARGET_TYPE (type));
229 struct type *t2 = check_typedef (TYPE_TARGET_TYPE (type2));
2a5ec41d 230 if ( TYPE_CODE (t1) == TYPE_CODE_STRUCT
bd5635a1
RP
231 && TYPE_CODE (t2) == TYPE_CODE_STRUCT
232 && TYPE_NAME (t1) != 0) /* if name unknown, can't have supercl */
233 {
a91a6192
SS
234 value_ptr v = search_struct_field (type_name_no_tag (t1),
235 value_ind (arg2), 0, t2, 1);
bd5635a1
RP
236 if (v)
237 {
238 v = value_addr (v);
239 VALUE_TYPE (v) = type;
240 return v;
241 }
242 }
243 /* No superclass found, just fall through to change ptr type. */
244 }
245 VALUE_TYPE (arg2) = type;
246 return arg2;
247 }
f91a9e05
PB
248 else if (chill_varying_type (type))
249 {
250 struct type *range1, *range2, *eltype1, *eltype2;
251 value_ptr val;
252 int count1, count2;
5e548861 253 LONGEST low_bound, high_bound;
f91a9e05
PB
254 char *valaddr, *valaddr_data;
255 if (code2 == TYPE_CODE_BITSTRING)
256 error ("not implemented: converting bitstring to varying type");
257 if ((code2 != TYPE_CODE_ARRAY && code2 != TYPE_CODE_STRING)
5e548861
PB
258 || (eltype1 = check_typedef (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type, 1))),
259 eltype2 = check_typedef (TYPE_TARGET_TYPE (type2)),
f91a9e05
PB
260 (TYPE_LENGTH (eltype1) != TYPE_LENGTH (eltype2)
261 /* || TYPE_CODE (eltype1) != TYPE_CODE (eltype2) */ )))
262 error ("Invalid conversion to varying type");
263 range1 = TYPE_FIELD_TYPE (TYPE_FIELD_TYPE (type, 1), 0);
5e548861
PB
264 range2 = TYPE_FIELD_TYPE (type2, 0);
265 if (get_discrete_bounds (range1, &low_bound, &high_bound) < 0)
266 count1 = -1;
267 else
268 count1 = high_bound - low_bound + 1;
269 if (get_discrete_bounds (range2, &low_bound, &high_bound) < 0)
270 count1 = -1, count2 = 0; /* To force error before */
271 else
272 count2 = high_bound - low_bound + 1;
f91a9e05
PB
273 if (count2 > count1)
274 error ("target varying type is too small");
275 val = allocate_value (type);
276 valaddr = VALUE_CONTENTS_RAW (val);
277 valaddr_data = valaddr + TYPE_FIELD_BITPOS (type, 1) / 8;
278 /* Set val's __var_length field to count2. */
279 store_signed_integer (valaddr, TYPE_LENGTH (TYPE_FIELD_TYPE (type, 0)),
280 count2);
281 /* Set the __var_data field to count2 elements copied from arg2. */
282 memcpy (valaddr_data, VALUE_CONTENTS (arg2),
283 count2 * TYPE_LENGTH (eltype2));
284 /* Zero the rest of the __var_data field of val. */
285 memset (valaddr_data + count2 * TYPE_LENGTH (eltype2), '\0',
286 (count1 - count2) * TYPE_LENGTH (eltype2));
287 return val;
288 }
bd5635a1
RP
289 else if (VALUE_LVAL (arg2) == lval_memory)
290 {
291 return value_at_lazy (type, VALUE_ADDRESS (arg2) + VALUE_OFFSET (arg2));
292 }
d11c44f1
JG
293 else if (code1 == TYPE_CODE_VOID)
294 {
295 return value_zero (builtin_type_void, not_lval);
296 }
bd5635a1
RP
297 else
298 {
299 error ("Invalid cast.");
300 return 0;
301 }
302}
303
304/* Create a value of type TYPE that is zero, and return it. */
305
a91a6192 306value_ptr
bd5635a1
RP
307value_zero (type, lv)
308 struct type *type;
309 enum lval_type lv;
310{
a91a6192 311 register value_ptr val = allocate_value (type);
bd5635a1 312
5e548861 313 memset (VALUE_CONTENTS (val), 0, TYPE_LENGTH (check_typedef (type)));
bd5635a1
RP
314 VALUE_LVAL (val) = lv;
315
316 return val;
317}
318
319/* Return a value with type TYPE located at ADDR.
320
321 Call value_at only if the data needs to be fetched immediately;
322 if we can be 'lazy' and defer the fetch, perhaps indefinately, call
323 value_at_lazy instead. value_at_lazy simply records the address of
324 the data and sets the lazy-evaluation-required flag. The lazy flag
325 is tested in the VALUE_CONTENTS macro, which is used if and when
326 the contents are actually required. */
327
a91a6192 328value_ptr
bd5635a1
RP
329value_at (type, addr)
330 struct type *type;
331 CORE_ADDR addr;
332{
a91a6192
SS
333 register value_ptr val;
334
5e548861 335 if (TYPE_CODE (check_typedef (type)) == TYPE_CODE_VOID)
a91a6192
SS
336 error ("Attempt to dereference a generic pointer.");
337
338 val = allocate_value (type);
bd5635a1
RP
339
340 read_memory (addr, VALUE_CONTENTS_RAW (val), TYPE_LENGTH (type));
341
342 VALUE_LVAL (val) = lval_memory;
343 VALUE_ADDRESS (val) = addr;
344
345 return val;
346}
347
348/* Return a lazy value with type TYPE located at ADDR (cf. value_at). */
349
a91a6192 350value_ptr
bd5635a1
RP
351value_at_lazy (type, addr)
352 struct type *type;
353 CORE_ADDR addr;
354{
a91a6192
SS
355 register value_ptr val;
356
5e548861 357 if (TYPE_CODE (check_typedef (type)) == TYPE_CODE_VOID)
a91a6192
SS
358 error ("Attempt to dereference a generic pointer.");
359
360 val = allocate_value (type);
bd5635a1
RP
361
362 VALUE_LVAL (val) = lval_memory;
363 VALUE_ADDRESS (val) = addr;
364 VALUE_LAZY (val) = 1;
365
366 return val;
367}
368
369/* Called only from the VALUE_CONTENTS macro, if the current data for
370 a variable needs to be loaded into VALUE_CONTENTS(VAL). Fetches the
371 data from the user's process, and clears the lazy flag to indicate
372 that the data in the buffer is valid.
373
9cb602e1
JG
374 If the value is zero-length, we avoid calling read_memory, which would
375 abort. We mark the value as fetched anyway -- all 0 bytes of it.
376
bd5635a1
RP
377 This function returns a value because it is used in the VALUE_CONTENTS
378 macro as part of an expression, where a void would not work. The
379 value is ignored. */
380
381int
382value_fetch_lazy (val)
a91a6192 383 register value_ptr val;
bd5635a1
RP
384{
385 CORE_ADDR addr = VALUE_ADDRESS (val) + VALUE_OFFSET (val);
5e548861 386 int length = TYPE_LENGTH (VALUE_TYPE (val));
bd5635a1 387
5e548861
PB
388 if (length)
389 read_memory (addr, VALUE_CONTENTS_RAW (val), length);
bd5635a1
RP
390 VALUE_LAZY (val) = 0;
391 return 0;
392}
393
394
395/* Store the contents of FROMVAL into the location of TOVAL.
396 Return a new value with the location of TOVAL and contents of FROMVAL. */
397
a91a6192 398value_ptr
bd5635a1 399value_assign (toval, fromval)
a91a6192 400 register value_ptr toval, fromval;
bd5635a1 401{
67e9b3b3 402 register struct type *type;
a91a6192 403 register value_ptr val;
bd5635a1 404 char raw_buffer[MAX_REGISTER_RAW_SIZE];
bd5635a1
RP
405 int use_buffer = 0;
406
30974778
JK
407 if (!toval->modifiable)
408 error ("Left operand of assignment is not a modifiable lvalue.");
409
bd5635a1 410 COERCE_ARRAY (fromval);
8e9a3f3b 411 COERCE_REF (toval);
bd5635a1 412
67e9b3b3 413 type = VALUE_TYPE (toval);
bd5635a1
RP
414 if (VALUE_LVAL (toval) != lval_internalvar)
415 fromval = value_cast (type, fromval);
5e548861 416 CHECK_TYPEDEF (type);
bd5635a1
RP
417
418 /* If TOVAL is a special machine register requiring conversion
419 of program values to a special raw format,
420 convert FROMVAL's contents now, with result in `raw_buffer',
421 and set USE_BUFFER to the number of bytes to write. */
422
ad09cb2b 423#ifdef REGISTER_CONVERTIBLE
bd5635a1
RP
424 if (VALUE_REGNO (toval) >= 0
425 && REGISTER_CONVERTIBLE (VALUE_REGNO (toval)))
426 {
427 int regno = VALUE_REGNO (toval);
ad09cb2b
PS
428 if (REGISTER_CONVERTIBLE (regno))
429 {
5e548861
PB
430 struct type *fromtype = check_typedef (VALUE_TYPE (fromval));
431 REGISTER_CONVERT_TO_RAW (fromtype, regno,
ad09cb2b
PS
432 VALUE_CONTENTS (fromval), raw_buffer);
433 use_buffer = REGISTER_RAW_SIZE (regno);
434 }
bd5635a1 435 }
ad09cb2b 436#endif
bd5635a1
RP
437
438 switch (VALUE_LVAL (toval))
439 {
440 case lval_internalvar:
441 set_internalvar (VALUE_INTERNALVAR (toval), fromval);
5e548861 442 return VALUE_INTERNALVAR (toval)->value;
bd5635a1
RP
443
444 case lval_internalvar_component:
445 set_internalvar_component (VALUE_INTERNALVAR (toval),
446 VALUE_OFFSET (toval),
447 VALUE_BITPOS (toval),
448 VALUE_BITSIZE (toval),
449 fromval);
450 break;
451
452 case lval_memory:
453 if (VALUE_BITSIZE (toval))
454 {
4d52ec86
JK
455 char buffer[sizeof (LONGEST)];
456 /* We assume that the argument to read_memory is in units of
457 host chars. FIXME: Is that correct? */
458 int len = (VALUE_BITPOS (toval)
459 + VALUE_BITSIZE (toval)
460 + HOST_CHAR_BIT - 1)
461 / HOST_CHAR_BIT;
ad09cb2b 462
4d52ec86 463 if (len > sizeof (LONGEST))
ad09cb2b
PS
464 error ("Can't handle bitfields which don't fit in a %d bit word.",
465 sizeof (LONGEST) * HOST_CHAR_BIT);
4d52ec86 466
bd5635a1 467 read_memory (VALUE_ADDRESS (toval) + VALUE_OFFSET (toval),
4d52ec86
JK
468 buffer, len);
469 modify_field (buffer, value_as_long (fromval),
bd5635a1
RP
470 VALUE_BITPOS (toval), VALUE_BITSIZE (toval));
471 write_memory (VALUE_ADDRESS (toval) + VALUE_OFFSET (toval),
4d52ec86 472 buffer, len);
bd5635a1
RP
473 }
474 else if (use_buffer)
475 write_memory (VALUE_ADDRESS (toval) + VALUE_OFFSET (toval),
476 raw_buffer, use_buffer);
477 else
478 write_memory (VALUE_ADDRESS (toval) + VALUE_OFFSET (toval),
479 VALUE_CONTENTS (fromval), TYPE_LENGTH (type));
480 break;
481
482 case lval_register:
483 if (VALUE_BITSIZE (toval))
484 {
ad09cb2b 485 char buffer[sizeof (LONGEST)];
4d52ec86 486 int len = REGISTER_RAW_SIZE (VALUE_REGNO (toval));
ad09cb2b
PS
487
488 if (len > sizeof (LONGEST))
489 error ("Can't handle bitfields in registers larger than %d bits.",
490 sizeof (LONGEST) * HOST_CHAR_BIT);
491
492 if (VALUE_BITPOS (toval) + VALUE_BITSIZE (toval)
493 > len * HOST_CHAR_BIT)
494 /* Getting this right would involve being very careful about
495 byte order. */
496 error ("\
497Can't handle bitfield which doesn't fit in a single register.");
498
4d52ec86
JK
499 read_register_bytes (VALUE_ADDRESS (toval) + VALUE_OFFSET (toval),
500 buffer, len);
501 modify_field (buffer, value_as_long (fromval),
502 VALUE_BITPOS (toval), VALUE_BITSIZE (toval));
503 write_register_bytes (VALUE_ADDRESS (toval) + VALUE_OFFSET (toval),
504 buffer, len);
bd5635a1
RP
505 }
506 else if (use_buffer)
507 write_register_bytes (VALUE_ADDRESS (toval) + VALUE_OFFSET (toval),
508 raw_buffer, use_buffer);
509 else
54023465
JK
510 {
511 /* Do any conversion necessary when storing this type to more
512 than one register. */
513#ifdef REGISTER_CONVERT_FROM_TYPE
514 memcpy (raw_buffer, VALUE_CONTENTS (fromval), TYPE_LENGTH (type));
515 REGISTER_CONVERT_FROM_TYPE(VALUE_REGNO (toval), type, raw_buffer);
516 write_register_bytes (VALUE_ADDRESS (toval) + VALUE_OFFSET (toval),
517 raw_buffer, TYPE_LENGTH (type));
518#else
519 write_register_bytes (VALUE_ADDRESS (toval) + VALUE_OFFSET (toval),
520 VALUE_CONTENTS (fromval), TYPE_LENGTH (type));
521#endif
522 }
79971d11
JK
523 /* Assigning to the stack pointer, frame pointer, and other
524 (architecture and calling convention specific) registers may
525 cause the frame cache to be out of date. We just do this
526 on all assignments to registers for simplicity; I doubt the slowdown
527 matters. */
528 reinit_frame_cache ();
bd5635a1
RP
529 break;
530
531 case lval_reg_frame_relative:
532 {
533 /* value is stored in a series of registers in the frame
534 specified by the structure. Copy that value out, modify
535 it, and copy it back in. */
536 int amount_to_copy = (VALUE_BITSIZE (toval) ? 1 : TYPE_LENGTH (type));
537 int reg_size = REGISTER_RAW_SIZE (VALUE_FRAME_REGNUM (toval));
538 int byte_offset = VALUE_OFFSET (toval) % reg_size;
539 int reg_offset = VALUE_OFFSET (toval) / reg_size;
540 int amount_copied;
4d52ec86
JK
541
542 /* Make the buffer large enough in all cases. */
543 char *buffer = (char *) alloca (amount_to_copy
544 + sizeof (LONGEST)
545 + MAX_REGISTER_RAW_SIZE);
546
bd5635a1 547 int regno;
6d34c236 548 struct frame_info *frame;
bd5635a1
RP
549
550 /* Figure out which frame this is in currently. */
551 for (frame = get_current_frame ();
552 frame && FRAME_FP (frame) != VALUE_FRAME (toval);
553 frame = get_prev_frame (frame))
554 ;
555
556 if (!frame)
557 error ("Value being assigned to is no longer active.");
558
559 amount_to_copy += (reg_size - amount_to_copy % reg_size);
560
561 /* Copy it out. */
562 for ((regno = VALUE_FRAME_REGNUM (toval) + reg_offset,
563 amount_copied = 0);
564 amount_copied < amount_to_copy;
565 amount_copied += reg_size, regno++)
566 {
567 get_saved_register (buffer + amount_copied,
51b57ded 568 (int *)NULL, (CORE_ADDR *)NULL,
bd5635a1
RP
569 frame, regno, (enum lval_type *)NULL);
570 }
571
572 /* Modify what needs to be modified. */
573 if (VALUE_BITSIZE (toval))
574 modify_field (buffer + byte_offset,
479fdd26 575 value_as_long (fromval),
bd5635a1
RP
576 VALUE_BITPOS (toval), VALUE_BITSIZE (toval));
577 else if (use_buffer)
4ed3a9ea 578 memcpy (buffer + byte_offset, raw_buffer, use_buffer);
bd5635a1 579 else
4ed3a9ea
FF
580 memcpy (buffer + byte_offset, VALUE_CONTENTS (fromval),
581 TYPE_LENGTH (type));
bd5635a1
RP
582
583 /* Copy it back. */
584 for ((regno = VALUE_FRAME_REGNUM (toval) + reg_offset,
585 amount_copied = 0);
586 amount_copied < amount_to_copy;
587 amount_copied += reg_size, regno++)
588 {
589 enum lval_type lval;
590 CORE_ADDR addr;
591 int optim;
592
593 /* Just find out where to put it. */
594 get_saved_register ((char *)NULL,
595 &optim, &addr, frame, regno, &lval);
596
597 if (optim)
598 error ("Attempt to assign to a value that was optimized out.");
599 if (lval == lval_memory)
600 write_memory (addr, buffer + amount_copied, reg_size);
601 else if (lval == lval_register)
602 write_register_bytes (addr, buffer + amount_copied, reg_size);
603 else
604 error ("Attempt to assign to an unmodifiable value.");
605 }
606 }
607 break;
608
609
610 default:
30974778 611 error ("Left operand of assignment is not an lvalue.");
bd5635a1
RP
612 }
613
b4680522
PB
614 /* If the field does not entirely fill a LONGEST, then zero the sign bits.
615 If the field is signed, and is negative, then sign extend. */
616 if ((VALUE_BITSIZE (toval) > 0)
617 && (VALUE_BITSIZE (toval) < 8 * sizeof (LONGEST)))
618 {
619 LONGEST fieldval = value_as_long (fromval);
620 LONGEST valmask = (((unsigned LONGEST) 1) << VALUE_BITSIZE (toval)) - 1;
621
622 fieldval &= valmask;
623 if (!TYPE_UNSIGNED (type) && (fieldval & (valmask ^ (valmask >> 1))))
624 fieldval |= ~valmask;
625
626 fromval = value_from_longest (type, fieldval);
627 }
628
b4680522 629 val = value_copy (toval);
4ed3a9ea
FF
630 memcpy (VALUE_CONTENTS_RAW (val), VALUE_CONTENTS (fromval),
631 TYPE_LENGTH (type));
bd5635a1
RP
632 VALUE_TYPE (val) = type;
633
634 return val;
635}
636
637/* Extend a value VAL to COUNT repetitions of its type. */
638
a91a6192 639value_ptr
bd5635a1 640value_repeat (arg1, count)
a91a6192 641 value_ptr arg1;
bd5635a1
RP
642 int count;
643{
a91a6192 644 register value_ptr val;
bd5635a1
RP
645
646 if (VALUE_LVAL (arg1) != lval_memory)
647 error ("Only values in memory can be extended with '@'.");
648 if (count < 1)
649 error ("Invalid number %d of repetitions.", count);
650
651 val = allocate_repeat_value (VALUE_TYPE (arg1), count);
652
653 read_memory (VALUE_ADDRESS (arg1) + VALUE_OFFSET (arg1),
654 VALUE_CONTENTS_RAW (val),
09af5868 655 TYPE_LENGTH (VALUE_TYPE (val)));
bd5635a1
RP
656 VALUE_LVAL (val) = lval_memory;
657 VALUE_ADDRESS (val) = VALUE_ADDRESS (arg1) + VALUE_OFFSET (arg1);
658
659 return val;
660}
661
a91a6192 662value_ptr
479fdd26 663value_of_variable (var, b)
bd5635a1 664 struct symbol *var;
479fdd26 665 struct block *b;
bd5635a1 666{
a91a6192 667 value_ptr val;
6d34c236 668 struct frame_info *frame;
bd5635a1 669
479fdd26
JK
670 if (b == NULL)
671 /* Use selected frame. */
6d34c236 672 frame = NULL;
479fdd26
JK
673 else
674 {
6d34c236
PB
675 frame = block_innermost_frame (b);
676 if (frame == NULL && symbol_read_needs_frame (var))
479fdd26
JK
677 {
678 if (BLOCK_FUNCTION (b) != NULL
679 && SYMBOL_NAME (BLOCK_FUNCTION (b)) != NULL)
680 error ("No frame is currently executing in block %s.",
681 SYMBOL_NAME (BLOCK_FUNCTION (b)));
682 else
683 error ("No frame is currently executing in specified block");
684 }
685 }
6d34c236 686 val = read_var_value (var, frame);
bd5635a1 687 if (val == 0)
2e4964ad 688 error ("Address of symbol \"%s\" is unknown.", SYMBOL_SOURCE_NAME (var));
bd5635a1
RP
689 return val;
690}
691
a163ddec
MT
692/* Given a value which is an array, return a value which is a pointer to its
693 first element, regardless of whether or not the array has a nonzero lower
694 bound.
695
696 FIXME: A previous comment here indicated that this routine should be
697 substracting the array's lower bound. It's not clear to me that this
698 is correct. Given an array subscripting operation, it would certainly
699 work to do the adjustment here, essentially computing:
700
701 (&array[0] - (lowerbound * sizeof array[0])) + (index * sizeof array[0])
702
703 However I believe a more appropriate and logical place to account for
704 the lower bound is to do so in value_subscript, essentially computing:
705
706 (&array[0] + ((index - lowerbound) * sizeof array[0]))
707
708 As further evidence consider what would happen with operations other
709 than array subscripting, where the caller would get back a value that
710 had an address somewhere before the actual first element of the array,
711 and the information about the lower bound would be lost because of
712 the coercion to pointer type.
713 */
bd5635a1 714
a91a6192 715value_ptr
bd5635a1 716value_coerce_array (arg1)
a91a6192 717 value_ptr arg1;
bd5635a1 718{
5e548861 719 register struct type *type = check_typedef (VALUE_TYPE (arg1));
bd5635a1
RP
720
721 if (VALUE_LVAL (arg1) != lval_memory)
722 error ("Attempt to take address of value not located in memory.");
723
5e548861 724 return value_from_longest (lookup_pointer_type (TYPE_TARGET_TYPE (type)),
bd5635a1 725 (LONGEST) (VALUE_ADDRESS (arg1) + VALUE_OFFSET (arg1)));
bd5635a1
RP
726}
727
728/* Given a value which is a function, return a value which is a pointer
729 to it. */
730
a91a6192 731value_ptr
bd5635a1 732value_coerce_function (arg1)
a91a6192 733 value_ptr arg1;
bd5635a1 734{
bd5635a1
RP
735
736 if (VALUE_LVAL (arg1) != lval_memory)
737 error ("Attempt to take address of value not located in memory.");
738
06b6c733 739 return value_from_longest (lookup_pointer_type (VALUE_TYPE (arg1)),
bd5635a1 740 (LONGEST) (VALUE_ADDRESS (arg1) + VALUE_OFFSET (arg1)));
bd5635a1
RP
741}
742
743/* Return a pointer value for the object for which ARG1 is the contents. */
744
a91a6192 745value_ptr
bd5635a1 746value_addr (arg1)
a91a6192 747 value_ptr arg1;
bd5635a1 748{
5e548861 749 struct type *type = check_typedef (VALUE_TYPE (arg1));
8e9a3f3b
PB
750 if (TYPE_CODE (type) == TYPE_CODE_REF)
751 {
752 /* Copy the value, but change the type from (T&) to (T*).
753 We keep the same location information, which is efficient,
754 and allows &(&X) to get the location containing the reference. */
a91a6192 755 value_ptr arg2 = value_copy (arg1);
8e9a3f3b
PB
756 VALUE_TYPE (arg2) = lookup_pointer_type (TYPE_TARGET_TYPE (type));
757 return arg2;
758 }
8e9a3f3b 759 if (TYPE_CODE (type) == TYPE_CODE_FUNC)
bd5635a1
RP
760 return value_coerce_function (arg1);
761
762 if (VALUE_LVAL (arg1) != lval_memory)
763 error ("Attempt to take address of value not located in memory.");
764
5e548861 765 return value_from_longest (lookup_pointer_type (VALUE_TYPE (arg1)),
bd5635a1 766 (LONGEST) (VALUE_ADDRESS (arg1) + VALUE_OFFSET (arg1)));
bd5635a1
RP
767}
768
769/* Given a value of a pointer type, apply the C unary * operator to it. */
770
a91a6192 771value_ptr
bd5635a1 772value_ind (arg1)
a91a6192 773 value_ptr arg1;
bd5635a1 774{
5e548861 775 struct type *type1;
bd5635a1 776 COERCE_ARRAY (arg1);
5e548861 777 type1 = check_typedef (VALUE_TYPE (arg1));
bd5635a1 778
5e548861 779 if (TYPE_CODE (type1) == TYPE_CODE_MEMBER)
bd5635a1
RP
780 error ("not implemented: member types in value_ind");
781
782 /* Allow * on an integer so we can cast it to whatever we want.
783 This returns an int, which seems like the most C-like thing
784 to do. "long long" variables are rare enough that
785 BUILTIN_TYPE_LONGEST would seem to be a mistake. */
5e548861 786 if (TYPE_CODE (type1) == TYPE_CODE_INT)
bd5635a1
RP
787 return value_at (builtin_type_int,
788 (CORE_ADDR) value_as_long (arg1));
5e548861
PB
789 else if (TYPE_CODE (type1) == TYPE_CODE_PTR)
790 return value_at_lazy (TYPE_TARGET_TYPE (type1), value_as_pointer (arg1));
bd5635a1
RP
791 error ("Attempt to take contents of a non-pointer value.");
792 return 0; /* For lint -- never reached */
793}
794\f
795/* Pushing small parts of stack frames. */
796
797/* Push one word (the size of object that a register holds). */
798
799CORE_ADDR
34df79fc 800push_word (sp, word)
bd5635a1 801 CORE_ADDR sp;
67e9b3b3 802 unsigned LONGEST word;
bd5635a1 803{
67e9b3b3 804 register int len = REGISTER_SIZE;
479fdd26 805 char buffer[MAX_REGISTER_RAW_SIZE];
bd5635a1 806
479fdd26 807 store_unsigned_integer (buffer, len, word);
bd5635a1
RP
808#if 1 INNER_THAN 2
809 sp -= len;
479fdd26 810 write_memory (sp, buffer, len);
bd5635a1 811#else /* stack grows upward */
479fdd26 812 write_memory (sp, buffer, len);
bd5635a1
RP
813 sp += len;
814#endif /* stack grows upward */
815
816 return sp;
817}
818
819/* Push LEN bytes with data at BUFFER. */
820
821CORE_ADDR
822push_bytes (sp, buffer, len)
823 CORE_ADDR sp;
824 char *buffer;
825 int len;
826{
827#if 1 INNER_THAN 2
828 sp -= len;
829 write_memory (sp, buffer, len);
830#else /* stack grows upward */
831 write_memory (sp, buffer, len);
832 sp += len;
833#endif /* stack grows upward */
834
835 return sp;
836}
837
838/* Push onto the stack the specified value VALUE. */
839
01be6913 840static CORE_ADDR
bd5635a1
RP
841value_push (sp, arg)
842 register CORE_ADDR sp;
a91a6192 843 value_ptr arg;
bd5635a1
RP
844{
845 register int len = TYPE_LENGTH (VALUE_TYPE (arg));
846
847#if 1 INNER_THAN 2
848 sp -= len;
849 write_memory (sp, VALUE_CONTENTS (arg), len);
850#else /* stack grows upward */
851 write_memory (sp, VALUE_CONTENTS (arg), len);
852 sp += len;
853#endif /* stack grows upward */
854
855 return sp;
856}
857
858/* Perform the standard coercions that are specified
5222ca60 859 for arguments to be passed to C functions.
bd5635a1 860
5222ca60
PB
861 If PARAM_TYPE is non-NULL, it is the expected parameter type. */
862
863static value_ptr
864value_arg_coerce (arg, param_type)
a91a6192 865 value_ptr arg;
5222ca60 866 struct type *param_type;
bd5635a1 867{
5e548861
PB
868 register struct type *arg_type = check_typedef (VALUE_TYPE (arg));
869 register struct type *type
870 = param_type ? check_typedef (param_type) : arg_type;
bd5635a1 871
5222ca60
PB
872 switch (TYPE_CODE (type))
873 {
874 case TYPE_CODE_REF:
5e548861 875 if (TYPE_CODE (arg_type) != TYPE_CODE_REF)
5222ca60
PB
876 {
877 arg = value_addr (arg);
878 VALUE_TYPE (arg) = param_type;
879 return arg;
880 }
881 break;
882 case TYPE_CODE_INT:
883 case TYPE_CODE_CHAR:
884 case TYPE_CODE_BOOL:
885 case TYPE_CODE_ENUM:
886 if (TYPE_LENGTH (type) < TYPE_LENGTH (builtin_type_int))
887 type = builtin_type_int;
888 break;
889 case TYPE_CODE_FLT:
890 if (TYPE_LENGTH (type) < TYPE_LENGTH (builtin_type_double))
891 type = builtin_type_double;
892 break;
893 case TYPE_CODE_FUNC:
894 type = lookup_pointer_type (type);
895 break;
5e548861
PB
896 case TYPE_CODE_ARRAY:
897 if (current_language->c_style_arrays)
898 type = lookup_pointer_type (TYPE_TARGET_TYPE (type));
899 break;
2b576293
C
900 case TYPE_CODE_UNDEF:
901 case TYPE_CODE_PTR:
2b576293
C
902 case TYPE_CODE_STRUCT:
903 case TYPE_CODE_UNION:
904 case TYPE_CODE_VOID:
905 case TYPE_CODE_SET:
906 case TYPE_CODE_RANGE:
907 case TYPE_CODE_STRING:
908 case TYPE_CODE_BITSTRING:
909 case TYPE_CODE_ERROR:
910 case TYPE_CODE_MEMBER:
911 case TYPE_CODE_METHOD:
912 case TYPE_CODE_COMPLEX:
913 default:
914 break;
5222ca60 915 }
479fdd26 916
5222ca60 917 return value_cast (type, arg);
bd5635a1
RP
918}
919
920/* Determine a function's address and its return type from its value.
921 Calls error() if the function is not valid for calling. */
922
01be6913 923static CORE_ADDR
bd5635a1 924find_function_addr (function, retval_type)
a91a6192 925 value_ptr function;
bd5635a1
RP
926 struct type **retval_type;
927{
5e548861 928 register struct type *ftype = check_typedef (VALUE_TYPE (function));
bd5635a1
RP
929 register enum type_code code = TYPE_CODE (ftype);
930 struct type *value_type;
931 CORE_ADDR funaddr;
932
933 /* If it's a member function, just look at the function
934 part of it. */
935
936 /* Determine address to call. */
937 if (code == TYPE_CODE_FUNC || code == TYPE_CODE_METHOD)
938 {
939 funaddr = VALUE_ADDRESS (function);
940 value_type = TYPE_TARGET_TYPE (ftype);
941 }
942 else if (code == TYPE_CODE_PTR)
943 {
d11c44f1 944 funaddr = value_as_pointer (function);
5e548861
PB
945 ftype = check_typedef (TYPE_TARGET_TYPE (ftype));
946 if (TYPE_CODE (ftype) == TYPE_CODE_FUNC
947 || TYPE_CODE (ftype) == TYPE_CODE_METHOD)
9ed8604f
PS
948 {
949#ifdef CONVERT_FROM_FUNC_PTR_ADDR
950 /* FIXME: This is a workaround for the unusual function
951 pointer representation on the RS/6000, see comment
952 in config/rs6000/tm-rs6000.h */
953 funaddr = CONVERT_FROM_FUNC_PTR_ADDR (funaddr);
954#endif
5e548861 955 value_type = TYPE_TARGET_TYPE (ftype);
9ed8604f 956 }
bd5635a1
RP
957 else
958 value_type = builtin_type_int;
959 }
960 else if (code == TYPE_CODE_INT)
961 {
962 /* Handle the case of functions lacking debugging info.
963 Their values are characters since their addresses are char */
964 if (TYPE_LENGTH (ftype) == 1)
d11c44f1 965 funaddr = value_as_pointer (value_addr (function));
bd5635a1
RP
966 else
967 /* Handle integer used as address of a function. */
d11c44f1 968 funaddr = (CORE_ADDR) value_as_long (function);
bd5635a1
RP
969
970 value_type = builtin_type_int;
971 }
972 else
973 error ("Invalid data type for function to be called.");
974
975 *retval_type = value_type;
976 return funaddr;
977}
978
979#if defined (CALL_DUMMY)
980/* All this stuff with a dummy frame may seem unnecessarily complicated
981 (why not just save registers in GDB?). The purpose of pushing a dummy
982 frame which looks just like a real frame is so that if you call a
983 function and then hit a breakpoint (get a signal, etc), "backtrace"
984 will look right. Whether the backtrace needs to actually show the
985 stack at the time the inferior function was called is debatable, but
986 it certainly needs to not display garbage. So if you are contemplating
987 making dummy frames be different from normal frames, consider that. */
988
989/* Perform a function call in the inferior.
990 ARGS is a vector of values of arguments (NARGS of them).
991 FUNCTION is a value, the function to be called.
992 Returns a value representing what the function returned.
993 May fail to return, if a breakpoint or signal is hit
5222ca60
PB
994 during the execution of the function.
995
996 ARGS is modified to contain coerced values. */
bd5635a1 997
a91a6192 998value_ptr
bd5635a1 999call_function_by_hand (function, nargs, args)
a91a6192 1000 value_ptr function;
bd5635a1 1001 int nargs;
a91a6192 1002 value_ptr *args;
bd5635a1
RP
1003{
1004 register CORE_ADDR sp;
1005 register int i;
1006 CORE_ADDR start_sp;
67e9b3b3
PS
1007 /* CALL_DUMMY is an array of words (REGISTER_SIZE), but each word
1008 is in host byte order. Before calling FIX_CALL_DUMMY, we byteswap it
1009 and remove any extra bytes which might exist because unsigned LONGEST is
1010 bigger than REGISTER_SIZE. */
1011 static unsigned LONGEST dummy[] = CALL_DUMMY;
1012 char dummy1[REGISTER_SIZE * sizeof dummy / sizeof (unsigned LONGEST)];
bd5635a1
RP
1013 CORE_ADDR old_sp;
1014 struct type *value_type;
1015 unsigned char struct_return;
1016 CORE_ADDR struct_addr;
1017 struct inferior_status inf_status;
1018 struct cleanup *old_chain;
1019 CORE_ADDR funaddr;
1020 int using_gcc;
9f739abd 1021 CORE_ADDR real_pc;
5e548861 1022 struct type *ftype = check_typedef (SYMBOL_TYPE (function));
bd5635a1 1023
e17960fb
JG
1024 if (!target_has_execution)
1025 noprocess();
1026
bd5635a1
RP
1027 save_inferior_status (&inf_status, 1);
1028 old_chain = make_cleanup (restore_inferior_status, &inf_status);
1029
1030 /* PUSH_DUMMY_FRAME is responsible for saving the inferior registers
1031 (and POP_FRAME for restoring them). (At least on most machines)
1032 they are saved on the stack in the inferior. */
1033 PUSH_DUMMY_FRAME;
1034
54023465 1035 old_sp = sp = read_sp ();
bd5635a1
RP
1036
1037#if 1 INNER_THAN 2 /* Stack grows down */
9ed8604f 1038 sp -= sizeof dummy1;
bd5635a1
RP
1039 start_sp = sp;
1040#else /* Stack grows up */
1041 start_sp = sp;
9ed8604f 1042 sp += sizeof dummy1;
bd5635a1
RP
1043#endif
1044
1045 funaddr = find_function_addr (function, &value_type);
5e548861 1046 CHECK_TYPEDEF (value_type);
bd5635a1
RP
1047
1048 {
1049 struct block *b = block_for_pc (funaddr);
1050 /* If compiled without -g, assume GCC. */
f7a69ed7 1051 using_gcc = b == NULL ? 0 : BLOCK_GCC_COMPILED (b);
bd5635a1
RP
1052 }
1053
1054 /* Are we returning a value using a structure return or a normal
1055 value return? */
1056
1057 struct_return = using_struct_return (function, funaddr, value_type,
1058 using_gcc);
1059
1060 /* Create a call sequence customized for this function
1061 and the number of arguments for it. */
67e9b3b3
PS
1062 for (i = 0; i < sizeof dummy / sizeof (dummy[0]); i++)
1063 store_unsigned_integer (&dummy1[i * REGISTER_SIZE],
1064 REGISTER_SIZE,
34df79fc 1065 (unsigned LONGEST)dummy[i]);
9f739abd
SG
1066
1067#ifdef GDB_TARGET_IS_HPPA
b5728692
SG
1068 real_pc = FIX_CALL_DUMMY (dummy1, start_sp, funaddr, nargs, args,
1069 value_type, using_gcc);
9f739abd 1070#else
bd5635a1
RP
1071 FIX_CALL_DUMMY (dummy1, start_sp, funaddr, nargs, args,
1072 value_type, using_gcc);
9f739abd
SG
1073 real_pc = start_sp;
1074#endif
bd5635a1
RP
1075
1076#if CALL_DUMMY_LOCATION == ON_STACK
9ed8604f 1077 write_memory (start_sp, (char *)dummy1, sizeof dummy1);
cef4c2e7 1078#endif /* On stack. */
bd5635a1 1079
bd5635a1
RP
1080#if CALL_DUMMY_LOCATION == BEFORE_TEXT_END
1081 /* Convex Unix prohibits executing in the stack segment. */
1082 /* Hope there is empty room at the top of the text segment. */
1083 {
84d82b1c 1084 extern CORE_ADDR text_end;
bd5635a1
RP
1085 static checked = 0;
1086 if (!checked)
9ed8604f 1087 for (start_sp = text_end - sizeof dummy1; start_sp < text_end; ++start_sp)
bd5635a1
RP
1088 if (read_memory_integer (start_sp, 1) != 0)
1089 error ("text segment full -- no place to put call");
1090 checked = 1;
1091 sp = old_sp;
9ed8604f
PS
1092 real_pc = text_end - sizeof dummy1;
1093 write_memory (real_pc, (char *)dummy1, sizeof dummy1);
bd5635a1 1094 }
cef4c2e7
PS
1095#endif /* Before text_end. */
1096
1097#if CALL_DUMMY_LOCATION == AFTER_TEXT_END
bd5635a1 1098 {
84d82b1c 1099 extern CORE_ADDR text_end;
bd5635a1
RP
1100 int errcode;
1101 sp = old_sp;
30d20d15 1102 real_pc = text_end;
9ed8604f 1103 errcode = target_write_memory (real_pc, (char *)dummy1, sizeof dummy1);
bd5635a1
RP
1104 if (errcode != 0)
1105 error ("Cannot write text segment -- call_function failed");
1106 }
1107#endif /* After text_end. */
cef4c2e7
PS
1108
1109#if CALL_DUMMY_LOCATION == AT_ENTRY_POINT
1110 real_pc = funaddr;
1111#endif /* At entry point. */
bd5635a1
RP
1112
1113#ifdef lint
1114 sp = old_sp; /* It really is used, for some ifdef's... */
1115#endif
1116
f7a69ed7
PB
1117 if (nargs < TYPE_NFIELDS (ftype))
1118 error ("too few arguments in function call");
1119
5222ca60
PB
1120 for (i = nargs - 1; i >= 0; i--)
1121 {
1122 struct type *param_type;
1123 if (TYPE_NFIELDS (ftype) > i)
1124 param_type = TYPE_FIELD_TYPE (ftype, i);
1125 else
1126 param_type = 0;
1127 args[i] = value_arg_coerce (args[i], param_type);
1128 }
1129
bd5635a1
RP
1130#if defined (REG_STRUCT_HAS_ADDR)
1131 {
a91a6192 1132 /* This is a machine like the sparc, where we may need to pass a pointer
bd5635a1 1133 to the structure, not the structure itself. */
a91a6192 1134 for (i = nargs - 1; i >= 0; i--)
5e548861
PB
1135 {
1136 struct type *arg_type = check_typedef (VALUE_TYPE (args[i]));
1137 if ((TYPE_CODE (arg_type) == TYPE_CODE_STRUCT
1138 || TYPE_CODE (arg_type) == TYPE_CODE_UNION
1139 || TYPE_CODE (arg_type) == TYPE_CODE_ARRAY
34cfa2da
PB
1140 || TYPE_CODE (arg_type) == TYPE_CODE_STRING
1141 || TYPE_CODE (arg_type) == TYPE_CODE_BITSTRING
1142 || TYPE_CODE (arg_type) == TYPE_CODE_SET)
5e548861
PB
1143 && REG_STRUCT_HAS_ADDR (using_gcc, arg_type))
1144 {
1145 CORE_ADDR addr;
1146 int len = TYPE_LENGTH (arg_type);
f7a69ed7 1147#ifdef STACK_ALIGN
5e548861 1148 int aligned_len = STACK_ALIGN (len);
f7a69ed7 1149#else
5e548861 1150 int aligned_len = len;
f7a69ed7 1151#endif
bd5635a1 1152#if !(1 INNER_THAN 2)
5e548861
PB
1153 /* The stack grows up, so the address of the thing we push
1154 is the stack pointer before we push it. */
1155 addr = sp;
f7a69ed7 1156#else
5e548861 1157 sp -= aligned_len;
bd5635a1 1158#endif
5e548861
PB
1159 /* Push the structure. */
1160 write_memory (sp, VALUE_CONTENTS (args[i]), len);
bd5635a1 1161#if 1 INNER_THAN 2
5e548861
PB
1162 /* The stack grows down, so the address of the thing we push
1163 is the stack pointer after we push it. */
1164 addr = sp;
f7a69ed7 1165#else
5e548861 1166 sp += aligned_len;
bd5635a1 1167#endif
5e548861
PB
1168 /* The value we're going to pass is the address of the thing
1169 we just pushed. */
1170 args[i] = value_from_longest (lookup_pointer_type (value_type),
1171 (LONGEST) addr);
1172 }
1173 }
bd5635a1
RP
1174 }
1175#endif /* REG_STRUCT_HAS_ADDR. */
1176
f7a69ed7
PB
1177 /* Reserve space for the return structure to be written on the
1178 stack, if necessary */
1179
1180 if (struct_return)
1181 {
1182 int len = TYPE_LENGTH (value_type);
1183#ifdef STACK_ALIGN
1184 len = STACK_ALIGN (len);
1185#endif
1186#if 1 INNER_THAN 2
1187 sp -= len;
1188 struct_addr = sp;
1189#else
1190 struct_addr = sp;
1191 sp += len;
1192#endif
1193 }
1194
1195#ifdef STACK_ALIGN
1196 /* If stack grows down, we must leave a hole at the top. */
1197 {
1198 int len = 0;
1199
1200 for (i = nargs - 1; i >= 0; i--)
1201 len += TYPE_LENGTH (VALUE_TYPE (args[i]));
1202#ifdef CALL_DUMMY_STACK_ADJUST
1203 len += CALL_DUMMY_STACK_ADJUST;
1204#endif
1205#if 1 INNER_THAN 2
1206 sp -= STACK_ALIGN (len) - len;
1207#else
1208 sp += STACK_ALIGN (len) - len;
1209#endif
1210 }
1211#endif /* STACK_ALIGN */
1212
bd5635a1
RP
1213#ifdef PUSH_ARGUMENTS
1214 PUSH_ARGUMENTS(nargs, args, sp, struct_return, struct_addr);
1215#else /* !PUSH_ARGUMENTS */
1216 for (i = nargs - 1; i >= 0; i--)
5222ca60 1217 sp = value_push (sp, args[i]);
bd5635a1
RP
1218#endif /* !PUSH_ARGUMENTS */
1219
1220#ifdef CALL_DUMMY_STACK_ADJUST
1221#if 1 INNER_THAN 2
1222 sp -= CALL_DUMMY_STACK_ADJUST;
1223#else
1224 sp += CALL_DUMMY_STACK_ADJUST;
1225#endif
1226#endif /* CALL_DUMMY_STACK_ADJUST */
1227
1228 /* Store the address at which the structure is supposed to be
1229 written. Note that this (and the code which reserved the space
1230 above) assumes that gcc was used to compile this function. Since
1231 it doesn't cost us anything but space and if the function is pcc
1232 it will ignore this value, we will make that assumption.
1233
1234 Also note that on some machines (like the sparc) pcc uses a
1235 convention like gcc's. */
1236
1237 if (struct_return)
1238 STORE_STRUCT_RETURN (struct_addr, sp);
1239
1240 /* Write the stack pointer. This is here because the statements above
1241 might fool with it. On SPARC, this write also stores the register
1242 window into the right place in the new stack frame, which otherwise
5632cd56 1243 wouldn't happen. (See store_inferior_registers in sparc-nat.c.) */
54023465 1244 write_sp (sp);
bd5635a1 1245
bd5635a1
RP
1246 {
1247 char retbuf[REGISTER_BYTES];
54023465
JK
1248 char *name;
1249 struct symbol *symbol;
1250
1251 name = NULL;
1252 symbol = find_pc_function (funaddr);
1253 if (symbol)
1254 {
1255 name = SYMBOL_SOURCE_NAME (symbol);
1256 }
1257 else
1258 {
1259 /* Try the minimal symbols. */
1260 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (funaddr);
1261
1262 if (msymbol)
1263 {
1264 name = SYMBOL_SOURCE_NAME (msymbol);
1265 }
1266 }
1267 if (name == NULL)
1268 {
1269 char format[80];
1270 sprintf (format, "at %s", local_hex_format ());
1271 name = alloca (80);
30974778 1272 /* FIXME-32x64: assumes funaddr fits in a long. */
cef4c2e7 1273 sprintf (name, format, (unsigned long) funaddr);
54023465 1274 }
bd5635a1
RP
1275
1276 /* Execute the stack dummy routine, calling FUNCTION.
1277 When it is done, discard the empty frame
1278 after storing the contents of all regs into retbuf. */
860a1754
JK
1279 if (run_stack_dummy (real_pc + CALL_DUMMY_START_OFFSET, retbuf))
1280 {
1281 /* We stopped somewhere besides the call dummy. */
1282
1283 /* If we did the cleanups, we would print a spurious error message
1284 (Unable to restore previously selected frame), would write the
1285 registers from the inf_status (which is wrong), and would do other
1286 wrong things (like set stop_bpstat to the wrong thing). */
1287 discard_cleanups (old_chain);
1288 /* Prevent memory leak. */
30d20d15 1289 bpstat_clear (&inf_status.stop_bpstat);
860a1754
JK
1290
1291 /* The following error message used to say "The expression
1292 which contained the function call has been discarded." It
1293 is a hard concept to explain in a few words. Ideally, GDB
1294 would be able to resume evaluation of the expression when
1295 the function finally is done executing. Perhaps someday
1296 this will be implemented (it would not be easy). */
1297
1298 /* FIXME: Insert a bunch of wrap_here; name can be very long if it's
1299 a C++ name with arguments and stuff. */
1300 error ("\
1301The program being debugged stopped while in a function called from GDB.\n\
1302When the function (%s) is done executing, GDB will silently\n\
1303stop (instead of continuing to evaluate the expression containing\n\
1304the function call).", name);
1305 }
bd5635a1
RP
1306
1307 do_cleanups (old_chain);
1308
860a1754 1309 /* Figure out the value returned by the function. */
bd5635a1
RP
1310 return value_being_returned (value_type, retbuf, struct_return);
1311 }
1312}
1313#else /* no CALL_DUMMY. */
a91a6192 1314value_ptr
bd5635a1 1315call_function_by_hand (function, nargs, args)
a91a6192 1316 value_ptr function;
bd5635a1 1317 int nargs;
a91a6192 1318 value_ptr *args;
bd5635a1
RP
1319{
1320 error ("Cannot invoke functions on this machine.");
1321}
1322#endif /* no CALL_DUMMY. */
a163ddec 1323
bd5635a1 1324\f
a163ddec
MT
1325/* Create a value for an array by allocating space in the inferior, copying
1326 the data into that space, and then setting up an array value.
1327
1328 The array bounds are set from LOWBOUND and HIGHBOUND, and the array is
1329 populated from the values passed in ELEMVEC.
1330
1331 The element type of the array is inherited from the type of the
1332 first element, and all elements must have the same size (though we
1333 don't currently enforce any restriction on their types). */
bd5635a1 1334
a91a6192 1335value_ptr
a163ddec
MT
1336value_array (lowbound, highbound, elemvec)
1337 int lowbound;
1338 int highbound;
a91a6192 1339 value_ptr *elemvec;
bd5635a1 1340{
a163ddec
MT
1341 int nelem;
1342 int idx;
1343 int typelength;
a91a6192 1344 value_ptr val;
a163ddec
MT
1345 struct type *rangetype;
1346 struct type *arraytype;
1347 CORE_ADDR addr;
bd5635a1 1348
a163ddec
MT
1349 /* Validate that the bounds are reasonable and that each of the elements
1350 have the same size. */
bd5635a1 1351
a163ddec
MT
1352 nelem = highbound - lowbound + 1;
1353 if (nelem <= 0)
bd5635a1 1354 {
a163ddec 1355 error ("bad array bounds (%d, %d)", lowbound, highbound);
bd5635a1 1356 }
a163ddec 1357 typelength = TYPE_LENGTH (VALUE_TYPE (elemvec[0]));
5e548861 1358 for (idx = 1; idx < nelem; idx++)
bd5635a1 1359 {
a163ddec
MT
1360 if (TYPE_LENGTH (VALUE_TYPE (elemvec[idx])) != typelength)
1361 {
1362 error ("array elements must all be the same size");
1363 }
bd5635a1
RP
1364 }
1365
a163ddec
MT
1366 /* Allocate space to store the array in the inferior, and then initialize
1367 it by copying in each element. FIXME: Is it worth it to create a
1368 local buffer in which to collect each value and then write all the
1369 bytes in one operation? */
1370
1371 addr = allocate_space_in_inferior (nelem * typelength);
1372 for (idx = 0; idx < nelem; idx++)
1373 {
1374 write_memory (addr + (idx * typelength), VALUE_CONTENTS (elemvec[idx]),
1375 typelength);
1376 }
1377
1378 /* Create the array type and set up an array value to be evaluated lazily. */
1379
1380 rangetype = create_range_type ((struct type *) NULL, builtin_type_int,
1381 lowbound, highbound);
1382 arraytype = create_array_type ((struct type *) NULL,
1383 VALUE_TYPE (elemvec[0]), rangetype);
1384 val = value_at_lazy (arraytype, addr);
1385 return (val);
1386}
1387
1388/* Create a value for a string constant by allocating space in the inferior,
1389 copying the data into that space, and returning the address with type
1390 TYPE_CODE_STRING. PTR points to the string constant data; LEN is number
1391 of characters.
1392 Note that string types are like array of char types with a lower bound of
1393 zero and an upper bound of LEN - 1. Also note that the string may contain
1394 embedded null bytes. */
1395
a91a6192 1396value_ptr
a163ddec
MT
1397value_string (ptr, len)
1398 char *ptr;
1399 int len;
1400{
a91a6192 1401 value_ptr val;
5222ca60 1402 int lowbound = current_language->string_lower_bound;
f91a9e05 1403 struct type *rangetype = create_range_type ((struct type *) NULL,
5222ca60
PB
1404 builtin_type_int,
1405 lowbound, len + lowbound - 1);
f91a9e05
PB
1406 struct type *stringtype
1407 = create_string_type ((struct type *) NULL, rangetype);
a163ddec
MT
1408 CORE_ADDR addr;
1409
f91a9e05
PB
1410 if (current_language->c_style_arrays == 0)
1411 {
1412 val = allocate_value (stringtype);
1413 memcpy (VALUE_CONTENTS_RAW (val), ptr, len);
1414 return val;
1415 }
1416
1417
a163ddec
MT
1418 /* Allocate space to store the string in the inferior, and then
1419 copy LEN bytes from PTR in gdb to that address in the inferior. */
1420
1421 addr = allocate_space_in_inferior (len);
1422 write_memory (addr, ptr, len);
1423
a163ddec
MT
1424 val = value_at_lazy (stringtype, addr);
1425 return (val);
bd5635a1 1426}
6d34c236
PB
1427
1428value_ptr
1429value_bitstring (ptr, len)
1430 char *ptr;
1431 int len;
1432{
1433 value_ptr val;
1434 struct type *domain_type = create_range_type (NULL, builtin_type_int,
1435 0, len - 1);
1436 struct type *type = create_set_type ((struct type*) NULL, domain_type);
1437 TYPE_CODE (type) = TYPE_CODE_BITSTRING;
1438 val = allocate_value (type);
b4680522 1439 memcpy (VALUE_CONTENTS_RAW (val), ptr, TYPE_LENGTH (type));
6d34c236
PB
1440 return val;
1441}
bd5635a1 1442\f
479fdd26
JK
1443/* See if we can pass arguments in T2 to a function which takes arguments
1444 of types T1. Both t1 and t2 are NULL-terminated vectors. If some
1445 arguments need coercion of some sort, then the coerced values are written
1446 into T2. Return value is 0 if the arguments could be matched, or the
1447 position at which they differ if not.
a163ddec
MT
1448
1449 STATICP is nonzero if the T1 argument list came from a
1450 static member function.
1451
1452 For non-static member functions, we ignore the first argument,
1453 which is the type of the instance variable. This is because we want
1454 to handle calls with objects from derived classes. This is not
1455 entirely correct: we should actually check to make sure that a
1456 requested operation is type secure, shouldn't we? FIXME. */
1457
1458static int
1459typecmp (staticp, t1, t2)
1460 int staticp;
1461 struct type *t1[];
a91a6192 1462 value_ptr t2[];
a163ddec
MT
1463{
1464 int i;
1465
1466 if (t2 == 0)
1467 return 1;
1468 if (staticp && t1 == 0)
1469 return t2[1] != 0;
1470 if (t1 == 0)
1471 return 1;
1472 if (TYPE_CODE (t1[0]) == TYPE_CODE_VOID) return 0;
1473 if (t1[!staticp] == 0) return 0;
1474 for (i = !staticp; t1[i] && TYPE_CODE (t1[i]) != TYPE_CODE_VOID; i++)
1475 {
40620258 1476 struct type *tt1, *tt2;
a163ddec
MT
1477 if (! t2[i])
1478 return i+1;
5e548861
PB
1479 tt1 = check_typedef (t1[i]);
1480 tt2 = check_typedef (VALUE_TYPE(t2[i]));
40620258 1481 if (TYPE_CODE (tt1) == TYPE_CODE_REF
479fdd26 1482 /* We should be doing hairy argument matching, as below. */
5e548861 1483 && (TYPE_CODE (check_typedef (TYPE_TARGET_TYPE (tt1))) == TYPE_CODE (tt2)))
479fdd26 1484 {
09af5868 1485 if (TYPE_CODE (tt2) == TYPE_CODE_ARRAY)
2b576293
C
1486 t2[i] = value_coerce_array (t2[i]);
1487 else
1488 t2[i] = value_addr (t2[i]);
479fdd26
JK
1489 continue;
1490 }
1491
40620258 1492 while (TYPE_CODE (tt1) == TYPE_CODE_PTR
5e548861
PB
1493 && ( TYPE_CODE (tt2) == TYPE_CODE_ARRAY
1494 || TYPE_CODE (tt2) == TYPE_CODE_PTR))
40620258 1495 {
5e548861
PB
1496 tt1 = check_typedef (TYPE_TARGET_TYPE(tt1));
1497 tt2 = check_typedef (TYPE_TARGET_TYPE(tt2));
40620258
KH
1498 }
1499 if (TYPE_CODE(tt1) == TYPE_CODE(tt2)) continue;
1500 /* Array to pointer is a `trivial conversion' according to the ARM. */
479fdd26
JK
1501
1502 /* We should be doing much hairier argument matching (see section 13.2
1503 of the ARM), but as a quick kludge, just check for the same type
1504 code. */
a163ddec
MT
1505 if (TYPE_CODE (t1[i]) != TYPE_CODE (VALUE_TYPE (t2[i])))
1506 return i+1;
1507 }
1508 if (!t1[i]) return 0;
1509 return t2[i] ? i+1 : 0;
1510}
1511
bd5635a1
RP
1512/* Helper function used by value_struct_elt to recurse through baseclasses.
1513 Look for a field NAME in ARG1. Adjust the address of ARG1 by OFFSET bytes,
2a5ec41d 1514 and search in it assuming it has (class) type TYPE.
d3bab255
JK
1515 If found, return value, else return NULL.
1516
1517 If LOOKING_FOR_BASECLASS, then instead of looking for struct fields,
1518 look for a baseclass named NAME. */
bd5635a1 1519
a91a6192 1520static value_ptr
d3bab255 1521search_struct_field (name, arg1, offset, type, looking_for_baseclass)
bd5635a1 1522 char *name;
a91a6192 1523 register value_ptr arg1;
bd5635a1
RP
1524 int offset;
1525 register struct type *type;
d3bab255 1526 int looking_for_baseclass;
bd5635a1
RP
1527{
1528 int i;
1529
5e548861 1530 CHECK_TYPEDEF (type);
bd5635a1 1531
d3bab255
JK
1532 if (! looking_for_baseclass)
1533 for (i = TYPE_NFIELDS (type) - 1; i >= TYPE_N_BASECLASSES (type); i--)
1534 {
1535 char *t_field_name = TYPE_FIELD_NAME (type, i);
1536
2e4964ad 1537 if (t_field_name && STREQ (t_field_name, name))
d3bab255 1538 {
a91a6192 1539 value_ptr v;
01be6913
PB
1540 if (TYPE_FIELD_STATIC (type, i))
1541 {
1542 char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (type, i);
1543 struct symbol *sym =
2e4964ad
FF
1544 lookup_symbol (phys_name, 0, VAR_NAMESPACE, 0, NULL);
1545 if (sym == NULL)
1546 error ("Internal error: could not find physical static variable named %s",
1547 phys_name);
01be6913
PB
1548 v = value_at (TYPE_FIELD_TYPE (type, i),
1549 (CORE_ADDR)SYMBOL_BLOCK_VALUE (sym));
1550 }
1551 else
1552 v = value_primitive_field (arg1, offset, i, type);
d3bab255
JK
1553 if (v == 0)
1554 error("there is no field named %s", name);
1555 return v;
1556 }
37d190e0 1557
4c2260aa
PB
1558 if (t_field_name
1559 && (t_field_name[0] == '\0'
1560 || (TYPE_CODE (type) == TYPE_CODE_UNION
1561 && STREQ (t_field_name, "else"))))
6d34c236 1562 {
37d190e0
PB
1563 struct type *field_type = TYPE_FIELD_TYPE (type, i);
1564 if (TYPE_CODE (field_type) == TYPE_CODE_UNION
1565 || TYPE_CODE (field_type) == TYPE_CODE_STRUCT)
1566 {
1567 /* Look for a match through the fields of an anonymous union,
1568 or anonymous struct. C++ provides anonymous unions.
1569
1570 In the GNU Chill implementation of variant record types,
1571 each <alternative field> has an (anonymous) union type,
1572 each member of the union represents a <variant alternative>.
1573 Each <variant alternative> is represented as a struct,
1574 with a member for each <variant field>. */
1575
1576 value_ptr v;
1577 int new_offset = offset;
1578
1579 /* This is pretty gross. In G++, the offset in an anonymous
1580 union is relative to the beginning of the enclosing struct.
1581 In the GNU Chill implementation of variant records,
1582 the bitpos is zero in an anonymous union field, so we
1583 have to add the offset of the union here. */
1584 if (TYPE_CODE (field_type) == TYPE_CODE_STRUCT
1585 || (TYPE_NFIELDS (field_type) > 0
1586 && TYPE_FIELD_BITPOS (field_type, 0) == 0))
1587 new_offset += TYPE_FIELD_BITPOS (type, i) / 8;
1588
1589 v = search_struct_field (name, arg1, new_offset, field_type,
1590 looking_for_baseclass);
1591 if (v)
1592 return v;
1593 }
6d34c236 1594 }
d3bab255 1595 }
bd5635a1
RP
1596
1597 for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
1598 {
a91a6192 1599 value_ptr v;
5e548861 1600 struct type *basetype = check_typedef (TYPE_BASECLASS (type, i));
bd5635a1 1601 /* If we are looking for baseclasses, this is what we get when we
54023465
JK
1602 hit them. But it could happen that the base part's member name
1603 is not yet filled in. */
d3bab255 1604 int found_baseclass = (looking_for_baseclass
54023465 1605 && TYPE_BASECLASS_NAME (type, i) != NULL
2e4964ad 1606 && STREQ (name, TYPE_BASECLASS_NAME (type, i)));
bd5635a1
RP
1607
1608 if (BASETYPE_VIA_VIRTUAL (type, i))
1609 {
5e548861
PB
1610 int boffset = VALUE_OFFSET (arg1) + offset;
1611 boffset = baseclass_offset (type, i,
1612 VALUE_CONTENTS (arg1) + boffset,
1613 VALUE_ADDRESS (arg1) + boffset);
1614 if (boffset == -1)
bd5635a1
RP
1615 error ("virtual baseclass botch");
1616 if (found_baseclass)
5e548861
PB
1617 {
1618 value_ptr v2 = allocate_value (basetype);
1619 VALUE_LVAL (v2) = VALUE_LVAL (arg1);
1620 VALUE_ADDRESS (v2) = VALUE_ADDRESS (arg1);
1621 VALUE_OFFSET (v2) = VALUE_OFFSET (arg1) + offset + boffset;
1622 if (VALUE_LAZY (arg1))
1623 VALUE_LAZY (v2) = 1;
1624 else
1625 memcpy (VALUE_CONTENTS_RAW (v2),
1626 VALUE_CONTENTS_RAW (arg1) + offset + boffset,
1627 TYPE_LENGTH (basetype));
1628 return v2;
1629 }
1630 v = search_struct_field (name, arg1, offset + boffset,
1631 TYPE_BASECLASS (type, i),
d3bab255 1632 looking_for_baseclass);
bd5635a1 1633 }
01be6913 1634 else if (found_baseclass)
bd5635a1
RP
1635 v = value_primitive_field (arg1, offset, i, type);
1636 else
1637 v = search_struct_field (name, arg1,
1638 offset + TYPE_BASECLASS_BITPOS (type, i) / 8,
5e548861 1639 basetype, looking_for_baseclass);
bd5635a1
RP
1640 if (v) return v;
1641 }
1642 return NULL;
1643}
1644
1645/* Helper function used by value_struct_elt to recurse through baseclasses.
1646 Look for a field NAME in ARG1. Adjust the address of ARG1 by OFFSET bytes,
2a5ec41d 1647 and search in it assuming it has (class) type TYPE.
cef4c2e7 1648 If found, return value, else if name matched and args not return (value)-1,
5b5c6d94 1649 else return NULL. */
bd5635a1 1650
a91a6192 1651static value_ptr
bac89d6c 1652search_struct_method (name, arg1p, args, offset, static_memfuncp, type)
bd5635a1 1653 char *name;
a91a6192 1654 register value_ptr *arg1p, *args;
bd5635a1
RP
1655 int offset, *static_memfuncp;
1656 register struct type *type;
1657{
1658 int i;
a91a6192 1659 value_ptr v;
67e9b3b3 1660 int name_matched = 0;
6ebc9cdd 1661 char dem_opname[64];
bd5635a1 1662
5e548861 1663 CHECK_TYPEDEF (type);
bd5635a1
RP
1664 for (i = TYPE_NFN_FIELDS (type) - 1; i >= 0; i--)
1665 {
1666 char *t_field_name = TYPE_FN_FIELDLIST_NAME (type, i);
6ebc9cdd
KH
1667 if (strncmp(t_field_name, "__", 2)==0 ||
1668 strncmp(t_field_name, "op", 2)==0 ||
1669 strncmp(t_field_name, "type", 4)==0 )
1670 {
1671 if (cplus_demangle_opname(t_field_name, dem_opname, DMGL_ANSI))
1672 t_field_name = dem_opname;
1673 else if (cplus_demangle_opname(t_field_name, dem_opname, 0))
1674 t_field_name = dem_opname;
1675 }
2e4964ad 1676 if (t_field_name && STREQ (t_field_name, name))
bd5635a1 1677 {
d3bab255 1678 int j = TYPE_FN_FIELDLIST_LENGTH (type, i) - 1;
bd5635a1 1679 struct fn_field *f = TYPE_FN_FIELDLIST1 (type, i);
5b5c6d94 1680 name_matched = 1;
bd5635a1 1681
d3bab255
JK
1682 if (j > 0 && args == 0)
1683 error ("cannot resolve overloaded method `%s'", name);
1684 while (j >= 0)
bd5635a1 1685 {
8e9a3f3b 1686 if (TYPE_FN_FIELD_STUB (f, j))
bd5635a1
RP
1687 check_stub_method (type, i, j);
1688 if (!typecmp (TYPE_FN_FIELD_STATIC_P (f, j),
1689 TYPE_FN_FIELD_ARGS (f, j), args))
1690 {
1691 if (TYPE_FN_FIELD_VIRTUAL_P (f, j))
a91a6192 1692 return value_virtual_fn_field (arg1p, f, j, type, offset);
bd5635a1
RP
1693 if (TYPE_FN_FIELD_STATIC_P (f, j) && static_memfuncp)
1694 *static_memfuncp = 1;
a91a6192
SS
1695 v = value_fn_field (arg1p, f, j, type, offset);
1696 if (v != NULL) return v;
bd5635a1 1697 }
d3bab255 1698 j--;
bd5635a1
RP
1699 }
1700 }
1701 }
1702
1703 for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
1704 {
01be6913 1705 int base_offset;
bd5635a1
RP
1706
1707 if (BASETYPE_VIA_VIRTUAL (type, i))
1708 {
5e548861
PB
1709 base_offset = VALUE_OFFSET (*arg1p) + offset;
1710 base_offset =
1711 baseclass_offset (type, i,
1712 VALUE_CONTENTS (*arg1p) + base_offset,
1713 VALUE_ADDRESS (*arg1p) + base_offset);
bac89d6c 1714 if (base_offset == -1)
bd5635a1 1715 error ("virtual baseclass botch");
bd5635a1 1716 }
01be6913
PB
1717 else
1718 {
01be6913
PB
1719 base_offset = TYPE_BASECLASS_BITPOS (type, i) / 8;
1720 }
bac89d6c 1721 v = search_struct_method (name, arg1p, args, base_offset + offset,
bd5635a1 1722 static_memfuncp, TYPE_BASECLASS (type, i));
a91a6192 1723 if (v == (value_ptr) -1)
5b5c6d94
KH
1724 {
1725 name_matched = 1;
1726 }
1727 else if (v)
bac89d6c
FF
1728 {
1729/* FIXME-bothner: Why is this commented out? Why is it here? */
1730/* *arg1p = arg1_tmp;*/
1731 return v;
1732 }
bd5635a1 1733 }
a91a6192 1734 if (name_matched) return (value_ptr) -1;
5b5c6d94 1735 else return NULL;
bd5635a1
RP
1736}
1737
1738/* Given *ARGP, a value of type (pointer to a)* structure/union,
1739 extract the component named NAME from the ultimate target structure/union
1740 and return it as a value with its appropriate type.
1741 ERR is used in the error message if *ARGP's type is wrong.
1742
1743 C++: ARGS is a list of argument types to aid in the selection of
1744 an appropriate method. Also, handle derived types.
1745
1746 STATIC_MEMFUNCP, if non-NULL, points to a caller-supplied location
1747 where the truthvalue of whether the function that was resolved was
1748 a static member function or not is stored.
1749
1750 ERR is an error message to be printed in case the field is not found. */
1751
a91a6192 1752value_ptr
bd5635a1 1753value_struct_elt (argp, args, name, static_memfuncp, err)
a91a6192 1754 register value_ptr *argp, *args;
bd5635a1
RP
1755 char *name;
1756 int *static_memfuncp;
1757 char *err;
1758{
1759 register struct type *t;
a91a6192 1760 value_ptr v;
bd5635a1
RP
1761
1762 COERCE_ARRAY (*argp);
1763
5e548861 1764 t = check_typedef (VALUE_TYPE (*argp));
bd5635a1
RP
1765
1766 /* Follow pointers until we get to a non-pointer. */
1767
1768 while (TYPE_CODE (t) == TYPE_CODE_PTR || TYPE_CODE (t) == TYPE_CODE_REF)
1769 {
bd5635a1 1770 *argp = value_ind (*argp);
f2ebc25f
JK
1771 /* Don't coerce fn pointer to fn and then back again! */
1772 if (TYPE_CODE (VALUE_TYPE (*argp)) != TYPE_CODE_FUNC)
1773 COERCE_ARRAY (*argp);
5e548861 1774 t = check_typedef (VALUE_TYPE (*argp));
bd5635a1
RP
1775 }
1776
1777 if (TYPE_CODE (t) == TYPE_CODE_MEMBER)
1778 error ("not implemented: member type in value_struct_elt");
1779
2a5ec41d 1780 if ( TYPE_CODE (t) != TYPE_CODE_STRUCT
bd5635a1
RP
1781 && TYPE_CODE (t) != TYPE_CODE_UNION)
1782 error ("Attempt to extract a component of a value that is not a %s.", err);
1783
1784 /* Assume it's not, unless we see that it is. */
1785 if (static_memfuncp)
1786 *static_memfuncp =0;
1787
1788 if (!args)
1789 {
1790 /* if there are no arguments ...do this... */
1791
d3bab255 1792 /* Try as a field first, because if we succeed, there
bd5635a1 1793 is less work to be done. */
d3bab255 1794 v = search_struct_field (name, *argp, 0, t, 0);
bd5635a1
RP
1795 if (v)
1796 return v;
1797
1798 /* C++: If it was not found as a data field, then try to
1799 return it as a pointer to a method. */
1800
1801 if (destructor_name_p (name, t))
1802 error ("Cannot get value of destructor");
1803
bac89d6c 1804 v = search_struct_method (name, argp, args, 0, static_memfuncp, t);
bd5635a1 1805
a91a6192 1806 if (v == (value_ptr) -1)
67e9b3b3
PS
1807 error ("Cannot take address of a method");
1808 else if (v == 0)
bd5635a1
RP
1809 {
1810 if (TYPE_NFN_FIELDS (t))
1811 error ("There is no member or method named %s.", name);
1812 else
1813 error ("There is no member named %s.", name);
1814 }
1815 return v;
1816 }
1817
1818 if (destructor_name_p (name, t))
1819 {
1820 if (!args[1])
1821 {
1822 /* destructors are a special case. */
a91a6192
SS
1823 v = value_fn_field (NULL, TYPE_FN_FIELDLIST1 (t, 0),
1824 TYPE_FN_FIELDLIST_LENGTH (t, 0), 0, 0);
40620258
KH
1825 if (!v) error("could not find destructor function named %s.", name);
1826 else return v;
bd5635a1
RP
1827 }
1828 else
1829 {
1830 error ("destructor should not have any argument");
1831 }
1832 }
1833 else
bac89d6c 1834 v = search_struct_method (name, argp, args, 0, static_memfuncp, t);
bd5635a1 1835
a91a6192 1836 if (v == (value_ptr) -1)
5b5c6d94
KH
1837 {
1838 error("Argument list of %s mismatch with component in the structure.", name);
1839 }
1840 else if (v == 0)
bd5635a1
RP
1841 {
1842 /* See if user tried to invoke data as function. If so,
1843 hand it back. If it's not callable (i.e., a pointer to function),
1844 gdb should give an error. */
d3bab255 1845 v = search_struct_field (name, *argp, 0, t, 0);
bd5635a1
RP
1846 }
1847
1848 if (!v)
1849 error ("Structure has no component named %s.", name);
1850 return v;
1851}
1852
1853/* C++: return 1 is NAME is a legitimate name for the destructor
1854 of type TYPE. If TYPE does not have a destructor, or
1855 if NAME is inappropriate for TYPE, an error is signaled. */
1856int
1857destructor_name_p (name, type)
7919c3ed
JG
1858 const char *name;
1859 const struct type *type;
bd5635a1
RP
1860{
1861 /* destructors are a special case. */
1862
1863 if (name[0] == '~')
1864 {
1865 char *dname = type_name_no_tag (type);
6d34c236
PB
1866 char *cp = strchr (dname, '<');
1867 int len;
1868
1869 /* Do not compare the template part for template classes. */
1870 if (cp == NULL)
1871 len = strlen (dname);
1872 else
1873 len = cp - dname;
1874 if (strlen (name + 1) != len || !STREQN (dname, name + 1, len))
bd5635a1
RP
1875 error ("name of destructor must equal name of class");
1876 else
1877 return 1;
1878 }
1879 return 0;
1880}
1881
1882/* Helper function for check_field: Given TYPE, a structure/union,
1883 return 1 if the component named NAME from the ultimate
1884 target structure/union is defined, otherwise, return 0. */
1885
1886static int
1887check_field_in (type, name)
1888 register struct type *type;
01be6913 1889 const char *name;
bd5635a1
RP
1890{
1891 register int i;
1892
1893 for (i = TYPE_NFIELDS (type) - 1; i >= TYPE_N_BASECLASSES (type); i--)
1894 {
1895 char *t_field_name = TYPE_FIELD_NAME (type, i);
2e4964ad 1896 if (t_field_name && STREQ (t_field_name, name))
bd5635a1
RP
1897 return 1;
1898 }
1899
1900 /* C++: If it was not found as a data field, then try to
1901 return it as a pointer to a method. */
1902
1903 /* Destructors are a special case. */
1904 if (destructor_name_p (name, type))
1905 return 1;
1906
1907 for (i = TYPE_NFN_FIELDS (type) - 1; i >= 0; --i)
1908 {
2e4964ad 1909 if (STREQ (TYPE_FN_FIELDLIST_NAME (type, i), name))
bd5635a1
RP
1910 return 1;
1911 }
1912
1913 for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
1914 if (check_field_in (TYPE_BASECLASS (type, i), name))
1915 return 1;
1916
1917 return 0;
1918}
1919
1920
1921/* C++: Given ARG1, a value of type (pointer to a)* structure/union,
1922 return 1 if the component named NAME from the ultimate
1923 target structure/union is defined, otherwise, return 0. */
1924
1925int
1926check_field (arg1, name)
a91a6192 1927 register value_ptr arg1;
7919c3ed 1928 const char *name;
bd5635a1
RP
1929{
1930 register struct type *t;
1931
1932 COERCE_ARRAY (arg1);
1933
1934 t = VALUE_TYPE (arg1);
1935
1936 /* Follow pointers until we get to a non-pointer. */
1937
5e548861
PB
1938 for (;;)
1939 {
1940 CHECK_TYPEDEF (t);
1941 if (TYPE_CODE (t) != TYPE_CODE_PTR && TYPE_CODE (t) != TYPE_CODE_REF)
1942 break;
1943 t = TYPE_TARGET_TYPE (t);
1944 }
bd5635a1
RP
1945
1946 if (TYPE_CODE (t) == TYPE_CODE_MEMBER)
1947 error ("not implemented: member type in check_field");
1948
2a5ec41d 1949 if ( TYPE_CODE (t) != TYPE_CODE_STRUCT
bd5635a1
RP
1950 && TYPE_CODE (t) != TYPE_CODE_UNION)
1951 error ("Internal error: `this' is not an aggregate");
1952
1953 return check_field_in (t, name);
1954}
1955
01be6913 1956/* C++: Given an aggregate type CURTYPE, and a member name NAME,
2a5ec41d 1957 return the address of this member as a "pointer to member"
bd5635a1
RP
1958 type. If INTYPE is non-null, then it will be the type
1959 of the member we are looking for. This will help us resolve
01be6913
PB
1960 "pointers to member functions". This function is used
1961 to resolve user expressions of the form "DOMAIN::NAME". */
bd5635a1 1962
a91a6192 1963value_ptr
51b57ded 1964value_struct_elt_for_reference (domain, offset, curtype, name, intype)
01be6913 1965 struct type *domain, *curtype, *intype;
51b57ded 1966 int offset;
bd5635a1
RP
1967 char *name;
1968{
01be6913 1969 register struct type *t = curtype;
bd5635a1 1970 register int i;
a91a6192 1971 value_ptr v;
bd5635a1 1972
2a5ec41d 1973 if ( TYPE_CODE (t) != TYPE_CODE_STRUCT
bd5635a1 1974 && TYPE_CODE (t) != TYPE_CODE_UNION)
01be6913 1975 error ("Internal error: non-aggregate type to value_struct_elt_for_reference");
bd5635a1 1976
01be6913 1977 for (i = TYPE_NFIELDS (t) - 1; i >= TYPE_N_BASECLASSES (t); i--)
bd5635a1 1978 {
01be6913
PB
1979 char *t_field_name = TYPE_FIELD_NAME (t, i);
1980
2e4964ad 1981 if (t_field_name && STREQ (t_field_name, name))
bd5635a1 1982 {
01be6913 1983 if (TYPE_FIELD_STATIC (t, i))
bd5635a1 1984 {
01be6913
PB
1985 char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (t, i);
1986 struct symbol *sym =
1987 lookup_symbol (phys_name, 0, VAR_NAMESPACE, 0, NULL);
2e4964ad
FF
1988 if (sym == NULL)
1989 error ("Internal error: could not find physical static variable named %s",
01be6913
PB
1990 phys_name);
1991 return value_at (SYMBOL_TYPE (sym),
1992 (CORE_ADDR)SYMBOL_BLOCK_VALUE (sym));
bd5635a1 1993 }
01be6913
PB
1994 if (TYPE_FIELD_PACKED (t, i))
1995 error ("pointers to bitfield members not allowed");
1996
1997 return value_from_longest
1998 (lookup_reference_type (lookup_member_type (TYPE_FIELD_TYPE (t, i),
1999 domain)),
51b57ded 2000 offset + (LONGEST) (TYPE_FIELD_BITPOS (t, i) >> 3));
bd5635a1 2001 }
bd5635a1
RP
2002 }
2003
2004 /* C++: If it was not found as a data field, then try to
2005 return it as a pointer to a method. */
bd5635a1
RP
2006
2007 /* Destructors are a special case. */
2008 if (destructor_name_p (name, t))
2009 {
2a5ec41d 2010 error ("member pointers to destructors not implemented yet");
bd5635a1
RP
2011 }
2012
2013 /* Perform all necessary dereferencing. */
2014 while (intype && TYPE_CODE (intype) == TYPE_CODE_PTR)
2015 intype = TYPE_TARGET_TYPE (intype);
2016
01be6913 2017 for (i = TYPE_NFN_FIELDS (t) - 1; i >= 0; --i)
bd5635a1 2018 {
852b3831
PB
2019 char *t_field_name = TYPE_FN_FIELDLIST_NAME (t, i);
2020 char dem_opname[64];
2021
2022 if (strncmp(t_field_name, "__", 2)==0 ||
2023 strncmp(t_field_name, "op", 2)==0 ||
2024 strncmp(t_field_name, "type", 4)==0 )
2025 {
2026 if (cplus_demangle_opname(t_field_name, dem_opname, DMGL_ANSI))
2027 t_field_name = dem_opname;
2028 else if (cplus_demangle_opname(t_field_name, dem_opname, 0))
2029 t_field_name = dem_opname;
2030 }
2031 if (t_field_name && STREQ (t_field_name, name))
bd5635a1 2032 {
01be6913
PB
2033 int j = TYPE_FN_FIELDLIST_LENGTH (t, i);
2034 struct fn_field *f = TYPE_FN_FIELDLIST1 (t, i);
2035
2036 if (intype == 0 && j > 1)
2037 error ("non-unique member `%s' requires type instantiation", name);
2038 if (intype)
bd5635a1 2039 {
01be6913
PB
2040 while (j--)
2041 if (TYPE_FN_FIELD_TYPE (f, j) == intype)
2042 break;
2043 if (j < 0)
2044 error ("no member function matches that type instantiation");
2045 }
2046 else
2047 j = 0;
2048
2049 if (TYPE_FN_FIELD_STUB (f, j))
2050 check_stub_method (t, i, j);
2051 if (TYPE_FN_FIELD_VIRTUAL_P (f, j))
2052 {
2053 return value_from_longest
2054 (lookup_reference_type
2055 (lookup_member_type (TYPE_FN_FIELD_TYPE (f, j),
2056 domain)),
13ffa6be 2057 (LONGEST) METHOD_PTR_FROM_VOFFSET (TYPE_FN_FIELD_VOFFSET (f, j)));
01be6913
PB
2058 }
2059 else
2060 {
2061 struct symbol *s = lookup_symbol (TYPE_FN_FIELD_PHYSNAME (f, j),
2062 0, VAR_NAMESPACE, 0, NULL);
35fcebce
PB
2063 if (s == NULL)
2064 {
2065 v = 0;
2066 }
2067 else
2068 {
2069 v = read_var_value (s, 0);
01be6913 2070#if 0
35fcebce
PB
2071 VALUE_TYPE (v) = lookup_reference_type
2072 (lookup_member_type (TYPE_FN_FIELD_TYPE (f, j),
2073 domain));
01be6913 2074#endif
bd5635a1 2075 }
35fcebce 2076 return v;
bd5635a1
RP
2077 }
2078 }
35fcebce 2079 }
01be6913
PB
2080 for (i = TYPE_N_BASECLASSES (t) - 1; i >= 0; i--)
2081 {
a91a6192 2082 value_ptr v;
51b57ded
FF
2083 int base_offset;
2084
2085 if (BASETYPE_VIA_VIRTUAL (t, i))
2086 base_offset = 0;
2087 else
2088 base_offset = TYPE_BASECLASS_BITPOS (t, i) / 8;
01be6913 2089 v = value_struct_elt_for_reference (domain,
51b57ded 2090 offset + base_offset,
01be6913
PB
2091 TYPE_BASECLASS (t, i),
2092 name,
2093 intype);
2094 if (v)
2095 return v;
bd5635a1
RP
2096 }
2097 return 0;
2098}
2099
bd5635a1
RP
2100/* C++: return the value of the class instance variable, if one exists.
2101 Flag COMPLAIN signals an error if the request is made in an
2102 inappropriate context. */
6d34c236 2103
a91a6192 2104value_ptr
bd5635a1
RP
2105value_of_this (complain)
2106 int complain;
2107{
bd5635a1
RP
2108 struct symbol *func, *sym;
2109 struct block *b;
2110 int i;
2111 static const char funny_this[] = "this";
a91a6192 2112 value_ptr this;
bd5635a1
RP
2113
2114 if (selected_frame == 0)
2115 if (complain)
2116 error ("no frame selected");
2117 else return 0;
2118
2119 func = get_frame_function (selected_frame);
2120 if (!func)
2121 {
2122 if (complain)
2123 error ("no `this' in nameless context");
2124 else return 0;
2125 }
2126
2127 b = SYMBOL_BLOCK_VALUE (func);
2128 i = BLOCK_NSYMS (b);
2129 if (i <= 0)
2130 if (complain)
2131 error ("no args, no `this'");
2132 else return 0;
2133
2134 /* Calling lookup_block_symbol is necessary to get the LOC_REGISTER
2135 symbol instead of the LOC_ARG one (if both exist). */
2136 sym = lookup_block_symbol (b, funny_this, VAR_NAMESPACE);
2137 if (sym == NULL)
2138 {
2139 if (complain)
2140 error ("current stack frame not in method");
2141 else
2142 return NULL;
2143 }
2144
2145 this = read_var_value (sym, selected_frame);
2146 if (this == 0 && complain)
2147 error ("`this' argument at unknown address");
2148 return this;
2149}
a91a6192 2150
f91a9e05
PB
2151/* Create a slice (sub-string, sub-array) of ARRAY, that is LENGTH elements
2152 long, starting at LOWBOUND. The result has the same lower bound as
2153 the original ARRAY. */
2154
2155value_ptr
2156value_slice (array, lowbound, length)
2157 value_ptr array;
2158 int lowbound, length;
2159{
5f3e7bfc
PB
2160 struct type *slice_range_type, *slice_type, *range_type;
2161 LONGEST lowerbound, upperbound, offset;
2162 value_ptr slice;
5e548861
PB
2163 struct type *array_type;
2164 array_type = check_typedef (VALUE_TYPE (array));
2165 COERCE_VARYING_ARRAY (array, array_type);
5e548861 2166 if (TYPE_CODE (array_type) != TYPE_CODE_ARRAY
5f3e7bfc
PB
2167 && TYPE_CODE (array_type) != TYPE_CODE_STRING
2168 && TYPE_CODE (array_type) != TYPE_CODE_BITSTRING)
f91a9e05 2169 error ("cannot take slice of non-array");
5f3e7bfc
PB
2170 range_type = TYPE_INDEX_TYPE (array_type);
2171 if (get_discrete_bounds (range_type, &lowerbound, &upperbound) < 0)
2172 error ("slice from bad array or bitstring");
2173 if (lowbound < lowerbound || length < 0
2174 || lowbound + length - 1 > upperbound
2175 /* Chill allows zero-length strings but not arrays. */
2176 || (current_language->la_language == language_chill
2177 && length == 0 && TYPE_CODE (array_type) == TYPE_CODE_ARRAY))
2178 error ("slice out of range");
2179 /* FIXME-type-allocation: need a way to free this type when we are
2180 done with it. */
2181 slice_range_type = create_range_type ((struct type*) NULL,
2182 TYPE_TARGET_TYPE (range_type),
2183 lowerbound, lowerbound + length - 1);
2184 if (TYPE_CODE (array_type) == TYPE_CODE_BITSTRING)
2185 {
2186 int i;
2187 slice_type = create_set_type ((struct type*) NULL, slice_range_type);
2188 TYPE_CODE (slice_type) = TYPE_CODE_BITSTRING;
2189 slice = value_zero (slice_type, not_lval);
2190 for (i = 0; i < length; i++)
2191 {
2192 int element = value_bit_index (array_type,
2193 VALUE_CONTENTS (array),
2194 lowbound + i);
2195 if (element < 0)
2196 error ("internal error accessing bitstring");
2197 else if (element > 0)
2198 {
2199 int j = i % TARGET_CHAR_BIT;
2200 if (BITS_BIG_ENDIAN)
2201 j = TARGET_CHAR_BIT - 1 - j;
2202 VALUE_CONTENTS_RAW (slice)[i / TARGET_CHAR_BIT] |= (1 << j);
2203 }
2204 }
2205 /* We should set the address, bitssize, and bitspos, so the clice
2206 can be used on the LHS, but that may require extensions to
2207 value_assign. For now, just leave as a non_lval. FIXME. */
2208 }
f91a9e05
PB
2209 else
2210 {
5e548861 2211 struct type *element_type = TYPE_TARGET_TYPE (array_type);
5e548861
PB
2212 offset
2213 = (lowbound - lowerbound) * TYPE_LENGTH (check_typedef (element_type));
f91a9e05
PB
2214 slice_type = create_array_type ((struct type*) NULL, element_type,
2215 slice_range_type);
5e548861 2216 TYPE_CODE (slice_type) = TYPE_CODE (array_type);
f91a9e05
PB
2217 slice = allocate_value (slice_type);
2218 if (VALUE_LAZY (array))
2219 VALUE_LAZY (slice) = 1;
2220 else
2221 memcpy (VALUE_CONTENTS (slice), VALUE_CONTENTS (array) + offset,
2222 TYPE_LENGTH (slice_type));
2223 if (VALUE_LVAL (array) == lval_internalvar)
2224 VALUE_LVAL (slice) = lval_internalvar_component;
2225 else
2226 VALUE_LVAL (slice) = VALUE_LVAL (array);
2227 VALUE_ADDRESS (slice) = VALUE_ADDRESS (array);
2228 VALUE_OFFSET (slice) = VALUE_OFFSET (array) + offset;
f91a9e05 2229 }
5f3e7bfc 2230 return slice;
f91a9e05
PB
2231}
2232
2233/* Assuming chill_varying_type (VARRAY) is true, return an equivalent
2234 value as a fixed-length array. */
2235
2236value_ptr
2237varying_to_slice (varray)
2238 value_ptr varray;
2239{
5e548861 2240 struct type *vtype = check_typedef (VALUE_TYPE (varray));
f91a9e05
PB
2241 LONGEST length = unpack_long (TYPE_FIELD_TYPE (vtype, 0),
2242 VALUE_CONTENTS (varray)
2243 + TYPE_FIELD_BITPOS (vtype, 0) / 8);
2244 return value_slice (value_primitive_field (varray, 0, 1, vtype), 0, length);
2245}
2246
a91a6192
SS
2247/* Create a value for a FORTRAN complex number. Currently most of
2248 the time values are coerced to COMPLEX*16 (i.e. a complex number
2249 composed of 2 doubles. This really should be a smarter routine
2250 that figures out precision inteligently as opposed to assuming
2251 doubles. FIXME: fmb */
2252
2253value_ptr
5222ca60 2254value_literal_complex (arg1, arg2, type)
a91a6192
SS
2255 value_ptr arg1;
2256 value_ptr arg2;
5222ca60 2257 struct type *type;
a91a6192 2258{
a91a6192 2259 register value_ptr val;
5222ca60 2260 struct type *real_type = TYPE_TARGET_TYPE (type);
a91a6192 2261
5222ca60
PB
2262 val = allocate_value (type);
2263 arg1 = value_cast (real_type, arg1);
2264 arg2 = value_cast (real_type, arg2);
a91a6192 2265
5222ca60
PB
2266 memcpy (VALUE_CONTENTS_RAW (val),
2267 VALUE_CONTENTS (arg1), TYPE_LENGTH (real_type));
2268 memcpy (VALUE_CONTENTS_RAW (val) + TYPE_LENGTH (real_type),
2269 VALUE_CONTENTS (arg2), TYPE_LENGTH (real_type));
a91a6192
SS
2270 return val;
2271}
9ed8604f 2272
5222ca60 2273/* Cast a value into the appropriate complex data type. */
9ed8604f
PS
2274
2275static value_ptr
5222ca60 2276cast_into_complex (type, val)
9ed8604f
PS
2277 struct type *type;
2278 register value_ptr val;
2279{
5222ca60
PB
2280 struct type *real_type = TYPE_TARGET_TYPE (type);
2281 if (TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_COMPLEX)
9ed8604f 2282 {
5222ca60
PB
2283 struct type *val_real_type = TYPE_TARGET_TYPE (VALUE_TYPE (val));
2284 value_ptr re_val = allocate_value (val_real_type);
2285 value_ptr im_val = allocate_value (val_real_type);
9ed8604f 2286
5222ca60
PB
2287 memcpy (VALUE_CONTENTS_RAW (re_val),
2288 VALUE_CONTENTS (val), TYPE_LENGTH (val_real_type));
2289 memcpy (VALUE_CONTENTS_RAW (im_val),
2290 VALUE_CONTENTS (val) + TYPE_LENGTH (val_real_type),
2291 TYPE_LENGTH (val_real_type));
9ed8604f 2292
5222ca60 2293 return value_literal_complex (re_val, im_val, type);
9ed8604f 2294 }
5222ca60
PB
2295 else if (TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_FLT
2296 || TYPE_CODE (VALUE_TYPE (val)) == TYPE_CODE_INT)
2297 return value_literal_complex (val, value_zero (real_type, not_lval), type);
9ed8604f 2298 else
5222ca60 2299 error ("cannot cast non-number to complex");
9ed8604f 2300}
5e548861
PB
2301
2302void
2303_initialize_valops ()
2304{
2305#if 0
2306 add_show_from_set
2307 (add_set_cmd ("abandon", class_support, var_boolean, (char *)&auto_abandon,
2308 "Set automatic abandonment of expressions upon failure.",
2309 &setlist),
2310 &showlist);
2311#endif
2312}
This page took 0.387939 seconds and 4 git commands to generate.