Please CVS, let me kill this file!
[deliverable/binutils-gdb.git] / gdb / valops.c
CommitLineData
bd5635a1 1/* Perform non-arithmetic operations on values, for GDB.
e17960fb 2 Copyright 1986, 1987, 1989, 1991, 1992 Free Software Foundation, Inc.
bd5635a1
RP
3
4This file is part of GDB.
5
06b6c733 6This program is free software; you can redistribute it and/or modify
bd5635a1 7it under the terms of the GNU General Public License as published by
06b6c733
JG
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
bd5635a1 10
06b6c733 11This program is distributed in the hope that it will be useful,
bd5635a1
RP
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
06b6c733
JG
17along with this program; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
bd5635a1 19
bd5635a1 20#include "defs.h"
bd5635a1 21#include "symtab.h"
01be6913 22#include "gdbtypes.h"
bd5635a1
RP
23#include "value.h"
24#include "frame.h"
25#include "inferior.h"
26#include "gdbcore.h"
27#include "target.h"
2e4964ad 28#include "demangle.h"
54023465 29#include "language.h"
bd5635a1
RP
30
31#include <errno.h>
32
33/* Local functions. */
01be6913 34
b5728692
SG
35static int
36typecmp PARAMS ((int staticp, struct type *t1[], value t2[]));
37
01be6913
PB
38static CORE_ADDR
39find_function_addr PARAMS ((value, struct type **));
40
41static CORE_ADDR
42value_push PARAMS ((CORE_ADDR, value));
43
44static CORE_ADDR
45value_arg_push PARAMS ((CORE_ADDR, value));
46
47static value
48search_struct_field PARAMS ((char *, value, int, struct type *, int));
49
50static value
bac89d6c 51search_struct_method PARAMS ((char *, value *, value *, int, int *,
01be6913
PB
52 struct type *));
53
54static int
55check_field_in PARAMS ((struct type *, const char *));
56
a163ddec
MT
57static CORE_ADDR
58allocate_space_in_inferior PARAMS ((int));
59
bd5635a1 60\f
a163ddec
MT
61/* Allocate NBYTES of space in the inferior using the inferior's malloc
62 and return a value that is a pointer to the allocated space. */
63
64static CORE_ADDR
65allocate_space_in_inferior (len)
66 int len;
67{
68 register value val;
69 register struct symbol *sym;
70 struct minimal_symbol *msymbol;
71 struct type *type;
72 value blocklen;
73 LONGEST maddr;
74
75 /* Find the address of malloc in the inferior. */
76
77 sym = lookup_symbol ("malloc", 0, VAR_NAMESPACE, 0, NULL);
78 if (sym != NULL)
79 {
80 if (SYMBOL_CLASS (sym) != LOC_BLOCK)
81 {
82 error ("\"malloc\" exists in this program but is not a function.");
83 }
479fdd26 84 val = value_of_variable (sym, NULL);
a163ddec
MT
85 }
86 else
87 {
88 msymbol = lookup_minimal_symbol ("malloc", (struct objfile *) NULL);
89 if (msymbol != NULL)
90 {
91 type = lookup_pointer_type (builtin_type_char);
92 type = lookup_function_type (type);
93 type = lookup_pointer_type (type);
94 maddr = (LONGEST) SYMBOL_VALUE_ADDRESS (msymbol);
95 val = value_from_longest (type, maddr);
96 }
97 else
98 {
99 error ("evaluation of this expression requires the program to have a function \"malloc\".");
100 }
101 }
102
103 blocklen = value_from_longest (builtin_type_int, (LONGEST) len);
104 val = call_function_by_hand (val, 1, &blocklen);
105 if (value_logical_not (val))
106 {
107 error ("No memory available to program.");
108 }
109 return (value_as_long (val));
110}
111
bd5635a1
RP
112/* Cast value ARG2 to type TYPE and return as a value.
113 More general than a C cast: accepts any two types of the same length,
114 and if ARG2 is an lvalue it can be cast into anything at all. */
54023465 115/* In C++, casts may change pointer or object representations. */
bd5635a1
RP
116
117value
118value_cast (type, arg2)
119 struct type *type;
120 register value arg2;
121{
122 register enum type_code code1;
123 register enum type_code code2;
124 register int scalar;
125
126 /* Coerce arrays but not enums. Enums will work as-is
127 and coercing them would cause an infinite recursion. */
128 if (TYPE_CODE (VALUE_TYPE (arg2)) != TYPE_CODE_ENUM)
129 COERCE_ARRAY (arg2);
130
131 code1 = TYPE_CODE (type);
132 code2 = TYPE_CODE (VALUE_TYPE (arg2));
133 scalar = (code2 == TYPE_CODE_INT || code2 == TYPE_CODE_FLT
134 || code2 == TYPE_CODE_ENUM);
135
54023465
JK
136 if ( code1 == TYPE_CODE_STRUCT
137 && code2 == TYPE_CODE_STRUCT
138 && TYPE_NAME (type) != 0)
139 {
140 /* Look in the type of the source to see if it contains the
141 type of the target as a superclass. If so, we'll need to
142 offset the object in addition to changing its type. */
143 value v = search_struct_field (type_name_no_tag (type),
144 arg2, 0, VALUE_TYPE (arg2), 1);
145 if (v)
146 {
147 VALUE_TYPE (v) = type;
148 return v;
149 }
150 }
bd5635a1
RP
151 if (code1 == TYPE_CODE_FLT && scalar)
152 return value_from_double (type, value_as_double (arg2));
153 else if ((code1 == TYPE_CODE_INT || code1 == TYPE_CODE_ENUM)
154 && (scalar || code2 == TYPE_CODE_PTR))
06b6c733 155 return value_from_longest (type, value_as_long (arg2));
bd5635a1
RP
156 else if (TYPE_LENGTH (type) == TYPE_LENGTH (VALUE_TYPE (arg2)))
157 {
158 if (code1 == TYPE_CODE_PTR && code2 == TYPE_CODE_PTR)
159 {
160 /* Look in the type of the source to see if it contains the
161 type of the target as a superclass. If so, we'll need to
162 offset the pointer rather than just change its type. */
163 struct type *t1 = TYPE_TARGET_TYPE (type);
164 struct type *t2 = TYPE_TARGET_TYPE (VALUE_TYPE (arg2));
2a5ec41d 165 if ( TYPE_CODE (t1) == TYPE_CODE_STRUCT
bd5635a1
RP
166 && TYPE_CODE (t2) == TYPE_CODE_STRUCT
167 && TYPE_NAME (t1) != 0) /* if name unknown, can't have supercl */
168 {
169 value v = search_struct_field (type_name_no_tag (t1),
d3bab255 170 value_ind (arg2), 0, t2, 1);
bd5635a1
RP
171 if (v)
172 {
173 v = value_addr (v);
174 VALUE_TYPE (v) = type;
175 return v;
176 }
177 }
178 /* No superclass found, just fall through to change ptr type. */
179 }
180 VALUE_TYPE (arg2) = type;
181 return arg2;
182 }
183 else if (VALUE_LVAL (arg2) == lval_memory)
184 {
185 return value_at_lazy (type, VALUE_ADDRESS (arg2) + VALUE_OFFSET (arg2));
186 }
d11c44f1
JG
187 else if (code1 == TYPE_CODE_VOID)
188 {
189 return value_zero (builtin_type_void, not_lval);
190 }
bd5635a1
RP
191 else
192 {
193 error ("Invalid cast.");
194 return 0;
195 }
196}
197
198/* Create a value of type TYPE that is zero, and return it. */
199
200value
201value_zero (type, lv)
202 struct type *type;
203 enum lval_type lv;
204{
205 register value val = allocate_value (type);
206
4ed3a9ea 207 memset (VALUE_CONTENTS (val), 0, TYPE_LENGTH (type));
bd5635a1
RP
208 VALUE_LVAL (val) = lv;
209
210 return val;
211}
212
213/* Return a value with type TYPE located at ADDR.
214
215 Call value_at only if the data needs to be fetched immediately;
216 if we can be 'lazy' and defer the fetch, perhaps indefinately, call
217 value_at_lazy instead. value_at_lazy simply records the address of
218 the data and sets the lazy-evaluation-required flag. The lazy flag
219 is tested in the VALUE_CONTENTS macro, which is used if and when
220 the contents are actually required. */
221
222value
223value_at (type, addr)
224 struct type *type;
225 CORE_ADDR addr;
226{
227 register value val = allocate_value (type);
228
229 read_memory (addr, VALUE_CONTENTS_RAW (val), TYPE_LENGTH (type));
230
231 VALUE_LVAL (val) = lval_memory;
232 VALUE_ADDRESS (val) = addr;
233
234 return val;
235}
236
237/* Return a lazy value with type TYPE located at ADDR (cf. value_at). */
238
239value
240value_at_lazy (type, addr)
241 struct type *type;
242 CORE_ADDR addr;
243{
244 register value val = allocate_value (type);
245
246 VALUE_LVAL (val) = lval_memory;
247 VALUE_ADDRESS (val) = addr;
248 VALUE_LAZY (val) = 1;
249
250 return val;
251}
252
253/* Called only from the VALUE_CONTENTS macro, if the current data for
254 a variable needs to be loaded into VALUE_CONTENTS(VAL). Fetches the
255 data from the user's process, and clears the lazy flag to indicate
256 that the data in the buffer is valid.
257
9cb602e1
JG
258 If the value is zero-length, we avoid calling read_memory, which would
259 abort. We mark the value as fetched anyway -- all 0 bytes of it.
260
bd5635a1
RP
261 This function returns a value because it is used in the VALUE_CONTENTS
262 macro as part of an expression, where a void would not work. The
263 value is ignored. */
264
265int
266value_fetch_lazy (val)
267 register value val;
268{
269 CORE_ADDR addr = VALUE_ADDRESS (val) + VALUE_OFFSET (val);
270
9cb602e1
JG
271 if (TYPE_LENGTH (VALUE_TYPE (val)))
272 read_memory (addr, VALUE_CONTENTS_RAW (val),
273 TYPE_LENGTH (VALUE_TYPE (val)));
bd5635a1
RP
274 VALUE_LAZY (val) = 0;
275 return 0;
276}
277
278
279/* Store the contents of FROMVAL into the location of TOVAL.
280 Return a new value with the location of TOVAL and contents of FROMVAL. */
281
282value
283value_assign (toval, fromval)
284 register value toval, fromval;
285{
286 register struct type *type = VALUE_TYPE (toval);
287 register value val;
288 char raw_buffer[MAX_REGISTER_RAW_SIZE];
bd5635a1
RP
289 int use_buffer = 0;
290
291 COERCE_ARRAY (fromval);
8e9a3f3b 292 COERCE_REF (toval);
bd5635a1
RP
293
294 if (VALUE_LVAL (toval) != lval_internalvar)
295 fromval = value_cast (type, fromval);
296
297 /* If TOVAL is a special machine register requiring conversion
298 of program values to a special raw format,
299 convert FROMVAL's contents now, with result in `raw_buffer',
300 and set USE_BUFFER to the number of bytes to write. */
301
ad09cb2b 302#ifdef REGISTER_CONVERTIBLE
bd5635a1
RP
303 if (VALUE_REGNO (toval) >= 0
304 && REGISTER_CONVERTIBLE (VALUE_REGNO (toval)))
305 {
306 int regno = VALUE_REGNO (toval);
ad09cb2b
PS
307 if (REGISTER_CONVERTIBLE (regno))
308 {
309 REGISTER_CONVERT_TO_RAW (VALUE_TYPE (fromval), regno,
310 VALUE_CONTENTS (fromval), raw_buffer);
311 use_buffer = REGISTER_RAW_SIZE (regno);
312 }
bd5635a1 313 }
ad09cb2b 314#endif
bd5635a1
RP
315
316 switch (VALUE_LVAL (toval))
317 {
318 case lval_internalvar:
319 set_internalvar (VALUE_INTERNALVAR (toval), fromval);
320 break;
321
322 case lval_internalvar_component:
323 set_internalvar_component (VALUE_INTERNALVAR (toval),
324 VALUE_OFFSET (toval),
325 VALUE_BITPOS (toval),
326 VALUE_BITSIZE (toval),
327 fromval);
328 break;
329
330 case lval_memory:
331 if (VALUE_BITSIZE (toval))
332 {
4d52ec86
JK
333 char buffer[sizeof (LONGEST)];
334 /* We assume that the argument to read_memory is in units of
335 host chars. FIXME: Is that correct? */
336 int len = (VALUE_BITPOS (toval)
337 + VALUE_BITSIZE (toval)
338 + HOST_CHAR_BIT - 1)
339 / HOST_CHAR_BIT;
ad09cb2b 340
4d52ec86 341 if (len > sizeof (LONGEST))
ad09cb2b
PS
342 error ("Can't handle bitfields which don't fit in a %d bit word.",
343 sizeof (LONGEST) * HOST_CHAR_BIT);
4d52ec86 344
bd5635a1 345 read_memory (VALUE_ADDRESS (toval) + VALUE_OFFSET (toval),
4d52ec86
JK
346 buffer, len);
347 modify_field (buffer, value_as_long (fromval),
bd5635a1
RP
348 VALUE_BITPOS (toval), VALUE_BITSIZE (toval));
349 write_memory (VALUE_ADDRESS (toval) + VALUE_OFFSET (toval),
4d52ec86 350 buffer, len);
bd5635a1
RP
351 }
352 else if (use_buffer)
353 write_memory (VALUE_ADDRESS (toval) + VALUE_OFFSET (toval),
354 raw_buffer, use_buffer);
355 else
356 write_memory (VALUE_ADDRESS (toval) + VALUE_OFFSET (toval),
357 VALUE_CONTENTS (fromval), TYPE_LENGTH (type));
358 break;
359
360 case lval_register:
361 if (VALUE_BITSIZE (toval))
362 {
ad09cb2b 363 char buffer[sizeof (LONGEST)];
4d52ec86 364 int len = REGISTER_RAW_SIZE (VALUE_REGNO (toval));
ad09cb2b
PS
365
366 if (len > sizeof (LONGEST))
367 error ("Can't handle bitfields in registers larger than %d bits.",
368 sizeof (LONGEST) * HOST_CHAR_BIT);
369
370 if (VALUE_BITPOS (toval) + VALUE_BITSIZE (toval)
371 > len * HOST_CHAR_BIT)
372 /* Getting this right would involve being very careful about
373 byte order. */
374 error ("\
375Can't handle bitfield which doesn't fit in a single register.");
376
4d52ec86
JK
377 read_register_bytes (VALUE_ADDRESS (toval) + VALUE_OFFSET (toval),
378 buffer, len);
379 modify_field (buffer, value_as_long (fromval),
380 VALUE_BITPOS (toval), VALUE_BITSIZE (toval));
381 write_register_bytes (VALUE_ADDRESS (toval) + VALUE_OFFSET (toval),
382 buffer, len);
bd5635a1
RP
383 }
384 else if (use_buffer)
385 write_register_bytes (VALUE_ADDRESS (toval) + VALUE_OFFSET (toval),
386 raw_buffer, use_buffer);
387 else
54023465
JK
388 {
389 /* Do any conversion necessary when storing this type to more
390 than one register. */
391#ifdef REGISTER_CONVERT_FROM_TYPE
392 memcpy (raw_buffer, VALUE_CONTENTS (fromval), TYPE_LENGTH (type));
393 REGISTER_CONVERT_FROM_TYPE(VALUE_REGNO (toval), type, raw_buffer);
394 write_register_bytes (VALUE_ADDRESS (toval) + VALUE_OFFSET (toval),
395 raw_buffer, TYPE_LENGTH (type));
396#else
397 write_register_bytes (VALUE_ADDRESS (toval) + VALUE_OFFSET (toval),
398 VALUE_CONTENTS (fromval), TYPE_LENGTH (type));
399#endif
400 }
79971d11
JK
401 /* Assigning to the stack pointer, frame pointer, and other
402 (architecture and calling convention specific) registers may
403 cause the frame cache to be out of date. We just do this
404 on all assignments to registers for simplicity; I doubt the slowdown
405 matters. */
406 reinit_frame_cache ();
bd5635a1
RP
407 break;
408
409 case lval_reg_frame_relative:
410 {
411 /* value is stored in a series of registers in the frame
412 specified by the structure. Copy that value out, modify
413 it, and copy it back in. */
414 int amount_to_copy = (VALUE_BITSIZE (toval) ? 1 : TYPE_LENGTH (type));
415 int reg_size = REGISTER_RAW_SIZE (VALUE_FRAME_REGNUM (toval));
416 int byte_offset = VALUE_OFFSET (toval) % reg_size;
417 int reg_offset = VALUE_OFFSET (toval) / reg_size;
418 int amount_copied;
4d52ec86
JK
419
420 /* Make the buffer large enough in all cases. */
421 char *buffer = (char *) alloca (amount_to_copy
422 + sizeof (LONGEST)
423 + MAX_REGISTER_RAW_SIZE);
424
bd5635a1
RP
425 int regno;
426 FRAME frame;
427
428 /* Figure out which frame this is in currently. */
429 for (frame = get_current_frame ();
430 frame && FRAME_FP (frame) != VALUE_FRAME (toval);
431 frame = get_prev_frame (frame))
432 ;
433
434 if (!frame)
435 error ("Value being assigned to is no longer active.");
436
437 amount_to_copy += (reg_size - amount_to_copy % reg_size);
438
439 /* Copy it out. */
440 for ((regno = VALUE_FRAME_REGNUM (toval) + reg_offset,
441 amount_copied = 0);
442 amount_copied < amount_to_copy;
443 amount_copied += reg_size, regno++)
444 {
445 get_saved_register (buffer + amount_copied,
51b57ded 446 (int *)NULL, (CORE_ADDR *)NULL,
bd5635a1
RP
447 frame, regno, (enum lval_type *)NULL);
448 }
449
450 /* Modify what needs to be modified. */
451 if (VALUE_BITSIZE (toval))
452 modify_field (buffer + byte_offset,
479fdd26 453 value_as_long (fromval),
bd5635a1
RP
454 VALUE_BITPOS (toval), VALUE_BITSIZE (toval));
455 else if (use_buffer)
4ed3a9ea 456 memcpy (buffer + byte_offset, raw_buffer, use_buffer);
bd5635a1 457 else
4ed3a9ea
FF
458 memcpy (buffer + byte_offset, VALUE_CONTENTS (fromval),
459 TYPE_LENGTH (type));
bd5635a1
RP
460
461 /* Copy it back. */
462 for ((regno = VALUE_FRAME_REGNUM (toval) + reg_offset,
463 amount_copied = 0);
464 amount_copied < amount_to_copy;
465 amount_copied += reg_size, regno++)
466 {
467 enum lval_type lval;
468 CORE_ADDR addr;
469 int optim;
470
471 /* Just find out where to put it. */
472 get_saved_register ((char *)NULL,
473 &optim, &addr, frame, regno, &lval);
474
475 if (optim)
476 error ("Attempt to assign to a value that was optimized out.");
477 if (lval == lval_memory)
478 write_memory (addr, buffer + amount_copied, reg_size);
479 else if (lval == lval_register)
480 write_register_bytes (addr, buffer + amount_copied, reg_size);
481 else
482 error ("Attempt to assign to an unmodifiable value.");
483 }
484 }
485 break;
486
487
488 default:
489 error ("Left side of = operation is not an lvalue.");
490 }
491
492 /* Return a value just like TOVAL except with the contents of FROMVAL
493 (except in the case of the type if TOVAL is an internalvar). */
494
495 if (VALUE_LVAL (toval) == lval_internalvar
496 || VALUE_LVAL (toval) == lval_internalvar_component)
497 {
498 type = VALUE_TYPE (fromval);
499 }
500
501 val = allocate_value (type);
4ed3a9ea
FF
502 memcpy (val, toval, VALUE_CONTENTS_RAW (val) - (char *) val);
503 memcpy (VALUE_CONTENTS_RAW (val), VALUE_CONTENTS (fromval),
504 TYPE_LENGTH (type));
bd5635a1
RP
505 VALUE_TYPE (val) = type;
506
507 return val;
508}
509
510/* Extend a value VAL to COUNT repetitions of its type. */
511
512value
513value_repeat (arg1, count)
514 value arg1;
515 int count;
516{
517 register value val;
518
519 if (VALUE_LVAL (arg1) != lval_memory)
520 error ("Only values in memory can be extended with '@'.");
521 if (count < 1)
522 error ("Invalid number %d of repetitions.", count);
523
524 val = allocate_repeat_value (VALUE_TYPE (arg1), count);
525
526 read_memory (VALUE_ADDRESS (arg1) + VALUE_OFFSET (arg1),
527 VALUE_CONTENTS_RAW (val),
528 TYPE_LENGTH (VALUE_TYPE (val)) * count);
529 VALUE_LVAL (val) = lval_memory;
530 VALUE_ADDRESS (val) = VALUE_ADDRESS (arg1) + VALUE_OFFSET (arg1);
531
532 return val;
533}
534
535value
479fdd26 536value_of_variable (var, b)
bd5635a1 537 struct symbol *var;
479fdd26 538 struct block *b;
bd5635a1
RP
539{
540 value val;
479fdd26 541 FRAME fr;
bd5635a1 542
479fdd26
JK
543 if (b == NULL)
544 /* Use selected frame. */
545 fr = NULL;
546 else
547 {
548 fr = block_innermost_frame (b);
443abae1 549 if (fr == NULL && symbol_read_needs_frame (var))
479fdd26
JK
550 {
551 if (BLOCK_FUNCTION (b) != NULL
552 && SYMBOL_NAME (BLOCK_FUNCTION (b)) != NULL)
553 error ("No frame is currently executing in block %s.",
554 SYMBOL_NAME (BLOCK_FUNCTION (b)));
555 else
556 error ("No frame is currently executing in specified block");
557 }
558 }
559 val = read_var_value (var, fr);
bd5635a1 560 if (val == 0)
2e4964ad 561 error ("Address of symbol \"%s\" is unknown.", SYMBOL_SOURCE_NAME (var));
bd5635a1
RP
562 return val;
563}
564
a163ddec
MT
565/* Given a value which is an array, return a value which is a pointer to its
566 first element, regardless of whether or not the array has a nonzero lower
567 bound.
568
569 FIXME: A previous comment here indicated that this routine should be
570 substracting the array's lower bound. It's not clear to me that this
571 is correct. Given an array subscripting operation, it would certainly
572 work to do the adjustment here, essentially computing:
573
574 (&array[0] - (lowerbound * sizeof array[0])) + (index * sizeof array[0])
575
576 However I believe a more appropriate and logical place to account for
577 the lower bound is to do so in value_subscript, essentially computing:
578
579 (&array[0] + ((index - lowerbound) * sizeof array[0]))
580
581 As further evidence consider what would happen with operations other
582 than array subscripting, where the caller would get back a value that
583 had an address somewhere before the actual first element of the array,
584 and the information about the lower bound would be lost because of
585 the coercion to pointer type.
586 */
bd5635a1
RP
587
588value
589value_coerce_array (arg1)
590 value arg1;
591{
592 register struct type *type;
bd5635a1
RP
593
594 if (VALUE_LVAL (arg1) != lval_memory)
595 error ("Attempt to take address of value not located in memory.");
596
597 /* Get type of elements. */
598 if (TYPE_CODE (VALUE_TYPE (arg1)) == TYPE_CODE_ARRAY)
599 type = TYPE_TARGET_TYPE (VALUE_TYPE (arg1));
600 else
601 /* A phony array made by value_repeat.
602 Its type is the type of the elements, not an array type. */
603 type = VALUE_TYPE (arg1);
604
06b6c733 605 return value_from_longest (lookup_pointer_type (type),
bd5635a1 606 (LONGEST) (VALUE_ADDRESS (arg1) + VALUE_OFFSET (arg1)));
bd5635a1
RP
607}
608
609/* Given a value which is a function, return a value which is a pointer
610 to it. */
611
612value
613value_coerce_function (arg1)
614 value arg1;
615{
bd5635a1
RP
616
617 if (VALUE_LVAL (arg1) != lval_memory)
618 error ("Attempt to take address of value not located in memory.");
619
06b6c733 620 return value_from_longest (lookup_pointer_type (VALUE_TYPE (arg1)),
bd5635a1 621 (LONGEST) (VALUE_ADDRESS (arg1) + VALUE_OFFSET (arg1)));
bd5635a1
RP
622}
623
624/* Return a pointer value for the object for which ARG1 is the contents. */
625
626value
627value_addr (arg1)
628 value arg1;
629{
8e9a3f3b
PB
630 struct type *type = VALUE_TYPE (arg1);
631 if (TYPE_CODE (type) == TYPE_CODE_REF)
632 {
633 /* Copy the value, but change the type from (T&) to (T*).
634 We keep the same location information, which is efficient,
635 and allows &(&X) to get the location containing the reference. */
636 value arg2 = value_copy (arg1);
637 VALUE_TYPE (arg2) = lookup_pointer_type (TYPE_TARGET_TYPE (type));
638 return arg2;
639 }
bd5635a1 640 if (VALUE_REPEATED (arg1)
8e9a3f3b 641 || TYPE_CODE (type) == TYPE_CODE_ARRAY)
bd5635a1 642 return value_coerce_array (arg1);
8e9a3f3b 643 if (TYPE_CODE (type) == TYPE_CODE_FUNC)
bd5635a1
RP
644 return value_coerce_function (arg1);
645
646 if (VALUE_LVAL (arg1) != lval_memory)
647 error ("Attempt to take address of value not located in memory.");
648
8e9a3f3b 649 return value_from_longest (lookup_pointer_type (type),
bd5635a1 650 (LONGEST) (VALUE_ADDRESS (arg1) + VALUE_OFFSET (arg1)));
bd5635a1
RP
651}
652
653/* Given a value of a pointer type, apply the C unary * operator to it. */
654
655value
656value_ind (arg1)
657 value arg1;
658{
659 COERCE_ARRAY (arg1);
660
661 if (TYPE_CODE (VALUE_TYPE (arg1)) == TYPE_CODE_MEMBER)
662 error ("not implemented: member types in value_ind");
663
664 /* Allow * on an integer so we can cast it to whatever we want.
665 This returns an int, which seems like the most C-like thing
666 to do. "long long" variables are rare enough that
667 BUILTIN_TYPE_LONGEST would seem to be a mistake. */
668 if (TYPE_CODE (VALUE_TYPE (arg1)) == TYPE_CODE_INT)
669 return value_at (builtin_type_int,
670 (CORE_ADDR) value_as_long (arg1));
671 else if (TYPE_CODE (VALUE_TYPE (arg1)) == TYPE_CODE_PTR)
672 return value_at_lazy (TYPE_TARGET_TYPE (VALUE_TYPE (arg1)),
d11c44f1 673 value_as_pointer (arg1));
bd5635a1
RP
674 error ("Attempt to take contents of a non-pointer value.");
675 return 0; /* For lint -- never reached */
676}
677\f
678/* Pushing small parts of stack frames. */
679
680/* Push one word (the size of object that a register holds). */
681
682CORE_ADDR
34df79fc 683push_word (sp, word)
bd5635a1 684 CORE_ADDR sp;
34df79fc 685 REGISTER_TYPE word;
bd5635a1
RP
686{
687 register int len = sizeof (REGISTER_TYPE);
479fdd26 688 char buffer[MAX_REGISTER_RAW_SIZE];
bd5635a1 689
479fdd26 690 store_unsigned_integer (buffer, len, word);
bd5635a1
RP
691#if 1 INNER_THAN 2
692 sp -= len;
479fdd26 693 write_memory (sp, buffer, len);
bd5635a1 694#else /* stack grows upward */
479fdd26 695 write_memory (sp, buffer, len);
bd5635a1
RP
696 sp += len;
697#endif /* stack grows upward */
698
699 return sp;
700}
701
702/* Push LEN bytes with data at BUFFER. */
703
704CORE_ADDR
705push_bytes (sp, buffer, len)
706 CORE_ADDR sp;
707 char *buffer;
708 int len;
709{
710#if 1 INNER_THAN 2
711 sp -= len;
712 write_memory (sp, buffer, len);
713#else /* stack grows upward */
714 write_memory (sp, buffer, len);
715 sp += len;
716#endif /* stack grows upward */
717
718 return sp;
719}
720
721/* Push onto the stack the specified value VALUE. */
722
01be6913 723static CORE_ADDR
bd5635a1
RP
724value_push (sp, arg)
725 register CORE_ADDR sp;
726 value arg;
727{
728 register int len = TYPE_LENGTH (VALUE_TYPE (arg));
729
730#if 1 INNER_THAN 2
731 sp -= len;
732 write_memory (sp, VALUE_CONTENTS (arg), len);
733#else /* stack grows upward */
734 write_memory (sp, VALUE_CONTENTS (arg), len);
735 sp += len;
736#endif /* stack grows upward */
737
738 return sp;
739}
740
741/* Perform the standard coercions that are specified
742 for arguments to be passed to C functions. */
743
744value
745value_arg_coerce (arg)
746 value arg;
747{
748 register struct type *type;
749
479fdd26
JK
750 /* FIXME: We should coerce this according to the prototype (if we have
751 one). Right now we do a little bit of this in typecmp(), but that
752 doesn't always get called. For example, if passing a ref to a function
753 without a prototype, we probably should de-reference it. Currently
754 we don't. */
755
756 if (TYPE_CODE (VALUE_TYPE (arg)) == TYPE_CODE_ENUM)
757 arg = value_cast (builtin_type_unsigned_int, arg);
758
b5728692
SG
759#if 1 /* FIXME: This is only a temporary patch. -fnf */
760 if (VALUE_REPEATED (arg)
761 || TYPE_CODE (VALUE_TYPE (arg)) == TYPE_CODE_ARRAY)
762 arg = value_coerce_array (arg);
763 if (TYPE_CODE (VALUE_TYPE (arg)) == TYPE_CODE_FUNC)
764 arg = value_coerce_function (arg);
765#endif
bd5635a1
RP
766
767 type = VALUE_TYPE (arg);
768
769 if (TYPE_CODE (type) == TYPE_CODE_INT
2a5ec41d 770 && TYPE_LENGTH (type) < TYPE_LENGTH (builtin_type_int))
bd5635a1
RP
771 return value_cast (builtin_type_int, arg);
772
2a5ec41d
JG
773 if (TYPE_CODE (type) == TYPE_CODE_FLT
774 && TYPE_LENGTH (type) < TYPE_LENGTH (builtin_type_double))
bd5635a1
RP
775 return value_cast (builtin_type_double, arg);
776
777 return arg;
778}
779
780/* Push the value ARG, first coercing it as an argument
781 to a C function. */
782
01be6913 783static CORE_ADDR
bd5635a1
RP
784value_arg_push (sp, arg)
785 register CORE_ADDR sp;
786 value arg;
787{
788 return value_push (sp, value_arg_coerce (arg));
789}
790
791/* Determine a function's address and its return type from its value.
792 Calls error() if the function is not valid for calling. */
793
01be6913 794static CORE_ADDR
bd5635a1
RP
795find_function_addr (function, retval_type)
796 value function;
797 struct type **retval_type;
798{
799 register struct type *ftype = VALUE_TYPE (function);
800 register enum type_code code = TYPE_CODE (ftype);
801 struct type *value_type;
802 CORE_ADDR funaddr;
803
804 /* If it's a member function, just look at the function
805 part of it. */
806
807 /* Determine address to call. */
808 if (code == TYPE_CODE_FUNC || code == TYPE_CODE_METHOD)
809 {
810 funaddr = VALUE_ADDRESS (function);
811 value_type = TYPE_TARGET_TYPE (ftype);
812 }
813 else if (code == TYPE_CODE_PTR)
814 {
d11c44f1 815 funaddr = value_as_pointer (function);
bd5635a1
RP
816 if (TYPE_CODE (TYPE_TARGET_TYPE (ftype)) == TYPE_CODE_FUNC
817 || TYPE_CODE (TYPE_TARGET_TYPE (ftype)) == TYPE_CODE_METHOD)
818 value_type = TYPE_TARGET_TYPE (TYPE_TARGET_TYPE (ftype));
819 else
820 value_type = builtin_type_int;
821 }
822 else if (code == TYPE_CODE_INT)
823 {
824 /* Handle the case of functions lacking debugging info.
825 Their values are characters since their addresses are char */
826 if (TYPE_LENGTH (ftype) == 1)
d11c44f1 827 funaddr = value_as_pointer (value_addr (function));
bd5635a1
RP
828 else
829 /* Handle integer used as address of a function. */
d11c44f1 830 funaddr = (CORE_ADDR) value_as_long (function);
bd5635a1
RP
831
832 value_type = builtin_type_int;
833 }
834 else
835 error ("Invalid data type for function to be called.");
836
837 *retval_type = value_type;
838 return funaddr;
839}
840
841#if defined (CALL_DUMMY)
842/* All this stuff with a dummy frame may seem unnecessarily complicated
843 (why not just save registers in GDB?). The purpose of pushing a dummy
844 frame which looks just like a real frame is so that if you call a
845 function and then hit a breakpoint (get a signal, etc), "backtrace"
846 will look right. Whether the backtrace needs to actually show the
847 stack at the time the inferior function was called is debatable, but
848 it certainly needs to not display garbage. So if you are contemplating
849 making dummy frames be different from normal frames, consider that. */
850
851/* Perform a function call in the inferior.
852 ARGS is a vector of values of arguments (NARGS of them).
853 FUNCTION is a value, the function to be called.
854 Returns a value representing what the function returned.
855 May fail to return, if a breakpoint or signal is hit
856 during the execution of the function. */
857
858value
859call_function_by_hand (function, nargs, args)
860 value function;
861 int nargs;
862 value *args;
863{
864 register CORE_ADDR sp;
865 register int i;
866 CORE_ADDR start_sp;
f2ebc25f 867 /* CALL_DUMMY is an array of words (REGISTER_TYPE), but each word
84d82b1c 868 is in host byte order. It is switched to target byte order before calling
f2ebc25f 869 FIX_CALL_DUMMY. */
bd5635a1
RP
870 static REGISTER_TYPE dummy[] = CALL_DUMMY;
871 REGISTER_TYPE dummy1[sizeof dummy / sizeof (REGISTER_TYPE)];
872 CORE_ADDR old_sp;
873 struct type *value_type;
874 unsigned char struct_return;
875 CORE_ADDR struct_addr;
876 struct inferior_status inf_status;
877 struct cleanup *old_chain;
878 CORE_ADDR funaddr;
879 int using_gcc;
9f739abd 880 CORE_ADDR real_pc;
bd5635a1 881
e17960fb
JG
882 if (!target_has_execution)
883 noprocess();
884
bd5635a1
RP
885 save_inferior_status (&inf_status, 1);
886 old_chain = make_cleanup (restore_inferior_status, &inf_status);
887
888 /* PUSH_DUMMY_FRAME is responsible for saving the inferior registers
889 (and POP_FRAME for restoring them). (At least on most machines)
890 they are saved on the stack in the inferior. */
891 PUSH_DUMMY_FRAME;
892
54023465 893 old_sp = sp = read_sp ();
bd5635a1
RP
894
895#if 1 INNER_THAN 2 /* Stack grows down */
896 sp -= sizeof dummy;
897 start_sp = sp;
898#else /* Stack grows up */
899 start_sp = sp;
900 sp += sizeof dummy;
901#endif
902
903 funaddr = find_function_addr (function, &value_type);
904
905 {
906 struct block *b = block_for_pc (funaddr);
907 /* If compiled without -g, assume GCC. */
908 using_gcc = b == NULL || BLOCK_GCC_COMPILED (b);
909 }
910
911 /* Are we returning a value using a structure return or a normal
912 value return? */
913
914 struct_return = using_struct_return (function, funaddr, value_type,
915 using_gcc);
916
917 /* Create a call sequence customized for this function
918 and the number of arguments for it. */
f2ebc25f 919 for (i = 0; i < sizeof dummy / sizeof (REGISTER_TYPE); i++)
34df79fc
JK
920 store_unsigned_integer (&dummy1[i], sizeof (REGISTER_TYPE),
921 (unsigned LONGEST)dummy[i]);
9f739abd
SG
922
923#ifdef GDB_TARGET_IS_HPPA
b5728692
SG
924 real_pc = FIX_CALL_DUMMY (dummy1, start_sp, funaddr, nargs, args,
925 value_type, using_gcc);
9f739abd 926#else
bd5635a1
RP
927 FIX_CALL_DUMMY (dummy1, start_sp, funaddr, nargs, args,
928 value_type, using_gcc);
9f739abd
SG
929 real_pc = start_sp;
930#endif
bd5635a1
RP
931
932#if CALL_DUMMY_LOCATION == ON_STACK
933 write_memory (start_sp, (char *)dummy1, sizeof dummy);
cef4c2e7 934#endif /* On stack. */
bd5635a1 935
bd5635a1
RP
936#if CALL_DUMMY_LOCATION == BEFORE_TEXT_END
937 /* Convex Unix prohibits executing in the stack segment. */
938 /* Hope there is empty room at the top of the text segment. */
939 {
84d82b1c 940 extern CORE_ADDR text_end;
bd5635a1
RP
941 static checked = 0;
942 if (!checked)
943 for (start_sp = text_end - sizeof dummy; start_sp < text_end; ++start_sp)
944 if (read_memory_integer (start_sp, 1) != 0)
945 error ("text segment full -- no place to put call");
946 checked = 1;
947 sp = old_sp;
30d20d15
PS
948 real_pc = text_end - sizeof dummy;
949 write_memory (real_pc, (char *)dummy1, sizeof dummy);
bd5635a1 950 }
cef4c2e7
PS
951#endif /* Before text_end. */
952
953#if CALL_DUMMY_LOCATION == AFTER_TEXT_END
bd5635a1 954 {
84d82b1c 955 extern CORE_ADDR text_end;
bd5635a1
RP
956 int errcode;
957 sp = old_sp;
30d20d15
PS
958 real_pc = text_end;
959 errcode = target_write_memory (real_pc, (char *)dummy1, sizeof dummy);
bd5635a1
RP
960 if (errcode != 0)
961 error ("Cannot write text segment -- call_function failed");
962 }
963#endif /* After text_end. */
cef4c2e7
PS
964
965#if CALL_DUMMY_LOCATION == AT_ENTRY_POINT
966 real_pc = funaddr;
967#endif /* At entry point. */
bd5635a1
RP
968
969#ifdef lint
970 sp = old_sp; /* It really is used, for some ifdef's... */
971#endif
972
973#ifdef STACK_ALIGN
974 /* If stack grows down, we must leave a hole at the top. */
975 {
976 int len = 0;
977
978 /* Reserve space for the return structure to be written on the
979 stack, if necessary */
980
981 if (struct_return)
982 len += TYPE_LENGTH (value_type);
983
984 for (i = nargs - 1; i >= 0; i--)
985 len += TYPE_LENGTH (VALUE_TYPE (value_arg_coerce (args[i])));
986#ifdef CALL_DUMMY_STACK_ADJUST
987 len += CALL_DUMMY_STACK_ADJUST;
988#endif
989#if 1 INNER_THAN 2
990 sp -= STACK_ALIGN (len) - len;
991#else
992 sp += STACK_ALIGN (len) - len;
993#endif
994 }
995#endif /* STACK_ALIGN */
996
997 /* Reserve space for the return structure to be written on the
998 stack, if necessary */
999
1000 if (struct_return)
1001 {
1002#if 1 INNER_THAN 2
1003 sp -= TYPE_LENGTH (value_type);
1004 struct_addr = sp;
1005#else
1006 struct_addr = sp;
1007 sp += TYPE_LENGTH (value_type);
1008#endif
1009 }
1010
1011#if defined (REG_STRUCT_HAS_ADDR)
1012 {
1013 /* This is a machine like the sparc, where we need to pass a pointer
1014 to the structure, not the structure itself. */
1015 if (REG_STRUCT_HAS_ADDR (using_gcc))
1016 for (i = nargs - 1; i >= 0; i--)
1017 if (TYPE_CODE (VALUE_TYPE (args[i])) == TYPE_CODE_STRUCT)
1018 {
1019 CORE_ADDR addr;
1020#if !(1 INNER_THAN 2)
1021 /* The stack grows up, so the address of the thing we push
1022 is the stack pointer before we push it. */
1023 addr = sp;
1024#endif
1025 /* Push the structure. */
1026 sp = value_push (sp, args[i]);
1027#if 1 INNER_THAN 2
1028 /* The stack grows down, so the address of the thing we push
1029 is the stack pointer after we push it. */
1030 addr = sp;
1031#endif
1032 /* The value we're going to pass is the address of the thing
1033 we just pushed. */
06b6c733
JG
1034 args[i] = value_from_longest (lookup_pointer_type (value_type),
1035 (LONGEST) addr);
bd5635a1
RP
1036 }
1037 }
1038#endif /* REG_STRUCT_HAS_ADDR. */
1039
1040#ifdef PUSH_ARGUMENTS
1041 PUSH_ARGUMENTS(nargs, args, sp, struct_return, struct_addr);
1042#else /* !PUSH_ARGUMENTS */
1043 for (i = nargs - 1; i >= 0; i--)
1044 sp = value_arg_push (sp, args[i]);
1045#endif /* !PUSH_ARGUMENTS */
1046
1047#ifdef CALL_DUMMY_STACK_ADJUST
1048#if 1 INNER_THAN 2
1049 sp -= CALL_DUMMY_STACK_ADJUST;
1050#else
1051 sp += CALL_DUMMY_STACK_ADJUST;
1052#endif
1053#endif /* CALL_DUMMY_STACK_ADJUST */
1054
1055 /* Store the address at which the structure is supposed to be
1056 written. Note that this (and the code which reserved the space
1057 above) assumes that gcc was used to compile this function. Since
1058 it doesn't cost us anything but space and if the function is pcc
1059 it will ignore this value, we will make that assumption.
1060
1061 Also note that on some machines (like the sparc) pcc uses a
1062 convention like gcc's. */
1063
1064 if (struct_return)
1065 STORE_STRUCT_RETURN (struct_addr, sp);
1066
1067 /* Write the stack pointer. This is here because the statements above
1068 might fool with it. On SPARC, this write also stores the register
1069 window into the right place in the new stack frame, which otherwise
5632cd56 1070 wouldn't happen. (See store_inferior_registers in sparc-nat.c.) */
54023465 1071 write_sp (sp);
bd5635a1 1072
bd5635a1
RP
1073 {
1074 char retbuf[REGISTER_BYTES];
54023465
JK
1075 char *name;
1076 struct symbol *symbol;
1077
1078 name = NULL;
1079 symbol = find_pc_function (funaddr);
1080 if (symbol)
1081 {
1082 name = SYMBOL_SOURCE_NAME (symbol);
1083 }
1084 else
1085 {
1086 /* Try the minimal symbols. */
1087 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (funaddr);
1088
1089 if (msymbol)
1090 {
1091 name = SYMBOL_SOURCE_NAME (msymbol);
1092 }
1093 }
1094 if (name == NULL)
1095 {
1096 char format[80];
1097 sprintf (format, "at %s", local_hex_format ());
1098 name = alloca (80);
cef4c2e7 1099 sprintf (name, format, (unsigned long) funaddr);
54023465 1100 }
bd5635a1
RP
1101
1102 /* Execute the stack dummy routine, calling FUNCTION.
1103 When it is done, discard the empty frame
1104 after storing the contents of all regs into retbuf. */
860a1754
JK
1105 if (run_stack_dummy (real_pc + CALL_DUMMY_START_OFFSET, retbuf))
1106 {
1107 /* We stopped somewhere besides the call dummy. */
1108
1109 /* If we did the cleanups, we would print a spurious error message
1110 (Unable to restore previously selected frame), would write the
1111 registers from the inf_status (which is wrong), and would do other
1112 wrong things (like set stop_bpstat to the wrong thing). */
1113 discard_cleanups (old_chain);
1114 /* Prevent memory leak. */
30d20d15 1115 bpstat_clear (&inf_status.stop_bpstat);
860a1754
JK
1116
1117 /* The following error message used to say "The expression
1118 which contained the function call has been discarded." It
1119 is a hard concept to explain in a few words. Ideally, GDB
1120 would be able to resume evaluation of the expression when
1121 the function finally is done executing. Perhaps someday
1122 this will be implemented (it would not be easy). */
1123
1124 /* FIXME: Insert a bunch of wrap_here; name can be very long if it's
1125 a C++ name with arguments and stuff. */
1126 error ("\
1127The program being debugged stopped while in a function called from GDB.\n\
1128When the function (%s) is done executing, GDB will silently\n\
1129stop (instead of continuing to evaluate the expression containing\n\
1130the function call).", name);
1131 }
bd5635a1
RP
1132
1133 do_cleanups (old_chain);
1134
860a1754 1135 /* Figure out the value returned by the function. */
bd5635a1
RP
1136 return value_being_returned (value_type, retbuf, struct_return);
1137 }
1138}
1139#else /* no CALL_DUMMY. */
1140value
1141call_function_by_hand (function, nargs, args)
1142 value function;
1143 int nargs;
1144 value *args;
1145{
1146 error ("Cannot invoke functions on this machine.");
1147}
1148#endif /* no CALL_DUMMY. */
a163ddec 1149
bd5635a1 1150\f
a163ddec
MT
1151/* Create a value for an array by allocating space in the inferior, copying
1152 the data into that space, and then setting up an array value.
1153
1154 The array bounds are set from LOWBOUND and HIGHBOUND, and the array is
1155 populated from the values passed in ELEMVEC.
1156
1157 The element type of the array is inherited from the type of the
1158 first element, and all elements must have the same size (though we
1159 don't currently enforce any restriction on their types). */
bd5635a1
RP
1160
1161value
a163ddec
MT
1162value_array (lowbound, highbound, elemvec)
1163 int lowbound;
1164 int highbound;
1165 value *elemvec;
bd5635a1 1166{
a163ddec
MT
1167 int nelem;
1168 int idx;
1169 int typelength;
1170 value val;
1171 struct type *rangetype;
1172 struct type *arraytype;
1173 CORE_ADDR addr;
bd5635a1 1174
a163ddec
MT
1175 /* Validate that the bounds are reasonable and that each of the elements
1176 have the same size. */
bd5635a1 1177
a163ddec
MT
1178 nelem = highbound - lowbound + 1;
1179 if (nelem <= 0)
bd5635a1 1180 {
a163ddec 1181 error ("bad array bounds (%d, %d)", lowbound, highbound);
bd5635a1 1182 }
a163ddec
MT
1183 typelength = TYPE_LENGTH (VALUE_TYPE (elemvec[0]));
1184 for (idx = 0; idx < nelem; idx++)
bd5635a1 1185 {
a163ddec
MT
1186 if (TYPE_LENGTH (VALUE_TYPE (elemvec[idx])) != typelength)
1187 {
1188 error ("array elements must all be the same size");
1189 }
bd5635a1
RP
1190 }
1191
a163ddec
MT
1192 /* Allocate space to store the array in the inferior, and then initialize
1193 it by copying in each element. FIXME: Is it worth it to create a
1194 local buffer in which to collect each value and then write all the
1195 bytes in one operation? */
1196
1197 addr = allocate_space_in_inferior (nelem * typelength);
1198 for (idx = 0; idx < nelem; idx++)
1199 {
1200 write_memory (addr + (idx * typelength), VALUE_CONTENTS (elemvec[idx]),
1201 typelength);
1202 }
1203
1204 /* Create the array type and set up an array value to be evaluated lazily. */
1205
1206 rangetype = create_range_type ((struct type *) NULL, builtin_type_int,
1207 lowbound, highbound);
1208 arraytype = create_array_type ((struct type *) NULL,
1209 VALUE_TYPE (elemvec[0]), rangetype);
1210 val = value_at_lazy (arraytype, addr);
1211 return (val);
1212}
1213
1214/* Create a value for a string constant by allocating space in the inferior,
1215 copying the data into that space, and returning the address with type
1216 TYPE_CODE_STRING. PTR points to the string constant data; LEN is number
1217 of characters.
1218 Note that string types are like array of char types with a lower bound of
1219 zero and an upper bound of LEN - 1. Also note that the string may contain
1220 embedded null bytes. */
1221
1222value
1223value_string (ptr, len)
1224 char *ptr;
1225 int len;
1226{
1227 value val;
1228 struct type *rangetype;
1229 struct type *stringtype;
1230 CORE_ADDR addr;
1231
1232 /* Allocate space to store the string in the inferior, and then
1233 copy LEN bytes from PTR in gdb to that address in the inferior. */
1234
1235 addr = allocate_space_in_inferior (len);
1236 write_memory (addr, ptr, len);
1237
1238 /* Create the string type and set up a string value to be evaluated
1239 lazily. */
1240
1241 rangetype = create_range_type ((struct type *) NULL, builtin_type_int,
1242 0, len - 1);
1243 stringtype = create_string_type ((struct type *) NULL, rangetype);
1244 val = value_at_lazy (stringtype, addr);
1245 return (val);
bd5635a1
RP
1246}
1247\f
479fdd26
JK
1248/* See if we can pass arguments in T2 to a function which takes arguments
1249 of types T1. Both t1 and t2 are NULL-terminated vectors. If some
1250 arguments need coercion of some sort, then the coerced values are written
1251 into T2. Return value is 0 if the arguments could be matched, or the
1252 position at which they differ if not.
a163ddec
MT
1253
1254 STATICP is nonzero if the T1 argument list came from a
1255 static member function.
1256
1257 For non-static member functions, we ignore the first argument,
1258 which is the type of the instance variable. This is because we want
1259 to handle calls with objects from derived classes. This is not
1260 entirely correct: we should actually check to make sure that a
1261 requested operation is type secure, shouldn't we? FIXME. */
1262
1263static int
1264typecmp (staticp, t1, t2)
1265 int staticp;
1266 struct type *t1[];
1267 value t2[];
1268{
1269 int i;
1270
1271 if (t2 == 0)
1272 return 1;
1273 if (staticp && t1 == 0)
1274 return t2[1] != 0;
1275 if (t1 == 0)
1276 return 1;
1277 if (TYPE_CODE (t1[0]) == TYPE_CODE_VOID) return 0;
1278 if (t1[!staticp] == 0) return 0;
1279 for (i = !staticp; t1[i] && TYPE_CODE (t1[i]) != TYPE_CODE_VOID; i++)
1280 {
1281 if (! t2[i])
1282 return i+1;
1283 if (TYPE_CODE (t1[i]) == TYPE_CODE_REF
479fdd26
JK
1284 /* We should be doing hairy argument matching, as below. */
1285 && (TYPE_CODE (TYPE_TARGET_TYPE (t1[i]))
1286 == TYPE_CODE (VALUE_TYPE (t2[i]))))
1287 {
1288 t2[i] = value_addr (t2[i]);
1289 continue;
1290 }
1291
1292 if (TYPE_CODE (t1[i]) == TYPE_CODE_PTR
1293 && TYPE_CODE (VALUE_TYPE (t2[i])) == TYPE_CODE_ARRAY)
1294 /* Array to pointer is a `trivial conversion' according to the ARM. */
a163ddec 1295 continue;
479fdd26
JK
1296
1297 /* We should be doing much hairier argument matching (see section 13.2
1298 of the ARM), but as a quick kludge, just check for the same type
1299 code. */
a163ddec
MT
1300 if (TYPE_CODE (t1[i]) != TYPE_CODE (VALUE_TYPE (t2[i])))
1301 return i+1;
1302 }
1303 if (!t1[i]) return 0;
1304 return t2[i] ? i+1 : 0;
1305}
1306
bd5635a1
RP
1307/* Helper function used by value_struct_elt to recurse through baseclasses.
1308 Look for a field NAME in ARG1. Adjust the address of ARG1 by OFFSET bytes,
2a5ec41d 1309 and search in it assuming it has (class) type TYPE.
d3bab255
JK
1310 If found, return value, else return NULL.
1311
1312 If LOOKING_FOR_BASECLASS, then instead of looking for struct fields,
1313 look for a baseclass named NAME. */
bd5635a1
RP
1314
1315static value
d3bab255 1316search_struct_field (name, arg1, offset, type, looking_for_baseclass)
bd5635a1
RP
1317 char *name;
1318 register value arg1;
1319 int offset;
1320 register struct type *type;
d3bab255 1321 int looking_for_baseclass;
bd5635a1
RP
1322{
1323 int i;
1324
1325 check_stub_type (type);
1326
d3bab255
JK
1327 if (! looking_for_baseclass)
1328 for (i = TYPE_NFIELDS (type) - 1; i >= TYPE_N_BASECLASSES (type); i--)
1329 {
1330 char *t_field_name = TYPE_FIELD_NAME (type, i);
1331
2e4964ad 1332 if (t_field_name && STREQ (t_field_name, name))
d3bab255 1333 {
01be6913
PB
1334 value v;
1335 if (TYPE_FIELD_STATIC (type, i))
1336 {
1337 char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (type, i);
1338 struct symbol *sym =
2e4964ad
FF
1339 lookup_symbol (phys_name, 0, VAR_NAMESPACE, 0, NULL);
1340 if (sym == NULL)
1341 error ("Internal error: could not find physical static variable named %s",
1342 phys_name);
01be6913
PB
1343 v = value_at (TYPE_FIELD_TYPE (type, i),
1344 (CORE_ADDR)SYMBOL_BLOCK_VALUE (sym));
1345 }
1346 else
1347 v = value_primitive_field (arg1, offset, i, type);
d3bab255
JK
1348 if (v == 0)
1349 error("there is no field named %s", name);
1350 return v;
1351 }
1352 }
bd5635a1
RP
1353
1354 for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
1355 {
1356 value v;
1357 /* If we are looking for baseclasses, this is what we get when we
54023465
JK
1358 hit them. But it could happen that the base part's member name
1359 is not yet filled in. */
d3bab255 1360 int found_baseclass = (looking_for_baseclass
54023465 1361 && TYPE_BASECLASS_NAME (type, i) != NULL
2e4964ad 1362 && STREQ (name, TYPE_BASECLASS_NAME (type, i)));
bd5635a1
RP
1363
1364 if (BASETYPE_VIA_VIRTUAL (type, i))
1365 {
1366 value v2;
bac89d6c 1367 /* Fix to use baseclass_offset instead. FIXME */
d11c44f1
JG
1368 baseclass_addr (type, i, VALUE_CONTENTS (arg1) + offset,
1369 &v2, (int *)NULL);
bd5635a1
RP
1370 if (v2 == 0)
1371 error ("virtual baseclass botch");
1372 if (found_baseclass)
1373 return v2;
d3bab255
JK
1374 v = search_struct_field (name, v2, 0, TYPE_BASECLASS (type, i),
1375 looking_for_baseclass);
bd5635a1 1376 }
01be6913 1377 else if (found_baseclass)
bd5635a1
RP
1378 v = value_primitive_field (arg1, offset, i, type);
1379 else
1380 v = search_struct_field (name, arg1,
1381 offset + TYPE_BASECLASS_BITPOS (type, i) / 8,
d3bab255
JK
1382 TYPE_BASECLASS (type, i),
1383 looking_for_baseclass);
bd5635a1
RP
1384 if (v) return v;
1385 }
1386 return NULL;
1387}
1388
1389/* Helper function used by value_struct_elt to recurse through baseclasses.
1390 Look for a field NAME in ARG1. Adjust the address of ARG1 by OFFSET bytes,
2a5ec41d 1391 and search in it assuming it has (class) type TYPE.
cef4c2e7 1392 If found, return value, else if name matched and args not return (value)-1,
5b5c6d94 1393 else return NULL. */
bd5635a1
RP
1394
1395static value
bac89d6c 1396search_struct_method (name, arg1p, args, offset, static_memfuncp, type)
bd5635a1 1397 char *name;
bac89d6c 1398 register value *arg1p, *args;
bd5635a1
RP
1399 int offset, *static_memfuncp;
1400 register struct type *type;
1401{
1402 int i;
5b5c6d94 1403 static int name_matched = 0;
bd5635a1
RP
1404
1405 check_stub_type (type);
1406 for (i = TYPE_NFN_FIELDS (type) - 1; i >= 0; i--)
1407 {
1408 char *t_field_name = TYPE_FN_FIELDLIST_NAME (type, i);
2e4964ad 1409 if (t_field_name && STREQ (t_field_name, name))
bd5635a1 1410 {
d3bab255 1411 int j = TYPE_FN_FIELDLIST_LENGTH (type, i) - 1;
bd5635a1 1412 struct fn_field *f = TYPE_FN_FIELDLIST1 (type, i);
5b5c6d94 1413 name_matched = 1;
bd5635a1 1414
d3bab255
JK
1415 if (j > 0 && args == 0)
1416 error ("cannot resolve overloaded method `%s'", name);
1417 while (j >= 0)
bd5635a1 1418 {
8e9a3f3b 1419 if (TYPE_FN_FIELD_STUB (f, j))
bd5635a1
RP
1420 check_stub_method (type, i, j);
1421 if (!typecmp (TYPE_FN_FIELD_STATIC_P (f, j),
1422 TYPE_FN_FIELD_ARGS (f, j), args))
1423 {
1424 if (TYPE_FN_FIELD_VIRTUAL_P (f, j))
bac89d6c 1425 return (value)value_virtual_fn_field (arg1p, f, j, type, offset);
bd5635a1
RP
1426 if (TYPE_FN_FIELD_STATIC_P (f, j) && static_memfuncp)
1427 *static_memfuncp = 1;
bac89d6c 1428 return (value)value_fn_field (arg1p, f, j, type, offset);
bd5635a1 1429 }
d3bab255 1430 j--;
bd5635a1
RP
1431 }
1432 }
1433 }
1434
1435 for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
1436 {
bac89d6c 1437 value v;
01be6913 1438 int base_offset;
bd5635a1
RP
1439
1440 if (BASETYPE_VIA_VIRTUAL (type, i))
1441 {
9f739abd 1442 base_offset = baseclass_offset (type, i, *arg1p, offset);
bac89d6c 1443 if (base_offset == -1)
bd5635a1 1444 error ("virtual baseclass botch");
bd5635a1 1445 }
01be6913
PB
1446 else
1447 {
01be6913
PB
1448 base_offset = TYPE_BASECLASS_BITPOS (type, i) / 8;
1449 }
bac89d6c 1450 v = search_struct_method (name, arg1p, args, base_offset + offset,
bd5635a1 1451 static_memfuncp, TYPE_BASECLASS (type, i));
cef4c2e7 1452 if (v == (value) -1)
5b5c6d94
KH
1453 {
1454 name_matched = 1;
1455 }
1456 else if (v)
bac89d6c
FF
1457 {
1458/* FIXME-bothner: Why is this commented out? Why is it here? */
1459/* *arg1p = arg1_tmp;*/
1460 return v;
1461 }
bd5635a1 1462 }
cef4c2e7 1463 if (name_matched) return (value) -1;
5b5c6d94 1464 else return NULL;
bd5635a1
RP
1465}
1466
1467/* Given *ARGP, a value of type (pointer to a)* structure/union,
1468 extract the component named NAME from the ultimate target structure/union
1469 and return it as a value with its appropriate type.
1470 ERR is used in the error message if *ARGP's type is wrong.
1471
1472 C++: ARGS is a list of argument types to aid in the selection of
1473 an appropriate method. Also, handle derived types.
1474
1475 STATIC_MEMFUNCP, if non-NULL, points to a caller-supplied location
1476 where the truthvalue of whether the function that was resolved was
1477 a static member function or not is stored.
1478
1479 ERR is an error message to be printed in case the field is not found. */
1480
1481value
1482value_struct_elt (argp, args, name, static_memfuncp, err)
1483 register value *argp, *args;
1484 char *name;
1485 int *static_memfuncp;
1486 char *err;
1487{
1488 register struct type *t;
bd5635a1
RP
1489 value v;
1490
1491 COERCE_ARRAY (*argp);
1492
1493 t = VALUE_TYPE (*argp);
1494
1495 /* Follow pointers until we get to a non-pointer. */
1496
1497 while (TYPE_CODE (t) == TYPE_CODE_PTR || TYPE_CODE (t) == TYPE_CODE_REF)
1498 {
bd5635a1 1499 *argp = value_ind (*argp);
f2ebc25f
JK
1500 /* Don't coerce fn pointer to fn and then back again! */
1501 if (TYPE_CODE (VALUE_TYPE (*argp)) != TYPE_CODE_FUNC)
1502 COERCE_ARRAY (*argp);
bd5635a1
RP
1503 t = VALUE_TYPE (*argp);
1504 }
1505
1506 if (TYPE_CODE (t) == TYPE_CODE_MEMBER)
1507 error ("not implemented: member type in value_struct_elt");
1508
2a5ec41d 1509 if ( TYPE_CODE (t) != TYPE_CODE_STRUCT
bd5635a1
RP
1510 && TYPE_CODE (t) != TYPE_CODE_UNION)
1511 error ("Attempt to extract a component of a value that is not a %s.", err);
1512
1513 /* Assume it's not, unless we see that it is. */
1514 if (static_memfuncp)
1515 *static_memfuncp =0;
1516
1517 if (!args)
1518 {
1519 /* if there are no arguments ...do this... */
1520
d3bab255 1521 /* Try as a field first, because if we succeed, there
bd5635a1 1522 is less work to be done. */
d3bab255 1523 v = search_struct_field (name, *argp, 0, t, 0);
bd5635a1
RP
1524 if (v)
1525 return v;
1526
1527 /* C++: If it was not found as a data field, then try to
1528 return it as a pointer to a method. */
1529
1530 if (destructor_name_p (name, t))
1531 error ("Cannot get value of destructor");
1532
bac89d6c 1533 v = search_struct_method (name, argp, args, 0, static_memfuncp, t);
bd5635a1
RP
1534
1535 if (v == 0)
1536 {
1537 if (TYPE_NFN_FIELDS (t))
1538 error ("There is no member or method named %s.", name);
1539 else
1540 error ("There is no member named %s.", name);
1541 }
1542 return v;
1543 }
1544
1545 if (destructor_name_p (name, t))
1546 {
1547 if (!args[1])
1548 {
1549 /* destructors are a special case. */
bac89d6c
FF
1550 return (value)value_fn_field (NULL, TYPE_FN_FIELDLIST1 (t, 0),
1551 TYPE_FN_FIELDLIST_LENGTH (t, 0),
1552 0, 0);
bd5635a1
RP
1553 }
1554 else
1555 {
1556 error ("destructor should not have any argument");
1557 }
1558 }
1559 else
bac89d6c 1560 v = search_struct_method (name, argp, args, 0, static_memfuncp, t);
bd5635a1 1561
cef4c2e7 1562 if (v == (value) -1)
5b5c6d94
KH
1563 {
1564 error("Argument list of %s mismatch with component in the structure.", name);
1565 }
1566 else if (v == 0)
bd5635a1
RP
1567 {
1568 /* See if user tried to invoke data as function. If so,
1569 hand it back. If it's not callable (i.e., a pointer to function),
1570 gdb should give an error. */
d3bab255 1571 v = search_struct_field (name, *argp, 0, t, 0);
bd5635a1
RP
1572 }
1573
1574 if (!v)
1575 error ("Structure has no component named %s.", name);
1576 return v;
1577}
1578
1579/* C++: return 1 is NAME is a legitimate name for the destructor
1580 of type TYPE. If TYPE does not have a destructor, or
1581 if NAME is inappropriate for TYPE, an error is signaled. */
1582int
1583destructor_name_p (name, type)
7919c3ed
JG
1584 const char *name;
1585 const struct type *type;
bd5635a1
RP
1586{
1587 /* destructors are a special case. */
1588
1589 if (name[0] == '~')
1590 {
1591 char *dname = type_name_no_tag (type);
2e4964ad 1592 if (!STREQ (dname, name+1))
bd5635a1
RP
1593 error ("name of destructor must equal name of class");
1594 else
1595 return 1;
1596 }
1597 return 0;
1598}
1599
1600/* Helper function for check_field: Given TYPE, a structure/union,
1601 return 1 if the component named NAME from the ultimate
1602 target structure/union is defined, otherwise, return 0. */
1603
1604static int
1605check_field_in (type, name)
1606 register struct type *type;
01be6913 1607 const char *name;
bd5635a1
RP
1608{
1609 register int i;
1610
1611 for (i = TYPE_NFIELDS (type) - 1; i >= TYPE_N_BASECLASSES (type); i--)
1612 {
1613 char *t_field_name = TYPE_FIELD_NAME (type, i);
2e4964ad 1614 if (t_field_name && STREQ (t_field_name, name))
bd5635a1
RP
1615 return 1;
1616 }
1617
1618 /* C++: If it was not found as a data field, then try to
1619 return it as a pointer to a method. */
1620
1621 /* Destructors are a special case. */
1622 if (destructor_name_p (name, type))
1623 return 1;
1624
1625 for (i = TYPE_NFN_FIELDS (type) - 1; i >= 0; --i)
1626 {
2e4964ad 1627 if (STREQ (TYPE_FN_FIELDLIST_NAME (type, i), name))
bd5635a1
RP
1628 return 1;
1629 }
1630
1631 for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
1632 if (check_field_in (TYPE_BASECLASS (type, i), name))
1633 return 1;
1634
1635 return 0;
1636}
1637
1638
1639/* C++: Given ARG1, a value of type (pointer to a)* structure/union,
1640 return 1 if the component named NAME from the ultimate
1641 target structure/union is defined, otherwise, return 0. */
1642
1643int
1644check_field (arg1, name)
01be6913 1645 register value arg1;
7919c3ed 1646 const char *name;
bd5635a1
RP
1647{
1648 register struct type *t;
1649
1650 COERCE_ARRAY (arg1);
1651
1652 t = VALUE_TYPE (arg1);
1653
1654 /* Follow pointers until we get to a non-pointer. */
1655
1656 while (TYPE_CODE (t) == TYPE_CODE_PTR || TYPE_CODE (t) == TYPE_CODE_REF)
1657 t = TYPE_TARGET_TYPE (t);
1658
1659 if (TYPE_CODE (t) == TYPE_CODE_MEMBER)
1660 error ("not implemented: member type in check_field");
1661
2a5ec41d 1662 if ( TYPE_CODE (t) != TYPE_CODE_STRUCT
bd5635a1
RP
1663 && TYPE_CODE (t) != TYPE_CODE_UNION)
1664 error ("Internal error: `this' is not an aggregate");
1665
1666 return check_field_in (t, name);
1667}
1668
01be6913 1669/* C++: Given an aggregate type CURTYPE, and a member name NAME,
2a5ec41d 1670 return the address of this member as a "pointer to member"
bd5635a1
RP
1671 type. If INTYPE is non-null, then it will be the type
1672 of the member we are looking for. This will help us resolve
01be6913
PB
1673 "pointers to member functions". This function is used
1674 to resolve user expressions of the form "DOMAIN::NAME". */
bd5635a1
RP
1675
1676value
51b57ded 1677value_struct_elt_for_reference (domain, offset, curtype, name, intype)
01be6913 1678 struct type *domain, *curtype, *intype;
51b57ded 1679 int offset;
bd5635a1
RP
1680 char *name;
1681{
01be6913 1682 register struct type *t = curtype;
bd5635a1
RP
1683 register int i;
1684 value v;
1685
2a5ec41d 1686 if ( TYPE_CODE (t) != TYPE_CODE_STRUCT
bd5635a1 1687 && TYPE_CODE (t) != TYPE_CODE_UNION)
01be6913 1688 error ("Internal error: non-aggregate type to value_struct_elt_for_reference");
bd5635a1 1689
01be6913 1690 for (i = TYPE_NFIELDS (t) - 1; i >= TYPE_N_BASECLASSES (t); i--)
bd5635a1 1691 {
01be6913
PB
1692 char *t_field_name = TYPE_FIELD_NAME (t, i);
1693
2e4964ad 1694 if (t_field_name && STREQ (t_field_name, name))
bd5635a1 1695 {
01be6913 1696 if (TYPE_FIELD_STATIC (t, i))
bd5635a1 1697 {
01be6913
PB
1698 char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (t, i);
1699 struct symbol *sym =
1700 lookup_symbol (phys_name, 0, VAR_NAMESPACE, 0, NULL);
2e4964ad
FF
1701 if (sym == NULL)
1702 error ("Internal error: could not find physical static variable named %s",
01be6913
PB
1703 phys_name);
1704 return value_at (SYMBOL_TYPE (sym),
1705 (CORE_ADDR)SYMBOL_BLOCK_VALUE (sym));
bd5635a1 1706 }
01be6913
PB
1707 if (TYPE_FIELD_PACKED (t, i))
1708 error ("pointers to bitfield members not allowed");
1709
1710 return value_from_longest
1711 (lookup_reference_type (lookup_member_type (TYPE_FIELD_TYPE (t, i),
1712 domain)),
51b57ded 1713 offset + (LONGEST) (TYPE_FIELD_BITPOS (t, i) >> 3));
bd5635a1 1714 }
bd5635a1
RP
1715 }
1716
1717 /* C++: If it was not found as a data field, then try to
1718 return it as a pointer to a method. */
bd5635a1
RP
1719
1720 /* Destructors are a special case. */
1721 if (destructor_name_p (name, t))
1722 {
2a5ec41d 1723 error ("member pointers to destructors not implemented yet");
bd5635a1
RP
1724 }
1725
1726 /* Perform all necessary dereferencing. */
1727 while (intype && TYPE_CODE (intype) == TYPE_CODE_PTR)
1728 intype = TYPE_TARGET_TYPE (intype);
1729
01be6913 1730 for (i = TYPE_NFN_FIELDS (t) - 1; i >= 0; --i)
bd5635a1 1731 {
2e4964ad 1732 if (STREQ (TYPE_FN_FIELDLIST_NAME (t, i), name))
bd5635a1 1733 {
01be6913
PB
1734 int j = TYPE_FN_FIELDLIST_LENGTH (t, i);
1735 struct fn_field *f = TYPE_FN_FIELDLIST1 (t, i);
1736
1737 if (intype == 0 && j > 1)
1738 error ("non-unique member `%s' requires type instantiation", name);
1739 if (intype)
bd5635a1 1740 {
01be6913
PB
1741 while (j--)
1742 if (TYPE_FN_FIELD_TYPE (f, j) == intype)
1743 break;
1744 if (j < 0)
1745 error ("no member function matches that type instantiation");
1746 }
1747 else
1748 j = 0;
1749
1750 if (TYPE_FN_FIELD_STUB (f, j))
1751 check_stub_method (t, i, j);
1752 if (TYPE_FN_FIELD_VIRTUAL_P (f, j))
1753 {
1754 return value_from_longest
1755 (lookup_reference_type
1756 (lookup_member_type (TYPE_FN_FIELD_TYPE (f, j),
1757 domain)),
bac89d6c
FF
1758 (LONGEST) METHOD_PTR_FROM_VOFFSET
1759 (TYPE_FN_FIELD_VOFFSET (f, j)));
01be6913
PB
1760 }
1761 else
1762 {
1763 struct symbol *s = lookup_symbol (TYPE_FN_FIELD_PHYSNAME (f, j),
1764 0, VAR_NAMESPACE, 0, NULL);
35fcebce
PB
1765 if (s == NULL)
1766 {
1767 v = 0;
1768 }
1769 else
1770 {
1771 v = read_var_value (s, 0);
01be6913 1772#if 0
35fcebce
PB
1773 VALUE_TYPE (v) = lookup_reference_type
1774 (lookup_member_type (TYPE_FN_FIELD_TYPE (f, j),
1775 domain));
01be6913 1776#endif
bd5635a1 1777 }
35fcebce 1778 return v;
bd5635a1
RP
1779 }
1780 }
35fcebce 1781 }
01be6913
PB
1782 for (i = TYPE_N_BASECLASSES (t) - 1; i >= 0; i--)
1783 {
51b57ded
FF
1784 value v;
1785 int base_offset;
1786
1787 if (BASETYPE_VIA_VIRTUAL (t, i))
1788 base_offset = 0;
1789 else
1790 base_offset = TYPE_BASECLASS_BITPOS (t, i) / 8;
01be6913 1791 v = value_struct_elt_for_reference (domain,
51b57ded 1792 offset + base_offset,
01be6913
PB
1793 TYPE_BASECLASS (t, i),
1794 name,
1795 intype);
1796 if (v)
1797 return v;
bd5635a1
RP
1798 }
1799 return 0;
1800}
1801
bd5635a1
RP
1802/* C++: return the value of the class instance variable, if one exists.
1803 Flag COMPLAIN signals an error if the request is made in an
1804 inappropriate context. */
1805value
1806value_of_this (complain)
1807 int complain;
1808{
1809 extern FRAME selected_frame;
1810 struct symbol *func, *sym;
1811 struct block *b;
1812 int i;
1813 static const char funny_this[] = "this";
1814 value this;
bd5635a1
RP
1815
1816 if (selected_frame == 0)
1817 if (complain)
1818 error ("no frame selected");
1819 else return 0;
1820
1821 func = get_frame_function (selected_frame);
1822 if (!func)
1823 {
1824 if (complain)
1825 error ("no `this' in nameless context");
1826 else return 0;
1827 }
1828
1829 b = SYMBOL_BLOCK_VALUE (func);
1830 i = BLOCK_NSYMS (b);
1831 if (i <= 0)
1832 if (complain)
1833 error ("no args, no `this'");
1834 else return 0;
1835
1836 /* Calling lookup_block_symbol is necessary to get the LOC_REGISTER
1837 symbol instead of the LOC_ARG one (if both exist). */
1838 sym = lookup_block_symbol (b, funny_this, VAR_NAMESPACE);
1839 if (sym == NULL)
1840 {
1841 if (complain)
1842 error ("current stack frame not in method");
1843 else
1844 return NULL;
1845 }
1846
1847 this = read_var_value (sym, selected_frame);
1848 if (this == 0 && complain)
1849 error ("`this' argument at unknown address");
1850 return this;
1851}
This page took 0.239861 seconds and 4 git commands to generate.