gdb
[platform/upstream/binutils.git] / gdb / valops.c
1 /* Perform non-arithmetic operations on values, for GDB.
2
3    Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4    1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
5    2008, 2009, 2010 Free Software Foundation, Inc.
6
7    This file is part of GDB.
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
21
22 #include "defs.h"
23 #include "symtab.h"
24 #include "gdbtypes.h"
25 #include "value.h"
26 #include "frame.h"
27 #include "inferior.h"
28 #include "gdbcore.h"
29 #include "target.h"
30 #include "demangle.h"
31 #include "language.h"
32 #include "gdbcmd.h"
33 #include "regcache.h"
34 #include "cp-abi.h"
35 #include "block.h"
36 #include "infcall.h"
37 #include "dictionary.h"
38 #include "cp-support.h"
39 #include "dfp.h"
40 #include "user-regs.h"
41
42 #include <errno.h>
43 #include "gdb_string.h"
44 #include "gdb_assert.h"
45 #include "cp-support.h"
46 #include "observer.h"
47 #include "objfiles.h"
48 #include "symtab.h"
49
50 extern int overload_debug;
51 /* Local functions.  */
52
53 static int typecmp (int staticp, int varargs, int nargs,
54                     struct field t1[], struct value *t2[]);
55
56 static struct value *search_struct_field (char *, struct value *, 
57                                           int, struct type *, int);
58
59 static struct value *search_struct_method (char *, struct value **,
60                                        struct value **,
61                                        int, int *, struct type *);
62
63 static int find_oload_champ_namespace (struct type **, int,
64                                        const char *, const char *,
65                                        struct symbol ***,
66                                        struct badness_vector **);
67
68 static
69 int find_oload_champ_namespace_loop (struct type **, int,
70                                      const char *, const char *,
71                                      int, struct symbol ***,
72                                      struct badness_vector **, int *);
73
74 static int find_oload_champ (struct type **, int, int, int,
75                              struct fn_field *, struct symbol **,
76                              struct badness_vector **);
77
78 static int oload_method_static (int, struct fn_field *, int);
79
80 enum oload_classification { STANDARD, NON_STANDARD, INCOMPATIBLE };
81
82 static enum
83 oload_classification classify_oload_match (struct badness_vector *,
84                                            int, int);
85
86 static struct value *value_struct_elt_for_reference (struct type *,
87                                                      int, struct type *,
88                                                      char *,
89                                                      struct type *,
90                                                      int, enum noside);
91
92 static struct value *value_namespace_elt (const struct type *,
93                                           char *, int , enum noside);
94
95 static struct value *value_maybe_namespace_elt (const struct type *,
96                                                 char *, int,
97                                                 enum noside);
98
99 static CORE_ADDR allocate_space_in_inferior (int);
100
101 static struct value *cast_into_complex (struct type *, struct value *);
102
103 static struct fn_field *find_method_list (struct value **, char *,
104                                           int, struct type *, int *,
105                                           struct type **, int *);
106
107 void _initialize_valops (void);
108
109 #if 0
110 /* Flag for whether we want to abandon failed expression evals by
111    default.  */
112
113 static int auto_abandon = 0;
114 #endif
115
116 int overload_resolution = 0;
117 static void
118 show_overload_resolution (struct ui_file *file, int from_tty,
119                           struct cmd_list_element *c, 
120                           const char *value)
121 {
122   fprintf_filtered (file, _("\
123 Overload resolution in evaluating C++ functions is %s.\n"),
124                     value);
125 }
126
127 /* Find the address of function name NAME in the inferior.  If OBJF_P
128    is non-NULL, *OBJF_P will be set to the OBJFILE where the function
129    is defined.  */
130
131 struct value *
132 find_function_in_inferior (const char *name, struct objfile **objf_p)
133 {
134   struct symbol *sym;
135   sym = lookup_symbol (name, 0, VAR_DOMAIN, 0);
136   if (sym != NULL)
137     {
138       if (SYMBOL_CLASS (sym) != LOC_BLOCK)
139         {
140           error (_("\"%s\" exists in this program but is not a function."),
141                  name);
142         }
143
144       if (objf_p)
145         *objf_p = SYMBOL_SYMTAB (sym)->objfile;
146
147       return value_of_variable (sym, NULL);
148     }
149   else
150     {
151       struct minimal_symbol *msymbol = 
152         lookup_minimal_symbol (name, NULL, NULL);
153       if (msymbol != NULL)
154         {
155           struct objfile *objfile = msymbol_objfile (msymbol);
156           struct gdbarch *gdbarch = get_objfile_arch (objfile);
157
158           struct type *type;
159           CORE_ADDR maddr;
160           type = lookup_pointer_type (builtin_type (gdbarch)->builtin_char);
161           type = lookup_function_type (type);
162           type = lookup_pointer_type (type);
163           maddr = SYMBOL_VALUE_ADDRESS (msymbol);
164
165           if (objf_p)
166             *objf_p = objfile;
167
168           return value_from_pointer (type, maddr);
169         }
170       else
171         {
172           if (!target_has_execution)
173             error (_("evaluation of this expression requires the target program to be active"));
174           else
175             error (_("evaluation of this expression requires the program to have a function \"%s\"."), name);
176         }
177     }
178 }
179
180 /* Allocate NBYTES of space in the inferior using the inferior's
181    malloc and return a value that is a pointer to the allocated
182    space.  */
183
184 struct value *
185 value_allocate_space_in_inferior (int len)
186 {
187   struct objfile *objf;
188   struct value *val = find_function_in_inferior ("malloc", &objf);
189   struct gdbarch *gdbarch = get_objfile_arch (objf);
190   struct value *blocklen;
191
192   blocklen = value_from_longest (builtin_type (gdbarch)->builtin_int, len);
193   val = call_function_by_hand (val, 1, &blocklen);
194   if (value_logical_not (val))
195     {
196       if (!target_has_execution)
197         error (_("No memory available to program now: you need to start the target first"));
198       else
199         error (_("No memory available to program: call to malloc failed"));
200     }
201   return val;
202 }
203
204 static CORE_ADDR
205 allocate_space_in_inferior (int len)
206 {
207   return value_as_long (value_allocate_space_in_inferior (len));
208 }
209
210 /* Cast struct value VAL to type TYPE and return as a value.
211    Both type and val must be of TYPE_CODE_STRUCT or TYPE_CODE_UNION
212    for this to work.  Typedef to one of the codes is permitted.
213    Returns NULL if the cast is neither an upcast nor a downcast.  */
214
215 static struct value *
216 value_cast_structs (struct type *type, struct value *v2)
217 {
218   struct type *t1;
219   struct type *t2;
220   struct value *v;
221
222   gdb_assert (type != NULL && v2 != NULL);
223
224   t1 = check_typedef (type);
225   t2 = check_typedef (value_type (v2));
226
227   /* Check preconditions.  */
228   gdb_assert ((TYPE_CODE (t1) == TYPE_CODE_STRUCT
229                || TYPE_CODE (t1) == TYPE_CODE_UNION)
230               && !!"Precondition is that type is of STRUCT or UNION kind.");
231   gdb_assert ((TYPE_CODE (t2) == TYPE_CODE_STRUCT
232                || TYPE_CODE (t2) == TYPE_CODE_UNION)
233               && !!"Precondition is that value is of STRUCT or UNION kind");
234
235   if (TYPE_NAME (t1) != NULL
236       && TYPE_NAME (t2) != NULL
237       && !strcmp (TYPE_NAME (t1), TYPE_NAME (t2)))
238     return NULL;
239
240   /* Upcasting: look in the type of the source to see if it contains the
241      type of the target as a superclass.  If so, we'll need to
242      offset the pointer rather than just change its type.  */
243   if (TYPE_NAME (t1) != NULL)
244     {
245       v = search_struct_field (type_name_no_tag (t1),
246                                v2, 0, t2, 1);
247       if (v)
248         return v;
249     }
250
251   /* Downcasting: look in the type of the target to see if it contains the
252      type of the source as a superclass.  If so, we'll need to
253      offset the pointer rather than just change its type.
254      FIXME: This fails silently with virtual inheritance.  */
255   if (TYPE_NAME (t2) != NULL)
256     {
257       v = search_struct_field (type_name_no_tag (t2),
258                                value_zero (t1, not_lval), 0, t1, 1);
259       if (v)
260         {
261           /* Downcasting is possible (t1 is superclass of v2).  */
262           CORE_ADDR addr2 = value_address (v2);
263           addr2 -= value_address (v) + value_embedded_offset (v);
264           return value_at (type, addr2);
265         }
266     }
267
268   return NULL;
269 }
270
271 /* Cast one pointer or reference type to another.  Both TYPE and
272    the type of ARG2 should be pointer types, or else both should be
273    reference types.  Returns the new pointer or reference.  */
274
275 struct value *
276 value_cast_pointers (struct type *type, struct value *arg2)
277 {
278   struct type *type1 = check_typedef (type);
279   struct type *type2 = check_typedef (value_type (arg2));
280   struct type *t1 = check_typedef (TYPE_TARGET_TYPE (type));
281   struct type *t2 = check_typedef (TYPE_TARGET_TYPE (type2));
282
283   if (TYPE_CODE (t1) == TYPE_CODE_STRUCT
284       && TYPE_CODE (t2) == TYPE_CODE_STRUCT
285       && !value_logical_not (arg2))
286     {
287       struct value *v2;
288
289       if (TYPE_CODE (type2) == TYPE_CODE_REF)
290         v2 = coerce_ref (arg2);
291       else
292         v2 = value_ind (arg2);
293       gdb_assert (TYPE_CODE (check_typedef (value_type (v2))) == TYPE_CODE_STRUCT
294                   && !!"Why did coercion fail?");
295       v2 = value_cast_structs (t1, v2);
296       /* At this point we have what we can have, un-dereference if needed.  */
297       if (v2)
298         {
299           struct value *v = value_addr (v2);
300           deprecated_set_value_type (v, type);
301           return v;
302         }
303    }
304
305   /* No superclass found, just change the pointer type.  */
306   arg2 = value_copy (arg2);
307   deprecated_set_value_type (arg2, type);
308   arg2 = value_change_enclosing_type (arg2, type);
309   set_value_pointed_to_offset (arg2, 0);        /* pai: chk_val */
310   return arg2;
311 }
312
313 /* Cast value ARG2 to type TYPE and return as a value.
314    More general than a C cast: accepts any two types of the same length,
315    and if ARG2 is an lvalue it can be cast into anything at all.  */
316 /* In C++, casts may change pointer or object representations.  */
317
318 struct value *
319 value_cast (struct type *type, struct value *arg2)
320 {
321   enum type_code code1;
322   enum type_code code2;
323   int scalar;
324   struct type *type2;
325
326   int convert_to_boolean = 0;
327
328   if (value_type (arg2) == type)
329     return arg2;
330
331   code1 = TYPE_CODE (check_typedef (type));
332
333   /* Check if we are casting struct reference to struct reference.  */
334   if (code1 == TYPE_CODE_REF)
335     {
336       /* We dereference type; then we recurse and finally
337          we generate value of the given reference. Nothing wrong with 
338          that.  */
339       struct type *t1 = check_typedef (type);
340       struct type *dereftype = check_typedef (TYPE_TARGET_TYPE (t1));
341       struct value *val =  value_cast (dereftype, arg2);
342       return value_ref (val); 
343     }
344
345   code2 = TYPE_CODE (check_typedef (value_type (arg2)));
346
347   if (code2 == TYPE_CODE_REF)
348     /* We deref the value and then do the cast.  */
349     return value_cast (type, coerce_ref (arg2)); 
350
351   CHECK_TYPEDEF (type);
352   code1 = TYPE_CODE (type);
353   arg2 = coerce_ref (arg2);
354   type2 = check_typedef (value_type (arg2));
355
356   /* You can't cast to a reference type.  See value_cast_pointers
357      instead.  */
358   gdb_assert (code1 != TYPE_CODE_REF);
359
360   /* A cast to an undetermined-length array_type, such as 
361      (TYPE [])OBJECT, is treated like a cast to (TYPE [N])OBJECT,
362      where N is sizeof(OBJECT)/sizeof(TYPE).  */
363   if (code1 == TYPE_CODE_ARRAY)
364     {
365       struct type *element_type = TYPE_TARGET_TYPE (type);
366       unsigned element_length = TYPE_LENGTH (check_typedef (element_type));
367       if (element_length > 0 && TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED (type))
368         {
369           struct type *range_type = TYPE_INDEX_TYPE (type);
370           int val_length = TYPE_LENGTH (type2);
371           LONGEST low_bound, high_bound, new_length;
372           if (get_discrete_bounds (range_type, &low_bound, &high_bound) < 0)
373             low_bound = 0, high_bound = 0;
374           new_length = val_length / element_length;
375           if (val_length % element_length != 0)
376             warning (_("array element type size does not divide object size in cast"));
377           /* FIXME-type-allocation: need a way to free this type when
378              we are done with it.  */
379           range_type = create_range_type ((struct type *) NULL,
380                                           TYPE_TARGET_TYPE (range_type),
381                                           low_bound,
382                                           new_length + low_bound - 1);
383           deprecated_set_value_type (arg2, 
384                                      create_array_type ((struct type *) NULL,
385                                                         element_type, 
386                                                         range_type));
387           return arg2;
388         }
389     }
390
391   if (current_language->c_style_arrays
392       && TYPE_CODE (type2) == TYPE_CODE_ARRAY)
393     arg2 = value_coerce_array (arg2);
394
395   if (TYPE_CODE (type2) == TYPE_CODE_FUNC)
396     arg2 = value_coerce_function (arg2);
397
398   type2 = check_typedef (value_type (arg2));
399   code2 = TYPE_CODE (type2);
400
401   if (code1 == TYPE_CODE_COMPLEX)
402     return cast_into_complex (type, arg2);
403   if (code1 == TYPE_CODE_BOOL)
404     {
405       code1 = TYPE_CODE_INT;
406       convert_to_boolean = 1;
407     }
408   if (code1 == TYPE_CODE_CHAR)
409     code1 = TYPE_CODE_INT;
410   if (code2 == TYPE_CODE_BOOL || code2 == TYPE_CODE_CHAR)
411     code2 = TYPE_CODE_INT;
412
413   scalar = (code2 == TYPE_CODE_INT || code2 == TYPE_CODE_FLT
414             || code2 == TYPE_CODE_DECFLOAT || code2 == TYPE_CODE_ENUM
415             || code2 == TYPE_CODE_RANGE);
416
417   if ((code1 == TYPE_CODE_STRUCT || code1 == TYPE_CODE_UNION)
418       && (code2 == TYPE_CODE_STRUCT || code2 == TYPE_CODE_UNION)
419       && TYPE_NAME (type) != 0)
420     {
421       struct value *v = value_cast_structs (type, arg2);
422       if (v)
423         return v;
424     }
425
426   if (code1 == TYPE_CODE_FLT && scalar)
427     return value_from_double (type, value_as_double (arg2));
428   else if (code1 == TYPE_CODE_DECFLOAT && scalar)
429     {
430       enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
431       int dec_len = TYPE_LENGTH (type);
432       gdb_byte dec[16];
433
434       if (code2 == TYPE_CODE_FLT)
435         decimal_from_floating (arg2, dec, dec_len, byte_order);
436       else if (code2 == TYPE_CODE_DECFLOAT)
437         decimal_convert (value_contents (arg2), TYPE_LENGTH (type2),
438                          byte_order, dec, dec_len, byte_order);
439       else
440         /* The only option left is an integral type.  */
441         decimal_from_integral (arg2, dec, dec_len, byte_order);
442
443       return value_from_decfloat (type, dec);
444     }
445   else if ((code1 == TYPE_CODE_INT || code1 == TYPE_CODE_ENUM
446             || code1 == TYPE_CODE_RANGE)
447            && (scalar || code2 == TYPE_CODE_PTR
448                || code2 == TYPE_CODE_MEMBERPTR))
449     {
450       LONGEST longest;
451
452       /* When we cast pointers to integers, we mustn't use
453          gdbarch_pointer_to_address to find the address the pointer
454          represents, as value_as_long would.  GDB should evaluate
455          expressions just as the compiler would --- and the compiler
456          sees a cast as a simple reinterpretation of the pointer's
457          bits.  */
458       if (code2 == TYPE_CODE_PTR)
459         longest = extract_unsigned_integer
460                     (value_contents (arg2), TYPE_LENGTH (type2),
461                      gdbarch_byte_order (get_type_arch (type2)));
462       else
463         longest = value_as_long (arg2);
464       return value_from_longest (type, convert_to_boolean ?
465                                  (LONGEST) (longest ? 1 : 0) : longest);
466     }
467   else if (code1 == TYPE_CODE_PTR && (code2 == TYPE_CODE_INT  
468                                       || code2 == TYPE_CODE_ENUM 
469                                       || code2 == TYPE_CODE_RANGE))
470     {
471       /* TYPE_LENGTH (type) is the length of a pointer, but we really
472          want the length of an address! -- we are really dealing with
473          addresses (i.e., gdb representations) not pointers (i.e.,
474          target representations) here.
475
476          This allows things like "print *(int *)0x01000234" to work
477          without printing a misleading message -- which would
478          otherwise occur when dealing with a target having two byte
479          pointers and four byte addresses.  */
480
481       int addr_bit = gdbarch_addr_bit (get_type_arch (type2));
482
483       LONGEST longest = value_as_long (arg2);
484       if (addr_bit < sizeof (LONGEST) * HOST_CHAR_BIT)
485         {
486           if (longest >= ((LONGEST) 1 << addr_bit)
487               || longest <= -((LONGEST) 1 << addr_bit))
488             warning (_("value truncated"));
489         }
490       return value_from_longest (type, longest);
491     }
492   else if (code1 == TYPE_CODE_METHODPTR && code2 == TYPE_CODE_INT
493            && value_as_long (arg2) == 0)
494     {
495       struct value *result = allocate_value (type);
496       cplus_make_method_ptr (type, value_contents_writeable (result), 0, 0);
497       return result;
498     }
499   else if (code1 == TYPE_CODE_MEMBERPTR && code2 == TYPE_CODE_INT
500            && value_as_long (arg2) == 0)
501     {
502       /* The Itanium C++ ABI represents NULL pointers to members as
503          minus one, instead of biasing the normal case.  */
504       return value_from_longest (type, -1);
505     }
506   else if (TYPE_LENGTH (type) == TYPE_LENGTH (type2))
507     {
508       if (code1 == TYPE_CODE_PTR && code2 == TYPE_CODE_PTR)
509         return value_cast_pointers (type, arg2);
510
511       arg2 = value_copy (arg2);
512       deprecated_set_value_type (arg2, type);
513       arg2 = value_change_enclosing_type (arg2, type);
514       set_value_pointed_to_offset (arg2, 0);    /* pai: chk_val */
515       return arg2;
516     }
517   else if (VALUE_LVAL (arg2) == lval_memory)
518     return value_at_lazy (type, value_address (arg2));
519   else if (code1 == TYPE_CODE_VOID)
520     {
521       return value_zero (type, not_lval);
522     }
523   else
524     {
525       error (_("Invalid cast."));
526       return 0;
527     }
528 }
529
530 /* The C++ reinterpret_cast operator.  */
531
532 struct value *
533 value_reinterpret_cast (struct type *type, struct value *arg)
534 {
535   struct value *result;
536   struct type *real_type = check_typedef (type);
537   struct type *arg_type, *dest_type;
538   int is_ref = 0;
539   enum type_code dest_code, arg_code;
540
541   /* Do reference, function, and array conversion.  */
542   arg = coerce_array (arg);
543
544   /* Attempt to preserve the type the user asked for.  */
545   dest_type = type;
546
547   /* If we are casting to a reference type, transform
548      reinterpret_cast<T&>(V) to *reinterpret_cast<T*>(&V).  */
549   if (TYPE_CODE (real_type) == TYPE_CODE_REF)
550     {
551       is_ref = 1;
552       arg = value_addr (arg);
553       dest_type = lookup_pointer_type (TYPE_TARGET_TYPE (dest_type));
554       real_type = lookup_pointer_type (real_type);
555     }
556
557   arg_type = value_type (arg);
558
559   dest_code = TYPE_CODE (real_type);
560   arg_code = TYPE_CODE (arg_type);
561
562   /* We can convert pointer types, or any pointer type to int, or int
563      type to pointer.  */
564   if ((dest_code == TYPE_CODE_PTR && arg_code == TYPE_CODE_INT)
565       || (dest_code == TYPE_CODE_INT && arg_code == TYPE_CODE_PTR)
566       || (dest_code == TYPE_CODE_METHODPTR && arg_code == TYPE_CODE_INT)
567       || (dest_code == TYPE_CODE_INT && arg_code == TYPE_CODE_METHODPTR)
568       || (dest_code == TYPE_CODE_MEMBERPTR && arg_code == TYPE_CODE_INT)
569       || (dest_code == TYPE_CODE_INT && arg_code == TYPE_CODE_MEMBERPTR)
570       || (dest_code == arg_code
571           && (dest_code == TYPE_CODE_PTR
572               || dest_code == TYPE_CODE_METHODPTR
573               || dest_code == TYPE_CODE_MEMBERPTR)))
574     result = value_cast (dest_type, arg);
575   else
576     error (_("Invalid reinterpret_cast"));
577
578   if (is_ref)
579     result = value_cast (type, value_ref (value_ind (result)));
580
581   return result;
582 }
583
584 /* A helper for value_dynamic_cast.  This implements the first of two
585    runtime checks: we iterate over all the base classes of the value's
586    class which are equal to the desired class; if only one of these
587    holds the value, then it is the answer.  */
588
589 static int
590 dynamic_cast_check_1 (struct type *desired_type,
591                       const bfd_byte *contents,
592                       CORE_ADDR address,
593                       struct type *search_type,
594                       CORE_ADDR arg_addr,
595                       struct type *arg_type,
596                       struct value **result)
597 {
598   int i, result_count = 0;
599
600   for (i = 0; i < TYPE_N_BASECLASSES (search_type) && result_count < 2; ++i)
601     {
602       int offset = baseclass_offset (search_type, i, contents, address);
603       if (offset == -1)
604         error (_("virtual baseclass botch"));
605       if (class_types_same_p (desired_type, TYPE_BASECLASS (search_type, i)))
606         {
607           if (address + offset >= arg_addr
608               && address + offset < arg_addr + TYPE_LENGTH (arg_type))
609             {
610               ++result_count;
611               if (!*result)
612                 *result = value_at_lazy (TYPE_BASECLASS (search_type, i),
613                                          address + offset);
614             }
615         }
616       else
617         result_count += dynamic_cast_check_1 (desired_type,
618                                               contents + offset,
619                                               address + offset,
620                                               TYPE_BASECLASS (search_type, i),
621                                               arg_addr,
622                                               arg_type,
623                                               result);
624     }
625
626   return result_count;
627 }
628
629 /* A helper for value_dynamic_cast.  This implements the second of two
630    runtime checks: we look for a unique public sibling class of the
631    argument's declared class.  */
632
633 static int
634 dynamic_cast_check_2 (struct type *desired_type,
635                       const bfd_byte *contents,
636                       CORE_ADDR address,
637                       struct type *search_type,
638                       struct value **result)
639 {
640   int i, result_count = 0;
641
642   for (i = 0; i < TYPE_N_BASECLASSES (search_type) && result_count < 2; ++i)
643     {
644       int offset;
645
646       if (! BASETYPE_VIA_PUBLIC (search_type, i))
647         continue;
648
649       offset = baseclass_offset (search_type, i, contents, address);
650       if (offset == -1)
651         error (_("virtual baseclass botch"));
652       if (class_types_same_p (desired_type, TYPE_BASECLASS (search_type, i)))
653         {
654           ++result_count;
655           if (*result == NULL)
656             *result = value_at_lazy (TYPE_BASECLASS (search_type, i),
657                                      address + offset);
658         }
659       else
660         result_count += dynamic_cast_check_2 (desired_type,
661                                               contents + offset,
662                                               address + offset,
663                                               TYPE_BASECLASS (search_type, i),
664                                               result);
665     }
666
667   return result_count;
668 }
669
670 /* The C++ dynamic_cast operator.  */
671
672 struct value *
673 value_dynamic_cast (struct type *type, struct value *arg)
674 {
675   int unambiguous = 0, full, top, using_enc;
676   struct type *resolved_type = check_typedef (type);
677   struct type *arg_type = check_typedef (value_type (arg));
678   struct type *class_type, *rtti_type;
679   struct value *result, *tem, *original_arg = arg;
680   CORE_ADDR addr;
681   int is_ref = TYPE_CODE (resolved_type) == TYPE_CODE_REF;
682
683   if (TYPE_CODE (resolved_type) != TYPE_CODE_PTR
684       && TYPE_CODE (resolved_type) != TYPE_CODE_REF)
685     error (_("Argument to dynamic_cast must be a pointer or reference type"));
686   if (TYPE_CODE (TYPE_TARGET_TYPE (resolved_type)) != TYPE_CODE_VOID
687       && TYPE_CODE (TYPE_TARGET_TYPE (resolved_type)) != TYPE_CODE_CLASS)
688     error (_("Argument to dynamic_cast must be pointer to class or `void *'"));
689
690   class_type = check_typedef (TYPE_TARGET_TYPE (resolved_type));
691   if (TYPE_CODE (resolved_type) == TYPE_CODE_PTR)
692     {
693       if (TYPE_CODE (arg_type) != TYPE_CODE_PTR
694           && ! (TYPE_CODE (arg_type) == TYPE_CODE_INT
695                 && value_as_long (arg) == 0))
696         error (_("Argument to dynamic_cast does not have pointer type"));
697       if (TYPE_CODE (arg_type) == TYPE_CODE_PTR)
698         {
699           arg_type = check_typedef (TYPE_TARGET_TYPE (arg_type));
700           if (TYPE_CODE (arg_type) != TYPE_CODE_CLASS)
701             error (_("Argument to dynamic_cast does not have pointer to class type"));
702         }
703
704       /* Handle NULL pointers.  */
705       if (value_as_long (arg) == 0)
706         return value_zero (type, not_lval);
707
708       arg = value_ind (arg);
709     }
710   else
711     {
712       if (TYPE_CODE (arg_type) != TYPE_CODE_CLASS)
713         error (_("Argument to dynamic_cast does not have class type"));
714     }
715
716   /* If the classes are the same, just return the argument.  */
717   if (class_types_same_p (class_type, arg_type))
718     return value_cast (type, arg);
719
720   /* If the target type is a unique base class of the argument's
721      declared type, just cast it.  */
722   if (is_ancestor (class_type, arg_type))
723     {
724       if (is_unique_ancestor (class_type, arg))
725         return value_cast (type, original_arg);
726       error (_("Ambiguous dynamic_cast"));
727     }
728
729   rtti_type = value_rtti_type (arg, &full, &top, &using_enc);
730   if (! rtti_type)
731     error (_("Couldn't determine value's most derived type for dynamic_cast"));
732
733   /* Compute the most derived object's address.  */
734   addr = value_address (arg);
735   if (full)
736     {
737       /* Done.  */
738     }
739   else if (using_enc)
740     addr += top;
741   else
742     addr += top + value_embedded_offset (arg);
743
744   /* dynamic_cast<void *> means to return a pointer to the
745      most-derived object.  */
746   if (TYPE_CODE (resolved_type) == TYPE_CODE_PTR
747       && TYPE_CODE (TYPE_TARGET_TYPE (resolved_type)) == TYPE_CODE_VOID)
748     return value_at_lazy (type, addr);
749
750   tem = value_at (type, addr);
751
752   /* The first dynamic check specified in 5.2.7.  */
753   if (is_public_ancestor (arg_type, TYPE_TARGET_TYPE (resolved_type)))
754     {
755       if (class_types_same_p (rtti_type, TYPE_TARGET_TYPE (resolved_type)))
756         return tem;
757       result = NULL;
758       if (dynamic_cast_check_1 (TYPE_TARGET_TYPE (resolved_type),
759                                 value_contents (tem), value_address (tem),
760                                 rtti_type, addr,
761                                 arg_type,
762                                 &result) == 1)
763         return value_cast (type,
764                            is_ref ? value_ref (result) : value_addr (result));
765     }
766
767   /* The second dynamic check specified in 5.2.7.  */
768   result = NULL;
769   if (is_public_ancestor (arg_type, rtti_type)
770       && dynamic_cast_check_2 (TYPE_TARGET_TYPE (resolved_type),
771                                value_contents (tem), value_address (tem),
772                                rtti_type, &result) == 1)
773     return value_cast (type,
774                        is_ref ? value_ref (result) : value_addr (result));
775
776   if (TYPE_CODE (resolved_type) == TYPE_CODE_PTR)
777     return value_zero (type, not_lval);
778
779   error (_("dynamic_cast failed"));
780 }
781
782 /* Create a value of type TYPE that is zero, and return it.  */
783
784 struct value *
785 value_zero (struct type *type, enum lval_type lv)
786 {
787   struct value *val = allocate_value (type);
788   VALUE_LVAL (val) = lv;
789
790   return val;
791 }
792
793 /* Create a value of numeric type TYPE that is one, and return it.  */
794
795 struct value *
796 value_one (struct type *type, enum lval_type lv)
797 {
798   struct type *type1 = check_typedef (type);
799   struct value *val;
800
801   if (TYPE_CODE (type1) == TYPE_CODE_DECFLOAT)
802     {
803       enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
804       gdb_byte v[16];
805       decimal_from_string (v, TYPE_LENGTH (type), byte_order, "1");
806       val = value_from_decfloat (type, v);
807     }
808   else if (TYPE_CODE (type1) == TYPE_CODE_FLT)
809     {
810       val = value_from_double (type, (DOUBLEST) 1);
811     }
812   else if (is_integral_type (type1))
813     {
814       val = value_from_longest (type, (LONGEST) 1);
815     }
816   else
817     {
818       error (_("Not a numeric type."));
819     }
820
821   VALUE_LVAL (val) = lv;
822   return val;
823 }
824
825 /* Helper function for value_at, value_at_lazy, and value_at_lazy_stack.  */
826
827 static struct value *
828 get_value_at (struct type *type, CORE_ADDR addr, int lazy)
829 {
830   struct value *val;
831
832   if (TYPE_CODE (check_typedef (type)) == TYPE_CODE_VOID)
833     error (_("Attempt to dereference a generic pointer."));
834
835   if (lazy)
836     {
837       val = allocate_value_lazy (type);
838     }
839   else
840     {
841       val = allocate_value (type);
842       read_memory (addr, value_contents_all_raw (val), TYPE_LENGTH (type));
843     }
844
845   VALUE_LVAL (val) = lval_memory;
846   set_value_address (val, addr);
847
848   return val;
849 }
850
851 /* Return a value with type TYPE located at ADDR.
852
853    Call value_at only if the data needs to be fetched immediately;
854    if we can be 'lazy' and defer the fetch, perhaps indefinately, call
855    value_at_lazy instead.  value_at_lazy simply records the address of
856    the data and sets the lazy-evaluation-required flag.  The lazy flag
857    is tested in the value_contents macro, which is used if and when
858    the contents are actually required.
859
860    Note: value_at does *NOT* handle embedded offsets; perform such
861    adjustments before or after calling it.  */
862
863 struct value *
864 value_at (struct type *type, CORE_ADDR addr)
865 {
866   return get_value_at (type, addr, 0);
867 }
868
869 /* Return a lazy value with type TYPE located at ADDR (cf. value_at).  */
870
871 struct value *
872 value_at_lazy (struct type *type, CORE_ADDR addr)
873 {
874   return get_value_at (type, addr, 1);
875 }
876
877 /* Called only from the value_contents and value_contents_all()
878    macros, if the current data for a variable needs to be loaded into
879    value_contents(VAL).  Fetches the data from the user's process, and
880    clears the lazy flag to indicate that the data in the buffer is
881    valid.
882
883    If the value is zero-length, we avoid calling read_memory, which
884    would abort.  We mark the value as fetched anyway -- all 0 bytes of
885    it.
886
887    This function returns a value because it is used in the
888    value_contents macro as part of an expression, where a void would
889    not work.  The value is ignored.  */
890
891 int
892 value_fetch_lazy (struct value *val)
893 {
894   gdb_assert (value_lazy (val));
895   allocate_value_contents (val);
896   if (value_bitsize (val))
897     {
898       /* To read a lazy bitfield, read the entire enclosing value.  This
899          prevents reading the same block of (possibly volatile) memory once
900          per bitfield.  It would be even better to read only the containing
901          word, but we have no way to record that just specific bits of a
902          value have been fetched.  */
903       struct type *type = check_typedef (value_type (val));
904       enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
905       struct value *parent = value_parent (val);
906       LONGEST offset = value_offset (val);
907       LONGEST num = unpack_bits_as_long (value_type (val),
908                                          value_contents (parent) + offset,
909                                          value_bitpos (val),
910                                          value_bitsize (val));
911       int length = TYPE_LENGTH (type);
912       store_signed_integer (value_contents_raw (val), length, byte_order, num);
913     }
914   else if (VALUE_LVAL (val) == lval_memory)
915     {
916       CORE_ADDR addr = value_address (val);
917       int length = TYPE_LENGTH (check_typedef (value_enclosing_type (val)));
918
919       if (length)
920         {
921           if (value_stack (val))
922             read_stack (addr, value_contents_all_raw (val), length);
923           else
924             read_memory (addr, value_contents_all_raw (val), length);
925         }
926     }
927   else if (VALUE_LVAL (val) == lval_register)
928     {
929       struct frame_info *frame;
930       int regnum;
931       struct type *type = check_typedef (value_type (val));
932       struct value *new_val = val, *mark = value_mark ();
933
934       /* Offsets are not supported here; lazy register values must
935          refer to the entire register.  */
936       gdb_assert (value_offset (val) == 0);
937
938       while (VALUE_LVAL (new_val) == lval_register && value_lazy (new_val))
939         {
940           frame = frame_find_by_id (VALUE_FRAME_ID (new_val));
941           regnum = VALUE_REGNUM (new_val);
942
943           gdb_assert (frame != NULL);
944
945           /* Convertible register routines are used for multi-register
946              values and for interpretation in different types
947              (e.g. float or int from a double register).  Lazy
948              register values should have the register's natural type,
949              so they do not apply.  */
950           gdb_assert (!gdbarch_convert_register_p (get_frame_arch (frame),
951                                                    regnum, type));
952
953           new_val = get_frame_register_value (frame, regnum);
954         }
955
956       /* If it's still lazy (for instance, a saved register on the
957          stack), fetch it.  */
958       if (value_lazy (new_val))
959         value_fetch_lazy (new_val);
960
961       /* If the register was not saved, mark it unavailable.  */
962       if (value_optimized_out (new_val))
963         set_value_optimized_out (val, 1);
964       else
965         memcpy (value_contents_raw (val), value_contents (new_val),
966                 TYPE_LENGTH (type));
967
968       if (frame_debug)
969         {
970           struct gdbarch *gdbarch;
971           frame = frame_find_by_id (VALUE_FRAME_ID (val));
972           regnum = VALUE_REGNUM (val);
973           gdbarch = get_frame_arch (frame);
974
975           fprintf_unfiltered (gdb_stdlog, "\
976 { value_fetch_lazy (frame=%d,regnum=%d(%s),...) ",
977                               frame_relative_level (frame), regnum,
978                               user_reg_map_regnum_to_name (gdbarch, regnum));
979
980           fprintf_unfiltered (gdb_stdlog, "->");
981           if (value_optimized_out (new_val))
982             fprintf_unfiltered (gdb_stdlog, " optimized out");
983           else
984             {
985               int i;
986               const gdb_byte *buf = value_contents (new_val);
987
988               if (VALUE_LVAL (new_val) == lval_register)
989                 fprintf_unfiltered (gdb_stdlog, " register=%d",
990                                     VALUE_REGNUM (new_val));
991               else if (VALUE_LVAL (new_val) == lval_memory)
992                 fprintf_unfiltered (gdb_stdlog, " address=%s",
993                                     paddress (gdbarch,
994                                               value_address (new_val)));
995               else
996                 fprintf_unfiltered (gdb_stdlog, " computed");
997
998               fprintf_unfiltered (gdb_stdlog, " bytes=");
999               fprintf_unfiltered (gdb_stdlog, "[");
1000               for (i = 0; i < register_size (gdbarch, regnum); i++)
1001                 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
1002               fprintf_unfiltered (gdb_stdlog, "]");
1003             }
1004
1005           fprintf_unfiltered (gdb_stdlog, " }\n");
1006         }
1007
1008       /* Dispose of the intermediate values.  This prevents
1009          watchpoints from trying to watch the saved frame pointer.  */
1010       value_free_to_mark (mark);
1011     }
1012   else if (VALUE_LVAL (val) == lval_computed)
1013     value_computed_funcs (val)->read (val);
1014   else
1015     internal_error (__FILE__, __LINE__, "Unexpected lazy value type.");
1016
1017   set_value_lazy (val, 0);
1018   return 0;
1019 }
1020
1021
1022 /* Store the contents of FROMVAL into the location of TOVAL.
1023    Return a new value with the location of TOVAL and contents of FROMVAL.  */
1024
1025 struct value *
1026 value_assign (struct value *toval, struct value *fromval)
1027 {
1028   struct type *type;
1029   struct value *val;
1030   struct frame_id old_frame;
1031
1032   if (!deprecated_value_modifiable (toval))
1033     error (_("Left operand of assignment is not a modifiable lvalue."));
1034
1035   toval = coerce_ref (toval);
1036
1037   type = value_type (toval);
1038   if (VALUE_LVAL (toval) != lval_internalvar)
1039     {
1040       toval = value_coerce_to_target (toval);
1041       fromval = value_cast (type, fromval);
1042     }
1043   else
1044     {
1045       /* Coerce arrays and functions to pointers, except for arrays
1046          which only live in GDB's storage.  */
1047       if (!value_must_coerce_to_target (fromval))
1048         fromval = coerce_array (fromval);
1049     }
1050
1051   CHECK_TYPEDEF (type);
1052
1053   /* Since modifying a register can trash the frame chain, and
1054      modifying memory can trash the frame cache, we save the old frame
1055      and then restore the new frame afterwards.  */
1056   old_frame = get_frame_id (deprecated_safe_get_selected_frame ());
1057
1058   switch (VALUE_LVAL (toval))
1059     {
1060     case lval_internalvar:
1061       set_internalvar (VALUE_INTERNALVAR (toval), fromval);
1062       val = value_copy (fromval);
1063       val = value_change_enclosing_type (val, 
1064                                          value_enclosing_type (fromval));
1065       set_value_embedded_offset (val, value_embedded_offset (fromval));
1066       set_value_pointed_to_offset (val, 
1067                                    value_pointed_to_offset (fromval));
1068       return val;
1069
1070     case lval_internalvar_component:
1071       set_internalvar_component (VALUE_INTERNALVAR (toval),
1072                                  value_offset (toval),
1073                                  value_bitpos (toval),
1074                                  value_bitsize (toval),
1075                                  fromval);
1076       break;
1077
1078     case lval_memory:
1079       {
1080         const gdb_byte *dest_buffer;
1081         CORE_ADDR changed_addr;
1082         int changed_len;
1083         gdb_byte buffer[sizeof (LONGEST)];
1084
1085         if (value_bitsize (toval))
1086           {
1087             struct value *parent = value_parent (toval);
1088             changed_addr = value_address (parent) + value_offset (toval);
1089
1090             changed_len = (value_bitpos (toval)
1091                            + value_bitsize (toval)
1092                            + HOST_CHAR_BIT - 1)
1093               / HOST_CHAR_BIT;
1094
1095             /* If we can read-modify-write exactly the size of the
1096                containing type (e.g. short or int) then do so.  This
1097                is safer for volatile bitfields mapped to hardware
1098                registers.  */
1099             if (changed_len < TYPE_LENGTH (type)
1100                 && TYPE_LENGTH (type) <= (int) sizeof (LONGEST)
1101                 && ((LONGEST) changed_addr % TYPE_LENGTH (type)) == 0)
1102               changed_len = TYPE_LENGTH (type);
1103
1104             if (changed_len > (int) sizeof (LONGEST))
1105               error (_("Can't handle bitfields which don't fit in a %d bit word."),
1106                      (int) sizeof (LONGEST) * HOST_CHAR_BIT);
1107
1108             read_memory (changed_addr, buffer, changed_len);
1109             modify_field (type, buffer, value_as_long (fromval),
1110                           value_bitpos (toval), value_bitsize (toval));
1111             dest_buffer = buffer;
1112           }
1113         else
1114           {
1115             changed_addr = value_address (toval);
1116             changed_len = TYPE_LENGTH (type);
1117             dest_buffer = value_contents (fromval);
1118           }
1119
1120         write_memory (changed_addr, dest_buffer, changed_len);
1121         observer_notify_memory_changed (changed_addr, changed_len,
1122                                         dest_buffer);
1123       }
1124       break;
1125
1126     case lval_register:
1127       {
1128         struct frame_info *frame;
1129         struct gdbarch *gdbarch;
1130         int value_reg;
1131
1132         /* Figure out which frame this is in currently.  */
1133         frame = frame_find_by_id (VALUE_FRAME_ID (toval));
1134         value_reg = VALUE_REGNUM (toval);
1135
1136         if (!frame)
1137           error (_("Value being assigned to is no longer active."));
1138
1139         gdbarch = get_frame_arch (frame);
1140         if (gdbarch_convert_register_p (gdbarch, VALUE_REGNUM (toval), type))
1141           {
1142             /* If TOVAL is a special machine register requiring
1143                conversion of program values to a special raw
1144                format.  */
1145             gdbarch_value_to_register (gdbarch, frame,
1146                                        VALUE_REGNUM (toval), type,
1147                                        value_contents (fromval));
1148           }
1149         else
1150           {
1151             if (value_bitsize (toval))
1152               {
1153                 struct value *parent = value_parent (toval);
1154                 int offset = value_offset (parent) + value_offset (toval);
1155                 int changed_len;
1156                 gdb_byte buffer[sizeof (LONGEST)];
1157
1158                 changed_len = (value_bitpos (toval)
1159                                + value_bitsize (toval)
1160                                + HOST_CHAR_BIT - 1)
1161                   / HOST_CHAR_BIT;
1162
1163                 if (changed_len > (int) sizeof (LONGEST))
1164                   error (_("Can't handle bitfields which don't fit in a %d bit word."),
1165                          (int) sizeof (LONGEST) * HOST_CHAR_BIT);
1166
1167                 get_frame_register_bytes (frame, value_reg, offset,
1168                                           changed_len, buffer);
1169
1170                 modify_field (type, buffer, value_as_long (fromval),
1171                               value_bitpos (toval), value_bitsize (toval));
1172
1173                 put_frame_register_bytes (frame, value_reg, offset,
1174                                           changed_len, buffer);
1175               }
1176             else
1177               {
1178                 put_frame_register_bytes (frame, value_reg,
1179                                           value_offset (toval),
1180                                           TYPE_LENGTH (type),
1181                                           value_contents (fromval));
1182               }
1183           }
1184
1185         if (deprecated_register_changed_hook)
1186           deprecated_register_changed_hook (-1);
1187         observer_notify_target_changed (&current_target);
1188         break;
1189       }
1190
1191     case lval_computed:
1192       {
1193         struct lval_funcs *funcs = value_computed_funcs (toval);
1194
1195         funcs->write (toval, fromval);
1196       }
1197       break;
1198
1199     default:
1200       error (_("Left operand of assignment is not an lvalue."));
1201     }
1202
1203   /* Assigning to the stack pointer, frame pointer, and other
1204      (architecture and calling convention specific) registers may
1205      cause the frame cache to be out of date.  Assigning to memory
1206      also can.  We just do this on all assignments to registers or
1207      memory, for simplicity's sake; I doubt the slowdown matters.  */
1208   switch (VALUE_LVAL (toval))
1209     {
1210     case lval_memory:
1211     case lval_register:
1212
1213       reinit_frame_cache ();
1214
1215       /* Having destroyed the frame cache, restore the selected
1216          frame.  */
1217
1218       /* FIXME: cagney/2002-11-02: There has to be a better way of
1219          doing this.  Instead of constantly saving/restoring the
1220          frame.  Why not create a get_selected_frame() function that,
1221          having saved the selected frame's ID can automatically
1222          re-find the previously selected frame automatically.  */
1223
1224       {
1225         struct frame_info *fi = frame_find_by_id (old_frame);
1226         if (fi != NULL)
1227           select_frame (fi);
1228       }
1229
1230       break;
1231     default:
1232       break;
1233     }
1234   
1235   /* If the field does not entirely fill a LONGEST, then zero the sign
1236      bits.  If the field is signed, and is negative, then sign
1237      extend.  */
1238   if ((value_bitsize (toval) > 0)
1239       && (value_bitsize (toval) < 8 * (int) sizeof (LONGEST)))
1240     {
1241       LONGEST fieldval = value_as_long (fromval);
1242       LONGEST valmask = (((ULONGEST) 1) << value_bitsize (toval)) - 1;
1243
1244       fieldval &= valmask;
1245       if (!TYPE_UNSIGNED (type) 
1246           && (fieldval & (valmask ^ (valmask >> 1))))
1247         fieldval |= ~valmask;
1248
1249       fromval = value_from_longest (type, fieldval);
1250     }
1251
1252   val = value_copy (toval);
1253   memcpy (value_contents_raw (val), value_contents (fromval),
1254           TYPE_LENGTH (type));
1255   deprecated_set_value_type (val, type);
1256   val = value_change_enclosing_type (val, 
1257                                      value_enclosing_type (fromval));
1258   set_value_embedded_offset (val, value_embedded_offset (fromval));
1259   set_value_pointed_to_offset (val, value_pointed_to_offset (fromval));
1260
1261   return val;
1262 }
1263
1264 /* Extend a value VAL to COUNT repetitions of its type.  */
1265
1266 struct value *
1267 value_repeat (struct value *arg1, int count)
1268 {
1269   struct value *val;
1270
1271   if (VALUE_LVAL (arg1) != lval_memory)
1272     error (_("Only values in memory can be extended with '@'."));
1273   if (count < 1)
1274     error (_("Invalid number %d of repetitions."), count);
1275
1276   val = allocate_repeat_value (value_enclosing_type (arg1), count);
1277
1278   read_memory (value_address (arg1),
1279                value_contents_all_raw (val),
1280                TYPE_LENGTH (value_enclosing_type (val)));
1281   VALUE_LVAL (val) = lval_memory;
1282   set_value_address (val, value_address (arg1));
1283
1284   return val;
1285 }
1286
1287 struct value *
1288 value_of_variable (struct symbol *var, struct block *b)
1289 {
1290   struct value *val;
1291   struct frame_info *frame;
1292
1293   if (!symbol_read_needs_frame (var))
1294     frame = NULL;
1295   else if (!b)
1296     frame = get_selected_frame (_("No frame selected."));
1297   else
1298     {
1299       frame = block_innermost_frame (b);
1300       if (!frame)
1301         {
1302           if (BLOCK_FUNCTION (b) && !block_inlined_p (b)
1303               && SYMBOL_PRINT_NAME (BLOCK_FUNCTION (b)))
1304             error (_("No frame is currently executing in block %s."),
1305                    SYMBOL_PRINT_NAME (BLOCK_FUNCTION (b)));
1306           else
1307             error (_("No frame is currently executing in specified block"));
1308         }
1309     }
1310
1311   val = read_var_value (var, frame);
1312   if (!val)
1313     error (_("Address of symbol \"%s\" is unknown."), SYMBOL_PRINT_NAME (var));
1314
1315   return val;
1316 }
1317
1318 struct value *
1319 address_of_variable (struct symbol *var, struct block *b)
1320 {
1321   struct type *type = SYMBOL_TYPE (var);
1322   struct value *val;
1323
1324   /* Evaluate it first; if the result is a memory address, we're fine.
1325      Lazy evaluation pays off here. */
1326
1327   val = value_of_variable (var, b);
1328
1329   if ((VALUE_LVAL (val) == lval_memory && value_lazy (val))
1330       || TYPE_CODE (type) == TYPE_CODE_FUNC)
1331     {
1332       CORE_ADDR addr = value_address (val);
1333       return value_from_pointer (lookup_pointer_type (type), addr);
1334     }
1335
1336   /* Not a memory address; check what the problem was.  */
1337   switch (VALUE_LVAL (val))
1338     {
1339     case lval_register:
1340       {
1341         struct frame_info *frame;
1342         const char *regname;
1343
1344         frame = frame_find_by_id (VALUE_FRAME_ID (val));
1345         gdb_assert (frame);
1346
1347         regname = gdbarch_register_name (get_frame_arch (frame),
1348                                          VALUE_REGNUM (val));
1349         gdb_assert (regname && *regname);
1350
1351         error (_("Address requested for identifier "
1352                  "\"%s\" which is in register $%s"),
1353                SYMBOL_PRINT_NAME (var), regname);
1354         break;
1355       }
1356
1357     default:
1358       error (_("Can't take address of \"%s\" which isn't an lvalue."),
1359              SYMBOL_PRINT_NAME (var));
1360       break;
1361     }
1362
1363   return val;
1364 }
1365
1366 /* Return one if VAL does not live in target memory, but should in order
1367    to operate on it.  Otherwise return zero.  */
1368
1369 int
1370 value_must_coerce_to_target (struct value *val)
1371 {
1372   struct type *valtype;
1373
1374   /* The only lval kinds which do not live in target memory.  */
1375   if (VALUE_LVAL (val) != not_lval
1376       && VALUE_LVAL (val) != lval_internalvar)
1377     return 0;
1378
1379   valtype = check_typedef (value_type (val));
1380
1381   switch (TYPE_CODE (valtype))
1382     {
1383     case TYPE_CODE_ARRAY:
1384     case TYPE_CODE_STRING:
1385       return 1;
1386     default:
1387       return 0;
1388     }
1389 }
1390
1391 /* Make sure that VAL lives in target memory if it's supposed to.  For instance,
1392    strings are constructed as character arrays in GDB's storage, and this
1393    function copies them to the target.  */
1394
1395 struct value *
1396 value_coerce_to_target (struct value *val)
1397 {
1398   LONGEST length;
1399   CORE_ADDR addr;
1400
1401   if (!value_must_coerce_to_target (val))
1402     return val;
1403
1404   length = TYPE_LENGTH (check_typedef (value_type (val)));
1405   addr = allocate_space_in_inferior (length);
1406   write_memory (addr, value_contents (val), length);
1407   return value_at_lazy (value_type (val), addr);
1408 }
1409
1410 /* Given a value which is an array, return a value which is a pointer
1411    to its first element, regardless of whether or not the array has a
1412    nonzero lower bound.
1413
1414    FIXME: A previous comment here indicated that this routine should
1415    be substracting the array's lower bound.  It's not clear to me that
1416    this is correct.  Given an array subscripting operation, it would
1417    certainly work to do the adjustment here, essentially computing:
1418
1419    (&array[0] - (lowerbound * sizeof array[0])) + (index * sizeof array[0])
1420
1421    However I believe a more appropriate and logical place to account
1422    for the lower bound is to do so in value_subscript, essentially
1423    computing:
1424
1425    (&array[0] + ((index - lowerbound) * sizeof array[0]))
1426
1427    As further evidence consider what would happen with operations
1428    other than array subscripting, where the caller would get back a
1429    value that had an address somewhere before the actual first element
1430    of the array, and the information about the lower bound would be
1431    lost because of the coercion to pointer type.
1432  */
1433
1434 struct value *
1435 value_coerce_array (struct value *arg1)
1436 {
1437   struct type *type = check_typedef (value_type (arg1));
1438
1439   /* If the user tries to do something requiring a pointer with an
1440      array that has not yet been pushed to the target, then this would
1441      be a good time to do so.  */
1442   arg1 = value_coerce_to_target (arg1);
1443
1444   if (VALUE_LVAL (arg1) != lval_memory)
1445     error (_("Attempt to take address of value not located in memory."));
1446
1447   return value_from_pointer (lookup_pointer_type (TYPE_TARGET_TYPE (type)),
1448                              value_address (arg1));
1449 }
1450
1451 /* Given a value which is a function, return a value which is a pointer
1452    to it.  */
1453
1454 struct value *
1455 value_coerce_function (struct value *arg1)
1456 {
1457   struct value *retval;
1458
1459   if (VALUE_LVAL (arg1) != lval_memory)
1460     error (_("Attempt to take address of value not located in memory."));
1461
1462   retval = value_from_pointer (lookup_pointer_type (value_type (arg1)),
1463                                value_address (arg1));
1464   return retval;
1465 }
1466
1467 /* Return a pointer value for the object for which ARG1 is the
1468    contents.  */
1469
1470 struct value *
1471 value_addr (struct value *arg1)
1472 {
1473   struct value *arg2;
1474
1475   struct type *type = check_typedef (value_type (arg1));
1476   if (TYPE_CODE (type) == TYPE_CODE_REF)
1477     {
1478       /* Copy the value, but change the type from (T&) to (T*).  We
1479          keep the same location information, which is efficient, and
1480          allows &(&X) to get the location containing the reference.  */
1481       arg2 = value_copy (arg1);
1482       deprecated_set_value_type (arg2, 
1483                                  lookup_pointer_type (TYPE_TARGET_TYPE (type)));
1484       return arg2;
1485     }
1486   if (TYPE_CODE (type) == TYPE_CODE_FUNC)
1487     return value_coerce_function (arg1);
1488
1489   /* If this is an array that has not yet been pushed to the target,
1490      then this would be a good time to force it to memory.  */
1491   arg1 = value_coerce_to_target (arg1);
1492
1493   if (VALUE_LVAL (arg1) != lval_memory)
1494     error (_("Attempt to take address of value not located in memory."));
1495
1496   /* Get target memory address */
1497   arg2 = value_from_pointer (lookup_pointer_type (value_type (arg1)),
1498                              (value_address (arg1)
1499                               + value_embedded_offset (arg1)));
1500
1501   /* This may be a pointer to a base subobject; so remember the
1502      full derived object's type ...  */
1503   arg2 = value_change_enclosing_type (arg2, lookup_pointer_type (value_enclosing_type (arg1)));
1504   /* ... and also the relative position of the subobject in the full
1505      object.  */
1506   set_value_pointed_to_offset (arg2, value_embedded_offset (arg1));
1507   return arg2;
1508 }
1509
1510 /* Return a reference value for the object for which ARG1 is the
1511    contents.  */
1512
1513 struct value *
1514 value_ref (struct value *arg1)
1515 {
1516   struct value *arg2;
1517
1518   struct type *type = check_typedef (value_type (arg1));
1519   if (TYPE_CODE (type) == TYPE_CODE_REF)
1520     return arg1;
1521
1522   arg2 = value_addr (arg1);
1523   deprecated_set_value_type (arg2, lookup_reference_type (type));
1524   return arg2;
1525 }
1526
1527 /* Given a value of a pointer type, apply the C unary * operator to
1528    it.  */
1529
1530 struct value *
1531 value_ind (struct value *arg1)
1532 {
1533   struct type *base_type;
1534   struct value *arg2;
1535
1536   arg1 = coerce_array (arg1);
1537
1538   base_type = check_typedef (value_type (arg1));
1539
1540   if (TYPE_CODE (base_type) == TYPE_CODE_PTR)
1541     {
1542       struct type *enc_type;
1543       /* We may be pointing to something embedded in a larger object.
1544          Get the real type of the enclosing object.  */
1545       enc_type = check_typedef (value_enclosing_type (arg1));
1546       enc_type = TYPE_TARGET_TYPE (enc_type);
1547
1548       if (TYPE_CODE (check_typedef (enc_type)) == TYPE_CODE_FUNC
1549           || TYPE_CODE (check_typedef (enc_type)) == TYPE_CODE_METHOD)
1550         /* For functions, go through find_function_addr, which knows
1551            how to handle function descriptors.  */
1552         arg2 = value_at_lazy (enc_type, 
1553                               find_function_addr (arg1, NULL));
1554       else
1555         /* Retrieve the enclosing object pointed to */
1556         arg2 = value_at_lazy (enc_type, 
1557                               (value_as_address (arg1)
1558                                - value_pointed_to_offset (arg1)));
1559
1560       /* Re-adjust type.  */
1561       deprecated_set_value_type (arg2, TYPE_TARGET_TYPE (base_type));
1562       /* Add embedding info.  */
1563       arg2 = value_change_enclosing_type (arg2, enc_type);
1564       set_value_embedded_offset (arg2, value_pointed_to_offset (arg1));
1565
1566       /* We may be pointing to an object of some derived type.  */
1567       arg2 = value_full_object (arg2, NULL, 0, 0, 0);
1568       return arg2;
1569     }
1570
1571   error (_("Attempt to take contents of a non-pointer value."));
1572   return 0;                     /* For lint -- never reached.  */
1573 }
1574 \f
1575 /* Create a value for an array by allocating space in GDB, copying
1576    copying the data into that space, and then setting up an array
1577    value.
1578
1579    The array bounds are set from LOWBOUND and HIGHBOUND, and the array
1580    is populated from the values passed in ELEMVEC.
1581
1582    The element type of the array is inherited from the type of the
1583    first element, and all elements must have the same size (though we
1584    don't currently enforce any restriction on their types).  */
1585
1586 struct value *
1587 value_array (int lowbound, int highbound, struct value **elemvec)
1588 {
1589   int nelem;
1590   int idx;
1591   unsigned int typelength;
1592   struct value *val;
1593   struct type *arraytype;
1594   CORE_ADDR addr;
1595
1596   /* Validate that the bounds are reasonable and that each of the
1597      elements have the same size.  */
1598
1599   nelem = highbound - lowbound + 1;
1600   if (nelem <= 0)
1601     {
1602       error (_("bad array bounds (%d, %d)"), lowbound, highbound);
1603     }
1604   typelength = TYPE_LENGTH (value_enclosing_type (elemvec[0]));
1605   for (idx = 1; idx < nelem; idx++)
1606     {
1607       if (TYPE_LENGTH (value_enclosing_type (elemvec[idx])) != typelength)
1608         {
1609           error (_("array elements must all be the same size"));
1610         }
1611     }
1612
1613   arraytype = lookup_array_range_type (value_enclosing_type (elemvec[0]),
1614                                        lowbound, highbound);
1615
1616   if (!current_language->c_style_arrays)
1617     {
1618       val = allocate_value (arraytype);
1619       for (idx = 0; idx < nelem; idx++)
1620         {
1621           memcpy (value_contents_all_raw (val) + (idx * typelength),
1622                   value_contents_all (elemvec[idx]),
1623                   typelength);
1624         }
1625       return val;
1626     }
1627
1628   /* Allocate space to store the array, and then initialize it by
1629      copying in each element.  */
1630
1631   val = allocate_value (arraytype);
1632   for (idx = 0; idx < nelem; idx++)
1633     memcpy (value_contents_writeable (val) + (idx * typelength),
1634             value_contents_all (elemvec[idx]),
1635             typelength);
1636   return val;
1637 }
1638
1639 struct value *
1640 value_cstring (char *ptr, int len, struct type *char_type)
1641 {
1642   struct value *val;
1643   int lowbound = current_language->string_lower_bound;
1644   int highbound = len / TYPE_LENGTH (char_type);
1645   struct type *stringtype
1646     = lookup_array_range_type (char_type, lowbound, highbound + lowbound - 1);
1647
1648   val = allocate_value (stringtype);
1649   memcpy (value_contents_raw (val), ptr, len);
1650   return val;
1651 }
1652
1653 /* Create a value for a string constant by allocating space in the
1654    inferior, copying the data into that space, and returning the
1655    address with type TYPE_CODE_STRING.  PTR points to the string
1656    constant data; LEN is number of characters.
1657
1658    Note that string types are like array of char types with a lower
1659    bound of zero and an upper bound of LEN - 1.  Also note that the
1660    string may contain embedded null bytes.  */
1661
1662 struct value *
1663 value_string (char *ptr, int len, struct type *char_type)
1664 {
1665   struct value *val;
1666   int lowbound = current_language->string_lower_bound;
1667   int highbound = len / TYPE_LENGTH (char_type);
1668   struct type *stringtype
1669     = lookup_string_range_type (char_type, lowbound, highbound + lowbound - 1);
1670
1671   val = allocate_value (stringtype);
1672   memcpy (value_contents_raw (val), ptr, len);
1673   return val;
1674 }
1675
1676 struct value *
1677 value_bitstring (char *ptr, int len, struct type *index_type)
1678 {
1679   struct value *val;
1680   struct type *domain_type
1681     = create_range_type (NULL, index_type, 0, len - 1);
1682   struct type *type = create_set_type (NULL, domain_type);
1683   TYPE_CODE (type) = TYPE_CODE_BITSTRING;
1684   val = allocate_value (type);
1685   memcpy (value_contents_raw (val), ptr, TYPE_LENGTH (type));
1686   return val;
1687 }
1688 \f
1689 /* See if we can pass arguments in T2 to a function which takes
1690    arguments of types T1.  T1 is a list of NARGS arguments, and T2 is
1691    a NULL-terminated vector.  If some arguments need coercion of some
1692    sort, then the coerced values are written into T2.  Return value is
1693    0 if the arguments could be matched, or the position at which they
1694    differ if not.
1695
1696    STATICP is nonzero if the T1 argument list came from a static
1697    member function.  T2 will still include the ``this'' pointer, but
1698    it will be skipped.
1699
1700    For non-static member functions, we ignore the first argument,
1701    which is the type of the instance variable.  This is because we
1702    want to handle calls with objects from derived classes.  This is
1703    not entirely correct: we should actually check to make sure that a
1704    requested operation is type secure, shouldn't we?  FIXME.  */
1705
1706 static int
1707 typecmp (int staticp, int varargs, int nargs,
1708          struct field t1[], struct value *t2[])
1709 {
1710   int i;
1711
1712   if (t2 == 0)
1713     internal_error (__FILE__, __LINE__, 
1714                     _("typecmp: no argument list"));
1715
1716   /* Skip ``this'' argument if applicable.  T2 will always include
1717      THIS.  */
1718   if (staticp)
1719     t2 ++;
1720
1721   for (i = 0;
1722        (i < nargs) && TYPE_CODE (t1[i].type) != TYPE_CODE_VOID;
1723        i++)
1724     {
1725       struct type *tt1, *tt2;
1726
1727       if (!t2[i])
1728         return i + 1;
1729
1730       tt1 = check_typedef (t1[i].type);
1731       tt2 = check_typedef (value_type (t2[i]));
1732
1733       if (TYPE_CODE (tt1) == TYPE_CODE_REF
1734       /* We should be doing hairy argument matching, as below.  */
1735           && (TYPE_CODE (check_typedef (TYPE_TARGET_TYPE (tt1))) == TYPE_CODE (tt2)))
1736         {
1737           if (TYPE_CODE (tt2) == TYPE_CODE_ARRAY)
1738             t2[i] = value_coerce_array (t2[i]);
1739           else
1740             t2[i] = value_ref (t2[i]);
1741           continue;
1742         }
1743
1744       /* djb - 20000715 - Until the new type structure is in the
1745          place, and we can attempt things like implicit conversions,
1746          we need to do this so you can take something like a map<const
1747          char *>, and properly access map["hello"], because the
1748          argument to [] will be a reference to a pointer to a char,
1749          and the argument will be a pointer to a char.  */
1750       while (TYPE_CODE(tt1) == TYPE_CODE_REF
1751              || TYPE_CODE (tt1) == TYPE_CODE_PTR)
1752         {
1753           tt1 = check_typedef( TYPE_TARGET_TYPE(tt1) );
1754         }
1755       while (TYPE_CODE(tt2) == TYPE_CODE_ARRAY
1756              || TYPE_CODE(tt2) == TYPE_CODE_PTR
1757              || TYPE_CODE(tt2) == TYPE_CODE_REF)
1758         {
1759           tt2 = check_typedef (TYPE_TARGET_TYPE(tt2));
1760         }
1761       if (TYPE_CODE (tt1) == TYPE_CODE (tt2))
1762         continue;
1763       /* Array to pointer is a `trivial conversion' according to the
1764          ARM.  */
1765
1766       /* We should be doing much hairier argument matching (see
1767          section 13.2 of the ARM), but as a quick kludge, just check
1768          for the same type code.  */
1769       if (TYPE_CODE (t1[i].type) != TYPE_CODE (value_type (t2[i])))
1770         return i + 1;
1771     }
1772   if (varargs || t2[i] == NULL)
1773     return 0;
1774   return i + 1;
1775 }
1776
1777 /* Helper function used by value_struct_elt to recurse through
1778    baseclasses.  Look for a field NAME in ARG1. Adjust the address of
1779    ARG1 by OFFSET bytes, and search in it assuming it has (class) type
1780    TYPE.  If found, return value, else return NULL.
1781
1782    If LOOKING_FOR_BASECLASS, then instead of looking for struct
1783    fields, look for a baseclass named NAME.  */
1784
1785 static struct value *
1786 search_struct_field (char *name, struct value *arg1, int offset,
1787                      struct type *type, int looking_for_baseclass)
1788 {
1789   int i;
1790   int nbases;
1791
1792   CHECK_TYPEDEF (type);
1793   nbases = TYPE_N_BASECLASSES (type);
1794
1795   if (!looking_for_baseclass)
1796     for (i = TYPE_NFIELDS (type) - 1; i >= nbases; i--)
1797       {
1798         char *t_field_name = TYPE_FIELD_NAME (type, i);
1799
1800         if (t_field_name && (strcmp_iw (t_field_name, name) == 0))
1801           {
1802             struct value *v;
1803             if (field_is_static (&TYPE_FIELD (type, i)))
1804               {
1805                 v = value_static_field (type, i);
1806                 if (v == 0)
1807                   error (_("field %s is nonexistent or has been optimised out"),
1808                          name);
1809               }
1810             else
1811               {
1812                 v = value_primitive_field (arg1, offset, i, type);
1813                 if (v == 0)
1814                   error (_("there is no field named %s"), name);
1815               }
1816             return v;
1817           }
1818
1819         if (t_field_name
1820             && (t_field_name[0] == '\0'
1821                 || (TYPE_CODE (type) == TYPE_CODE_UNION
1822                     && (strcmp_iw (t_field_name, "else") == 0))))
1823           {
1824             struct type *field_type = TYPE_FIELD_TYPE (type, i);
1825             if (TYPE_CODE (field_type) == TYPE_CODE_UNION
1826                 || TYPE_CODE (field_type) == TYPE_CODE_STRUCT)
1827               {
1828                 /* Look for a match through the fields of an anonymous
1829                    union, or anonymous struct.  C++ provides anonymous
1830                    unions.
1831
1832                    In the GNU Chill (now deleted from GDB)
1833                    implementation of variant record types, each
1834                    <alternative field> has an (anonymous) union type,
1835                    each member of the union represents a <variant
1836                    alternative>.  Each <variant alternative> is
1837                    represented as a struct, with a member for each
1838                    <variant field>.  */
1839
1840                 struct value *v;
1841                 int new_offset = offset;
1842
1843                 /* This is pretty gross.  In G++, the offset in an
1844                    anonymous union is relative to the beginning of the
1845                    enclosing struct.  In the GNU Chill (now deleted
1846                    from GDB) implementation of variant records, the
1847                    bitpos is zero in an anonymous union field, so we
1848                    have to add the offset of the union here.  */
1849                 if (TYPE_CODE (field_type) == TYPE_CODE_STRUCT
1850                     || (TYPE_NFIELDS (field_type) > 0
1851                         && TYPE_FIELD_BITPOS (field_type, 0) == 0))
1852                   new_offset += TYPE_FIELD_BITPOS (type, i) / 8;
1853
1854                 v = search_struct_field (name, arg1, new_offset, 
1855                                          field_type,
1856                                          looking_for_baseclass);
1857                 if (v)
1858                   return v;
1859               }
1860           }
1861       }
1862
1863   for (i = 0; i < nbases; i++)
1864     {
1865       struct value *v;
1866       struct type *basetype = check_typedef (TYPE_BASECLASS (type, i));
1867       /* If we are looking for baseclasses, this is what we get when
1868          we hit them.  But it could happen that the base part's member
1869          name is not yet filled in.  */
1870       int found_baseclass = (looking_for_baseclass
1871                              && TYPE_BASECLASS_NAME (type, i) != NULL
1872                              && (strcmp_iw (name, 
1873                                             TYPE_BASECLASS_NAME (type, 
1874                                                                  i)) == 0));
1875
1876       if (BASETYPE_VIA_VIRTUAL (type, i))
1877         {
1878           int boffset;
1879           struct value *v2;
1880
1881           boffset = baseclass_offset (type, i,
1882                                       value_contents (arg1) + offset,
1883                                       value_address (arg1) + offset);
1884           if (boffset == -1)
1885             error (_("virtual baseclass botch"));
1886
1887           /* The virtual base class pointer might have been clobbered
1888              by the user program. Make sure that it still points to a
1889              valid memory location.  */
1890
1891           boffset += offset;
1892           if (boffset < 0 || boffset >= TYPE_LENGTH (type))
1893             {
1894               CORE_ADDR base_addr;
1895
1896               v2  = allocate_value (basetype);
1897               base_addr = value_address (arg1) + boffset;
1898               if (target_read_memory (base_addr, 
1899                                       value_contents_raw (v2),
1900                                       TYPE_LENGTH (basetype)) != 0)
1901                 error (_("virtual baseclass botch"));
1902               VALUE_LVAL (v2) = lval_memory;
1903               set_value_address (v2, base_addr);
1904             }
1905           else
1906             {
1907               if (VALUE_LVAL (arg1) == lval_memory && value_lazy (arg1))
1908                 v2  = allocate_value_lazy (basetype);
1909               else
1910                 {
1911                   v2  = allocate_value (basetype);
1912                   memcpy (value_contents_raw (v2),
1913                           value_contents_raw (arg1) + boffset,
1914                           TYPE_LENGTH (basetype));
1915                 }
1916               set_value_component_location (v2, arg1);
1917               VALUE_FRAME_ID (v2) = VALUE_FRAME_ID (arg1);
1918               set_value_offset (v2, value_offset (arg1) + boffset);
1919             }
1920
1921           if (found_baseclass)
1922             return v2;
1923           v = search_struct_field (name, v2, 0,
1924                                    TYPE_BASECLASS (type, i),
1925                                    looking_for_baseclass);
1926         }
1927       else if (found_baseclass)
1928         v = value_primitive_field (arg1, offset, i, type);
1929       else
1930         v = search_struct_field (name, arg1,
1931                                  offset + TYPE_BASECLASS_BITPOS (type, 
1932                                                                  i) / 8,
1933                                  basetype, looking_for_baseclass);
1934       if (v)
1935         return v;
1936     }
1937   return NULL;
1938 }
1939
1940 /* Helper function used by value_struct_elt to recurse through
1941    baseclasses.  Look for a field NAME in ARG1. Adjust the address of
1942    ARG1 by OFFSET bytes, and search in it assuming it has (class) type
1943    TYPE.
1944
1945    If found, return value, else if name matched and args not return
1946    (value) -1, else return NULL.  */
1947
1948 static struct value *
1949 search_struct_method (char *name, struct value **arg1p,
1950                       struct value **args, int offset,
1951                       int *static_memfuncp, struct type *type)
1952 {
1953   int i;
1954   struct value *v;
1955   int name_matched = 0;
1956   char dem_opname[64];
1957
1958   CHECK_TYPEDEF (type);
1959   for (i = TYPE_NFN_FIELDS (type) - 1; i >= 0; i--)
1960     {
1961       char *t_field_name = TYPE_FN_FIELDLIST_NAME (type, i);
1962       /* FIXME!  May need to check for ARM demangling here */
1963       if (strncmp (t_field_name, "__", 2) == 0 ||
1964           strncmp (t_field_name, "op", 2) == 0 ||
1965           strncmp (t_field_name, "type", 4) == 0)
1966         {
1967           if (cplus_demangle_opname (t_field_name, dem_opname, DMGL_ANSI))
1968             t_field_name = dem_opname;
1969           else if (cplus_demangle_opname (t_field_name, dem_opname, 0))
1970             t_field_name = dem_opname;
1971         }
1972       if (t_field_name && (strcmp_iw (t_field_name, name) == 0))
1973         {
1974           int j = TYPE_FN_FIELDLIST_LENGTH (type, i) - 1;
1975           struct fn_field *f = TYPE_FN_FIELDLIST1 (type, i);
1976           name_matched = 1;
1977
1978           check_stub_method_group (type, i);
1979           if (j > 0 && args == 0)
1980             error (_("cannot resolve overloaded method `%s': no arguments supplied"), name);
1981           else if (j == 0 && args == 0)
1982             {
1983               v = value_fn_field (arg1p, f, j, type, offset);
1984               if (v != NULL)
1985                 return v;
1986             }
1987           else
1988             while (j >= 0)
1989               {
1990                 if (!typecmp (TYPE_FN_FIELD_STATIC_P (f, j),
1991                               TYPE_VARARGS (TYPE_FN_FIELD_TYPE (f, j)),
1992                               TYPE_NFIELDS (TYPE_FN_FIELD_TYPE (f, j)),
1993                               TYPE_FN_FIELD_ARGS (f, j), args))
1994                   {
1995                     if (TYPE_FN_FIELD_VIRTUAL_P (f, j))
1996                       return value_virtual_fn_field (arg1p, f, j, 
1997                                                      type, offset);
1998                     if (TYPE_FN_FIELD_STATIC_P (f, j) 
1999                         && static_memfuncp)
2000                       *static_memfuncp = 1;
2001                     v = value_fn_field (arg1p, f, j, type, offset);
2002                     if (v != NULL)
2003                       return v;       
2004                   }
2005                 j--;
2006               }
2007         }
2008     }
2009
2010   for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
2011     {
2012       int base_offset;
2013
2014       if (BASETYPE_VIA_VIRTUAL (type, i))
2015         {
2016           struct type *baseclass = check_typedef (TYPE_BASECLASS (type, i));
2017           const gdb_byte *base_valaddr;
2018
2019           /* The virtual base class pointer might have been
2020              clobbered by the user program. Make sure that it
2021             still points to a valid memory location.  */
2022
2023           if (offset < 0 || offset >= TYPE_LENGTH (type))
2024             {
2025               gdb_byte *tmp = alloca (TYPE_LENGTH (baseclass));
2026               if (target_read_memory (value_address (*arg1p) + offset,
2027                                       tmp, TYPE_LENGTH (baseclass)) != 0)
2028                 error (_("virtual baseclass botch"));
2029               base_valaddr = tmp;
2030             }
2031           else
2032             base_valaddr = value_contents (*arg1p) + offset;
2033
2034           base_offset = baseclass_offset (type, i, base_valaddr,
2035                                           value_address (*arg1p) + offset);
2036           if (base_offset == -1)
2037             error (_("virtual baseclass botch"));
2038         }
2039       else
2040         {
2041           base_offset = TYPE_BASECLASS_BITPOS (type, i) / 8;
2042         }
2043       v = search_struct_method (name, arg1p, args, base_offset + offset,
2044                                 static_memfuncp, TYPE_BASECLASS (type, i));
2045       if (v == (struct value *) - 1)
2046         {
2047           name_matched = 1;
2048         }
2049       else if (v)
2050         {
2051           /* FIXME-bothner:  Why is this commented out?  Why is it here?  */
2052           /* *arg1p = arg1_tmp; */
2053           return v;
2054         }
2055     }
2056   if (name_matched)
2057     return (struct value *) - 1;
2058   else
2059     return NULL;
2060 }
2061
2062 /* Given *ARGP, a value of type (pointer to a)* structure/union,
2063    extract the component named NAME from the ultimate target
2064    structure/union and return it as a value with its appropriate type.
2065    ERR is used in the error message if *ARGP's type is wrong.
2066
2067    C++: ARGS is a list of argument types to aid in the selection of
2068    an appropriate method. Also, handle derived types.
2069
2070    STATIC_MEMFUNCP, if non-NULL, points to a caller-supplied location
2071    where the truthvalue of whether the function that was resolved was
2072    a static member function or not is stored.
2073
2074    ERR is an error message to be printed in case the field is not
2075    found.  */
2076
2077 struct value *
2078 value_struct_elt (struct value **argp, struct value **args,
2079                   char *name, int *static_memfuncp, char *err)
2080 {
2081   struct type *t;
2082   struct value *v;
2083
2084   *argp = coerce_array (*argp);
2085
2086   t = check_typedef (value_type (*argp));
2087
2088   /* Follow pointers until we get to a non-pointer.  */
2089
2090   while (TYPE_CODE (t) == TYPE_CODE_PTR || TYPE_CODE (t) == TYPE_CODE_REF)
2091     {
2092       *argp = value_ind (*argp);
2093       /* Don't coerce fn pointer to fn and then back again!  */
2094       if (TYPE_CODE (value_type (*argp)) != TYPE_CODE_FUNC)
2095         *argp = coerce_array (*argp);
2096       t = check_typedef (value_type (*argp));
2097     }
2098
2099   if (TYPE_CODE (t) != TYPE_CODE_STRUCT
2100       && TYPE_CODE (t) != TYPE_CODE_UNION)
2101     error (_("Attempt to extract a component of a value that is not a %s."), err);
2102
2103   /* Assume it's not, unless we see that it is.  */
2104   if (static_memfuncp)
2105     *static_memfuncp = 0;
2106
2107   if (!args)
2108     {
2109       /* if there are no arguments ...do this...  */
2110
2111       /* Try as a field first, because if we succeed, there is less
2112          work to be done.  */
2113       v = search_struct_field (name, *argp, 0, t, 0);
2114       if (v)
2115         return v;
2116
2117       /* C++: If it was not found as a data field, then try to
2118          return it as a pointer to a method.  */
2119       v = search_struct_method (name, argp, args, 0, 
2120                                 static_memfuncp, t);
2121
2122       if (v == (struct value *) - 1)
2123         error (_("Cannot take address of method %s."), name);
2124       else if (v == 0)
2125         {
2126           if (TYPE_NFN_FIELDS (t))
2127             error (_("There is no member or method named %s."), name);
2128           else
2129             error (_("There is no member named %s."), name);
2130         }
2131       return v;
2132     }
2133
2134     v = search_struct_method (name, argp, args, 0, 
2135                               static_memfuncp, t);
2136   
2137   if (v == (struct value *) - 1)
2138     {
2139       error (_("One of the arguments you tried to pass to %s could not be converted to what the function wants."), name);
2140     }
2141   else if (v == 0)
2142     {
2143       /* See if user tried to invoke data as function.  If so, hand it
2144          back.  If it's not callable (i.e., a pointer to function),
2145          gdb should give an error.  */
2146       v = search_struct_field (name, *argp, 0, t, 0);
2147       /* If we found an ordinary field, then it is not a method call.
2148          So, treat it as if it were a static member function.  */
2149       if (v && static_memfuncp)
2150         *static_memfuncp = 1;
2151     }
2152
2153   if (!v)
2154     error (_("Structure has no component named %s."), name);
2155   return v;
2156 }
2157
2158 /* Search through the methods of an object (and its bases) to find a
2159    specified method.  Return the pointer to the fn_field list of
2160    overloaded instances.
2161
2162    Helper function for value_find_oload_list.
2163    ARGP is a pointer to a pointer to a value (the object).
2164    METHOD is a string containing the method name.
2165    OFFSET is the offset within the value.
2166    TYPE is the assumed type of the object.
2167    NUM_FNS is the number of overloaded instances.
2168    BASETYPE is set to the actual type of the subobject where the
2169       method is found.
2170    BOFFSET is the offset of the base subobject where the method is found.
2171 */
2172
2173 static struct fn_field *
2174 find_method_list (struct value **argp, char *method,
2175                   int offset, struct type *type, int *num_fns,
2176                   struct type **basetype, int *boffset)
2177 {
2178   int i;
2179   struct fn_field *f;
2180   CHECK_TYPEDEF (type);
2181
2182   *num_fns = 0;
2183
2184   /* First check in object itself.  */
2185   for (i = TYPE_NFN_FIELDS (type) - 1; i >= 0; i--)
2186     {
2187       /* pai: FIXME What about operators and type conversions?  */
2188       char *fn_field_name = TYPE_FN_FIELDLIST_NAME (type, i);
2189       if (fn_field_name && (strcmp_iw (fn_field_name, method) == 0))
2190         {
2191           int len = TYPE_FN_FIELDLIST_LENGTH (type, i);
2192           struct fn_field *f = TYPE_FN_FIELDLIST1 (type, i);
2193
2194           *num_fns = len;
2195           *basetype = type;
2196           *boffset = offset;
2197
2198           /* Resolve any stub methods.  */
2199           check_stub_method_group (type, i);
2200
2201           return f;
2202         }
2203     }
2204
2205   /* Not found in object, check in base subobjects.  */
2206   for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
2207     {
2208       int base_offset;
2209       if (BASETYPE_VIA_VIRTUAL (type, i))
2210         {
2211           base_offset = value_offset (*argp) + offset;
2212           base_offset = baseclass_offset (type, i,
2213                                           value_contents (*argp) + base_offset,
2214                                           value_address (*argp) + base_offset);
2215           if (base_offset == -1)
2216             error (_("virtual baseclass botch"));
2217         }
2218       else /* Non-virtual base, simply use bit position from debug
2219               info.  */
2220         {
2221           base_offset = TYPE_BASECLASS_BITPOS (type, i) / 8;
2222         }
2223       f = find_method_list (argp, method, base_offset + offset,
2224                             TYPE_BASECLASS (type, i), num_fns, 
2225                             basetype, boffset);
2226       if (f)
2227         return f;
2228     }
2229   return NULL;
2230 }
2231
2232 /* Return the list of overloaded methods of a specified name.
2233
2234    ARGP is a pointer to a pointer to a value (the object).
2235    METHOD is the method name.
2236    OFFSET is the offset within the value contents.
2237    NUM_FNS is the number of overloaded instances.
2238    BASETYPE is set to the type of the base subobject that defines the
2239       method.
2240    BOFFSET is the offset of the base subobject which defines the method. 
2241 */
2242
2243 struct fn_field *
2244 value_find_oload_method_list (struct value **argp, char *method, 
2245                               int offset, int *num_fns, 
2246                               struct type **basetype, int *boffset)
2247 {
2248   struct type *t;
2249
2250   t = check_typedef (value_type (*argp));
2251
2252   /* Code snarfed from value_struct_elt.  */
2253   while (TYPE_CODE (t) == TYPE_CODE_PTR || TYPE_CODE (t) == TYPE_CODE_REF)
2254     {
2255       *argp = value_ind (*argp);
2256       /* Don't coerce fn pointer to fn and then back again!  */
2257       if (TYPE_CODE (value_type (*argp)) != TYPE_CODE_FUNC)
2258         *argp = coerce_array (*argp);
2259       t = check_typedef (value_type (*argp));
2260     }
2261
2262   if (TYPE_CODE (t) != TYPE_CODE_STRUCT
2263       && TYPE_CODE (t) != TYPE_CODE_UNION)
2264     error (_("Attempt to extract a component of a value that is not a struct or union"));
2265
2266   return find_method_list (argp, method, 0, t, num_fns, 
2267                            basetype, boffset);
2268 }
2269
2270 /* Given an array of argument types (ARGTYPES) (which includes an
2271    entry for "this" in the case of C++ methods), the number of
2272    arguments NARGS, the NAME of a function whether it's a method or
2273    not (METHOD), and the degree of laxness (LAX) in conforming to
2274    overload resolution rules in ANSI C++, find the best function that
2275    matches on the argument types according to the overload resolution
2276    rules.
2277
2278    In the case of class methods, the parameter OBJ is an object value
2279    in which to search for overloaded methods.
2280
2281    In the case of non-method functions, the parameter FSYM is a symbol
2282    corresponding to one of the overloaded functions.
2283
2284    Return value is an integer: 0 -> good match, 10 -> debugger applied
2285    non-standard coercions, 100 -> incompatible.
2286
2287    If a method is being searched for, VALP will hold the value.
2288    If a non-method is being searched for, SYMP will hold the symbol 
2289    for it.
2290
2291    If a method is being searched for, and it is a static method,
2292    then STATICP will point to a non-zero value.
2293
2294    Note: This function does *not* check the value of
2295    overload_resolution.  Caller must check it to see whether overload
2296    resolution is permitted.
2297 */
2298
2299 int
2300 find_overload_match (struct type **arg_types, int nargs, 
2301                      char *name, int method, int lax, 
2302                      struct value **objp, struct symbol *fsym,
2303                      struct value **valp, struct symbol **symp, 
2304                      int *staticp)
2305 {
2306   struct value *obj = (objp ? *objp : NULL);
2307   /* Index of best overloaded function.  */
2308   int oload_champ;
2309   /* The measure for the current best match.  */
2310   struct badness_vector *oload_champ_bv = NULL;
2311   struct value *temp = obj;
2312   /* For methods, the list of overloaded methods.  */
2313   struct fn_field *fns_ptr = NULL;
2314   /* For non-methods, the list of overloaded function symbols.  */
2315   struct symbol **oload_syms = NULL;
2316   /* Number of overloaded instances being considered.  */
2317   int num_fns = 0;
2318   struct type *basetype = NULL;
2319   int boffset;
2320   int ix;
2321   int static_offset;
2322   struct cleanup *old_cleanups = NULL;
2323
2324   const char *obj_type_name = NULL;
2325   char *func_name = NULL;
2326   enum oload_classification match_quality;
2327
2328   /* Get the list of overloaded methods or functions.  */
2329   if (method)
2330     {
2331       gdb_assert (obj);
2332       obj_type_name = TYPE_NAME (value_type (obj));
2333       /* Hack: evaluate_subexp_standard often passes in a pointer
2334          value rather than the object itself, so try again.  */
2335       if ((!obj_type_name || !*obj_type_name) 
2336           && (TYPE_CODE (value_type (obj)) == TYPE_CODE_PTR))
2337         obj_type_name = TYPE_NAME (TYPE_TARGET_TYPE (value_type (obj)));
2338
2339       fns_ptr = value_find_oload_method_list (&temp, name, 
2340                                               0, &num_fns, 
2341                                               &basetype, &boffset);
2342       if (!fns_ptr || !num_fns)
2343         error (_("Couldn't find method %s%s%s"),
2344                obj_type_name,
2345                (obj_type_name && *obj_type_name) ? "::" : "",
2346                name);
2347       /* If we are dealing with stub method types, they should have
2348          been resolved by find_method_list via
2349          value_find_oload_method_list above.  */
2350       gdb_assert (TYPE_DOMAIN_TYPE (fns_ptr[0].type) != NULL);
2351       oload_champ = find_oload_champ (arg_types, nargs, method, 
2352                                       num_fns, fns_ptr, 
2353                                       oload_syms, &oload_champ_bv);
2354     }
2355   else
2356     {
2357       const char *qualified_name = SYMBOL_CPLUS_DEMANGLED_NAME (fsym);
2358
2359       /* If we have a C++ name, try to extract just the function
2360          part.  */
2361       if (qualified_name)
2362         func_name = cp_func_name (qualified_name);
2363
2364       /* If there was no C++ name, this must be a C-style function.
2365          Just return the same symbol.  Do the same if cp_func_name
2366          fails for some reason.  */
2367       if (func_name == NULL)
2368         {
2369           *symp = fsym;
2370           return 0;
2371         }
2372
2373       old_cleanups = make_cleanup (xfree, func_name);
2374       make_cleanup (xfree, oload_syms);
2375       make_cleanup (xfree, oload_champ_bv);
2376
2377       oload_champ = find_oload_champ_namespace (arg_types, nargs,
2378                                                 func_name,
2379                                                 qualified_name,
2380                                                 &oload_syms,
2381                                                 &oload_champ_bv);
2382     }
2383
2384   /* Check how bad the best match is.  */
2385
2386   match_quality =
2387     classify_oload_match (oload_champ_bv, nargs,
2388                           oload_method_static (method, fns_ptr,
2389                                                oload_champ));
2390
2391   if (match_quality == INCOMPATIBLE)
2392     {
2393       if (method)
2394         error (_("Cannot resolve method %s%s%s to any overloaded instance"),
2395                obj_type_name,
2396                (obj_type_name && *obj_type_name) ? "::" : "",
2397                name);
2398       else
2399         error (_("Cannot resolve function %s to any overloaded instance"),
2400                func_name);
2401     }
2402   else if (match_quality == NON_STANDARD)
2403     {
2404       if (method)
2405         warning (_("Using non-standard conversion to match method %s%s%s to supplied arguments"),
2406                  obj_type_name,
2407                  (obj_type_name && *obj_type_name) ? "::" : "",
2408                  name);
2409       else
2410         warning (_("Using non-standard conversion to match function %s to supplied arguments"),
2411                  func_name);
2412     }
2413
2414   if (method)
2415     {
2416       if (staticp != NULL)
2417         *staticp = oload_method_static (method, fns_ptr, oload_champ);
2418       if (TYPE_FN_FIELD_VIRTUAL_P (fns_ptr, oload_champ))
2419         *valp = value_virtual_fn_field (&temp, fns_ptr, oload_champ, 
2420                                         basetype, boffset);
2421       else
2422         *valp = value_fn_field (&temp, fns_ptr, oload_champ, 
2423                                 basetype, boffset);
2424     }
2425   else
2426     {
2427       *symp = oload_syms[oload_champ];
2428     }
2429
2430   if (objp)
2431     {
2432       struct type *temp_type = check_typedef (value_type (temp));
2433       struct type *obj_type = check_typedef (value_type (*objp));
2434       if (TYPE_CODE (temp_type) != TYPE_CODE_PTR
2435           && (TYPE_CODE (obj_type) == TYPE_CODE_PTR
2436               || TYPE_CODE (obj_type) == TYPE_CODE_REF))
2437         {
2438           temp = value_addr (temp);
2439         }
2440       *objp = temp;
2441     }
2442   if (old_cleanups != NULL)
2443     do_cleanups (old_cleanups);
2444
2445   switch (match_quality)
2446     {
2447     case INCOMPATIBLE:
2448       return 100;
2449     case NON_STANDARD:
2450       return 10;
2451     default:                            /* STANDARD */
2452       return 0;
2453     }
2454 }
2455
2456 /* Find the best overload match, searching for FUNC_NAME in namespaces
2457    contained in QUALIFIED_NAME until it either finds a good match or
2458    runs out of namespaces.  It stores the overloaded functions in
2459    *OLOAD_SYMS, and the badness vector in *OLOAD_CHAMP_BV.  The
2460    calling function is responsible for freeing *OLOAD_SYMS and
2461    *OLOAD_CHAMP_BV.  */
2462
2463 static int
2464 find_oload_champ_namespace (struct type **arg_types, int nargs,
2465                             const char *func_name,
2466                             const char *qualified_name,
2467                             struct symbol ***oload_syms,
2468                             struct badness_vector **oload_champ_bv)
2469 {
2470   int oload_champ;
2471
2472   find_oload_champ_namespace_loop (arg_types, nargs,
2473                                    func_name,
2474                                    qualified_name, 0,
2475                                    oload_syms, oload_champ_bv,
2476                                    &oload_champ);
2477
2478   return oload_champ;
2479 }
2480
2481 /* Helper function for find_oload_champ_namespace; NAMESPACE_LEN is
2482    how deep we've looked for namespaces, and the champ is stored in
2483    OLOAD_CHAMP.  The return value is 1 if the champ is a good one, 0
2484    if it isn't.
2485
2486    It is the caller's responsibility to free *OLOAD_SYMS and
2487    *OLOAD_CHAMP_BV.  */
2488
2489 static int
2490 find_oload_champ_namespace_loop (struct type **arg_types, int nargs,
2491                                  const char *func_name,
2492                                  const char *qualified_name,
2493                                  int namespace_len,
2494                                  struct symbol ***oload_syms,
2495                                  struct badness_vector **oload_champ_bv,
2496                                  int *oload_champ)
2497 {
2498   int next_namespace_len = namespace_len;
2499   int searched_deeper = 0;
2500   int num_fns = 0;
2501   struct cleanup *old_cleanups;
2502   int new_oload_champ;
2503   struct symbol **new_oload_syms;
2504   struct badness_vector *new_oload_champ_bv;
2505   char *new_namespace;
2506
2507   if (next_namespace_len != 0)
2508     {
2509       gdb_assert (qualified_name[next_namespace_len] == ':');
2510       next_namespace_len +=  2;
2511     }
2512   next_namespace_len +=
2513     cp_find_first_component (qualified_name + next_namespace_len);
2514
2515   /* Initialize these to values that can safely be xfree'd.  */
2516   *oload_syms = NULL;
2517   *oload_champ_bv = NULL;
2518
2519   /* First, see if we have a deeper namespace we can search in.  
2520      If we get a good match there, use it.  */
2521
2522   if (qualified_name[next_namespace_len] == ':')
2523     {
2524       searched_deeper = 1;
2525
2526       if (find_oload_champ_namespace_loop (arg_types, nargs,
2527                                            func_name, qualified_name,
2528                                            next_namespace_len,
2529                                            oload_syms, oload_champ_bv,
2530                                            oload_champ))
2531         {
2532           return 1;
2533         }
2534     };
2535
2536   /* If we reach here, either we're in the deepest namespace or we
2537      didn't find a good match in a deeper namespace.  But, in the
2538      latter case, we still have a bad match in a deeper namespace;
2539      note that we might not find any match at all in the current
2540      namespace.  (There's always a match in the deepest namespace,
2541      because this overload mechanism only gets called if there's a
2542      function symbol to start off with.)  */
2543
2544   old_cleanups = make_cleanup (xfree, *oload_syms);
2545   old_cleanups = make_cleanup (xfree, *oload_champ_bv);
2546   new_namespace = alloca (namespace_len + 1);
2547   strncpy (new_namespace, qualified_name, namespace_len);
2548   new_namespace[namespace_len] = '\0';
2549   new_oload_syms = make_symbol_overload_list (func_name,
2550                                               new_namespace);
2551   while (new_oload_syms[num_fns])
2552     ++num_fns;
2553
2554   new_oload_champ = find_oload_champ (arg_types, nargs, 0, num_fns,
2555                                       NULL, new_oload_syms,
2556                                       &new_oload_champ_bv);
2557
2558   /* Case 1: We found a good match.  Free earlier matches (if any),
2559      and return it.  Case 2: We didn't find a good match, but we're
2560      not the deepest function.  Then go with the bad match that the
2561      deeper function found.  Case 3: We found a bad match, and we're
2562      the deepest function.  Then return what we found, even though
2563      it's a bad match.  */
2564
2565   if (new_oload_champ != -1
2566       && classify_oload_match (new_oload_champ_bv, nargs, 0) == STANDARD)
2567     {
2568       *oload_syms = new_oload_syms;
2569       *oload_champ = new_oload_champ;
2570       *oload_champ_bv = new_oload_champ_bv;
2571       do_cleanups (old_cleanups);
2572       return 1;
2573     }
2574   else if (searched_deeper)
2575     {
2576       xfree (new_oload_syms);
2577       xfree (new_oload_champ_bv);
2578       discard_cleanups (old_cleanups);
2579       return 0;
2580     }
2581   else
2582     {
2583       gdb_assert (new_oload_champ != -1);
2584       *oload_syms = new_oload_syms;
2585       *oload_champ = new_oload_champ;
2586       *oload_champ_bv = new_oload_champ_bv;
2587       discard_cleanups (old_cleanups);
2588       return 0;
2589     }
2590 }
2591
2592 /* Look for a function to take NARGS args of types ARG_TYPES.  Find
2593    the best match from among the overloaded methods or functions
2594    (depending on METHOD) given by FNS_PTR or OLOAD_SYMS, respectively.
2595    The number of methods/functions in the list is given by NUM_FNS.
2596    Return the index of the best match; store an indication of the
2597    quality of the match in OLOAD_CHAMP_BV.
2598
2599    It is the caller's responsibility to free *OLOAD_CHAMP_BV.  */
2600
2601 static int
2602 find_oload_champ (struct type **arg_types, int nargs, int method,
2603                   int num_fns, struct fn_field *fns_ptr,
2604                   struct symbol **oload_syms,
2605                   struct badness_vector **oload_champ_bv)
2606 {
2607   int ix;
2608   /* A measure of how good an overloaded instance is.  */
2609   struct badness_vector *bv;
2610   /* Index of best overloaded function.  */
2611   int oload_champ = -1;
2612   /* Current ambiguity state for overload resolution.  */
2613   int oload_ambiguous = 0;
2614   /* 0 => no ambiguity, 1 => two good funcs, 2 => incomparable funcs.  */
2615
2616   *oload_champ_bv = NULL;
2617
2618   /* Consider each candidate in turn.  */
2619   for (ix = 0; ix < num_fns; ix++)
2620     {
2621       int jj;
2622       int static_offset = oload_method_static (method, fns_ptr, ix);
2623       int nparms;
2624       struct type **parm_types;
2625
2626       if (method)
2627         {
2628           nparms = TYPE_NFIELDS (TYPE_FN_FIELD_TYPE (fns_ptr, ix));
2629         }
2630       else
2631         {
2632           /* If it's not a method, this is the proper place.  */
2633           nparms = TYPE_NFIELDS (SYMBOL_TYPE (oload_syms[ix]));
2634         }
2635
2636       /* Prepare array of parameter types.  */
2637       parm_types = (struct type **) 
2638         xmalloc (nparms * (sizeof (struct type *)));
2639       for (jj = 0; jj < nparms; jj++)
2640         parm_types[jj] = (method
2641                           ? (TYPE_FN_FIELD_ARGS (fns_ptr, ix)[jj].type)
2642                           : TYPE_FIELD_TYPE (SYMBOL_TYPE (oload_syms[ix]), 
2643                                              jj));
2644
2645       /* Compare parameter types to supplied argument types.  Skip
2646          THIS for static methods.  */
2647       bv = rank_function (parm_types, nparms, 
2648                           arg_types + static_offset,
2649                           nargs - static_offset);
2650
2651       if (!*oload_champ_bv)
2652         {
2653           *oload_champ_bv = bv;
2654           oload_champ = 0;
2655         }
2656       else /* See whether current candidate is better or worse than
2657               previous best.  */
2658         switch (compare_badness (bv, *oload_champ_bv))
2659           {
2660           case 0:               /* Top two contenders are equally good.  */
2661             oload_ambiguous = 1;
2662             break;
2663           case 1:               /* Incomparable top contenders.  */
2664             oload_ambiguous = 2;
2665             break;
2666           case 2:               /* New champion, record details.  */
2667             *oload_champ_bv = bv;
2668             oload_ambiguous = 0;
2669             oload_champ = ix;
2670             break;
2671           case 3:
2672           default:
2673             break;
2674           }
2675       xfree (parm_types);
2676       if (overload_debug)
2677         {
2678           if (method)
2679             fprintf_filtered (gdb_stderr,
2680                               "Overloaded method instance %s, # of parms %d\n", 
2681                               fns_ptr[ix].physname, nparms);
2682           else
2683             fprintf_filtered (gdb_stderr,
2684                               "Overloaded function instance %s # of parms %d\n",
2685                               SYMBOL_DEMANGLED_NAME (oload_syms[ix]), 
2686                               nparms);
2687           for (jj = 0; jj < nargs - static_offset; jj++)
2688             fprintf_filtered (gdb_stderr,
2689                               "...Badness @ %d : %d\n", 
2690                               jj, bv->rank[jj]);
2691           fprintf_filtered (gdb_stderr,
2692                             "Overload resolution champion is %d, ambiguous? %d\n", 
2693                             oload_champ, oload_ambiguous);
2694         }
2695     }
2696
2697   return oload_champ;
2698 }
2699
2700 /* Return 1 if we're looking at a static method, 0 if we're looking at
2701    a non-static method or a function that isn't a method.  */
2702
2703 static int
2704 oload_method_static (int method, struct fn_field *fns_ptr, int index)
2705 {
2706   if (method && TYPE_FN_FIELD_STATIC_P (fns_ptr, index))
2707     return 1;
2708   else
2709     return 0;
2710 }
2711
2712 /* Check how good an overload match OLOAD_CHAMP_BV represents.  */
2713
2714 static enum oload_classification
2715 classify_oload_match (struct badness_vector *oload_champ_bv,
2716                       int nargs,
2717                       int static_offset)
2718 {
2719   int ix;
2720
2721   for (ix = 1; ix <= nargs - static_offset; ix++)
2722     {
2723       if (oload_champ_bv->rank[ix] >= 100)
2724         return INCOMPATIBLE;    /* Truly mismatched types.  */
2725       else if (oload_champ_bv->rank[ix] >= 10)
2726         return NON_STANDARD;    /* Non-standard type conversions
2727                                    needed.  */
2728     }
2729
2730   return STANDARD;              /* Only standard conversions needed.  */
2731 }
2732
2733 /* C++: return 1 is NAME is a legitimate name for the destructor of
2734    type TYPE.  If TYPE does not have a destructor, or if NAME is
2735    inappropriate for TYPE, an error is signaled.  */
2736 int
2737 destructor_name_p (const char *name, const struct type *type)
2738 {
2739   if (name[0] == '~')
2740     {
2741       char *dname = type_name_no_tag (type);
2742       char *cp = strchr (dname, '<');
2743       unsigned int len;
2744
2745       /* Do not compare the template part for template classes.  */
2746       if (cp == NULL)
2747         len = strlen (dname);
2748       else
2749         len = cp - dname;
2750       if (strlen (name + 1) != len || strncmp (dname, name + 1, len) != 0)
2751         error (_("name of destructor must equal name of class"));
2752       else
2753         return 1;
2754     }
2755   return 0;
2756 }
2757
2758 /* Given TYPE, a structure/union,
2759    return 1 if the component named NAME from the ultimate target
2760    structure/union is defined, otherwise, return 0.  */
2761
2762 int
2763 check_field (struct type *type, const char *name)
2764 {
2765   int i;
2766
2767   /* The type may be a stub.  */
2768   CHECK_TYPEDEF (type);
2769
2770   for (i = TYPE_NFIELDS (type) - 1; i >= TYPE_N_BASECLASSES (type); i--)
2771     {
2772       char *t_field_name = TYPE_FIELD_NAME (type, i);
2773       if (t_field_name && (strcmp_iw (t_field_name, name) == 0))
2774         return 1;
2775     }
2776
2777   /* C++: If it was not found as a data field, then try to return it
2778      as a pointer to a method.  */
2779
2780   for (i = TYPE_NFN_FIELDS (type) - 1; i >= 0; --i)
2781     {
2782       if (strcmp_iw (TYPE_FN_FIELDLIST_NAME (type, i), name) == 0)
2783         return 1;
2784     }
2785
2786   for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
2787     if (check_field (TYPE_BASECLASS (type, i), name))
2788       return 1;
2789
2790   return 0;
2791 }
2792
2793 /* C++: Given an aggregate type CURTYPE, and a member name NAME,
2794    return the appropriate member (or the address of the member, if
2795    WANT_ADDRESS).  This function is used to resolve user expressions
2796    of the form "DOMAIN::NAME".  For more details on what happens, see
2797    the comment before value_struct_elt_for_reference.  */
2798
2799 struct value *
2800 value_aggregate_elt (struct type *curtype, char *name,
2801                      struct type *expect_type, int want_address,
2802                      enum noside noside)
2803 {
2804   switch (TYPE_CODE (curtype))
2805     {
2806     case TYPE_CODE_STRUCT:
2807     case TYPE_CODE_UNION:
2808       return value_struct_elt_for_reference (curtype, 0, curtype, 
2809                                              name, expect_type,
2810                                              want_address, noside);
2811     case TYPE_CODE_NAMESPACE:
2812       return value_namespace_elt (curtype, name, 
2813                                   want_address, noside);
2814     default:
2815       internal_error (__FILE__, __LINE__,
2816                       _("non-aggregate type in value_aggregate_elt"));
2817     }
2818 }
2819
2820 /* Compares the two method/function types T1 and T2 for "equality" 
2821    with respect to the the methods' parameters.  If the types of the
2822    two parameter lists are the same, returns 1; 0 otherwise.  This
2823    comparison may ignore any artificial parameters in T1 if
2824    SKIP_ARTIFICIAL is non-zero.  This function will ALWAYS skip
2825    the first artificial parameter in T1, assumed to be a 'this' pointer.
2826
2827    The type T2 is expected to have come from make_params (in eval.c).  */
2828
2829 static int
2830 compare_parameters (struct type *t1, struct type *t2, int skip_artificial)
2831 {
2832   int start = 0;
2833
2834   if (TYPE_FIELD_ARTIFICIAL (t1, 0))
2835     ++start;
2836
2837   /* If skipping artificial fields, find the first real field
2838      in T1. */
2839   if (skip_artificial)
2840     {
2841       while (start < TYPE_NFIELDS (t1)
2842              && TYPE_FIELD_ARTIFICIAL (t1, start))
2843         ++start;
2844     }
2845
2846   /* Now compare parameters */
2847
2848   /* Special case: a method taking void.  T1 will contain no
2849      non-artificial fields, and T2 will contain TYPE_CODE_VOID.  */
2850   if ((TYPE_NFIELDS (t1) - start) == 0 && TYPE_NFIELDS (t2) == 1
2851       && TYPE_CODE (TYPE_FIELD_TYPE (t2, 0)) == TYPE_CODE_VOID)
2852     return 1;
2853
2854   if ((TYPE_NFIELDS (t1) - start) == TYPE_NFIELDS (t2))
2855     {
2856       int i;
2857       for (i = 0; i < TYPE_NFIELDS (t2); ++i)
2858         {
2859           if (rank_one_type (TYPE_FIELD_TYPE (t1, start + i),
2860                               TYPE_FIELD_TYPE (t2, i))
2861               != 0)
2862             return 0;
2863         }
2864
2865       return 1;
2866     }
2867
2868   return 0;
2869 }
2870
2871 /* C++: Given an aggregate type CURTYPE, and a member name NAME,
2872    return the address of this member as a "pointer to member" type.
2873    If INTYPE is non-null, then it will be the type of the member we
2874    are looking for.  This will help us resolve "pointers to member
2875    functions".  This function is used to resolve user expressions of
2876    the form "DOMAIN::NAME".  */
2877
2878 static struct value *
2879 value_struct_elt_for_reference (struct type *domain, int offset,
2880                                 struct type *curtype, char *name,
2881                                 struct type *intype, 
2882                                 int want_address,
2883                                 enum noside noside)
2884 {
2885   struct type *t = curtype;
2886   int i;
2887   struct value *v, *result;
2888
2889   if (TYPE_CODE (t) != TYPE_CODE_STRUCT
2890       && TYPE_CODE (t) != TYPE_CODE_UNION)
2891     error (_("Internal error: non-aggregate type to value_struct_elt_for_reference"));
2892
2893   for (i = TYPE_NFIELDS (t) - 1; i >= TYPE_N_BASECLASSES (t); i--)
2894     {
2895       char *t_field_name = TYPE_FIELD_NAME (t, i);
2896
2897       if (t_field_name && strcmp (t_field_name, name) == 0)
2898         {
2899           if (field_is_static (&TYPE_FIELD (t, i)))
2900             {
2901               v = value_static_field (t, i);
2902               if (v == NULL)
2903                 error (_("static field %s has been optimized out"),
2904                        name);
2905               if (want_address)
2906                 v = value_addr (v);
2907               return v;
2908             }
2909           if (TYPE_FIELD_PACKED (t, i))
2910             error (_("pointers to bitfield members not allowed"));
2911
2912           if (want_address)
2913             return value_from_longest
2914               (lookup_memberptr_type (TYPE_FIELD_TYPE (t, i), domain),
2915                offset + (LONGEST) (TYPE_FIELD_BITPOS (t, i) >> 3));
2916           else if (noside == EVAL_AVOID_SIDE_EFFECTS)
2917             return allocate_value (TYPE_FIELD_TYPE (t, i));
2918           else
2919             error (_("Cannot reference non-static field \"%s\""), name);
2920         }
2921     }
2922
2923   /* C++: If it was not found as a data field, then try to return it
2924      as a pointer to a method.  */
2925
2926   /* Perform all necessary dereferencing.  */
2927   while (intype && TYPE_CODE (intype) == TYPE_CODE_PTR)
2928     intype = TYPE_TARGET_TYPE (intype);
2929
2930   for (i = TYPE_NFN_FIELDS (t) - 1; i >= 0; --i)
2931     {
2932       char *t_field_name = TYPE_FN_FIELDLIST_NAME (t, i);
2933       char dem_opname[64];
2934
2935       if (strncmp (t_field_name, "__", 2) == 0 
2936           || strncmp (t_field_name, "op", 2) == 0 
2937           || strncmp (t_field_name, "type", 4) == 0)
2938         {
2939           if (cplus_demangle_opname (t_field_name, 
2940                                      dem_opname, DMGL_ANSI))
2941             t_field_name = dem_opname;
2942           else if (cplus_demangle_opname (t_field_name, 
2943                                           dem_opname, 0))
2944             t_field_name = dem_opname;
2945         }
2946       if (t_field_name && strcmp (t_field_name, name) == 0)
2947         {
2948           int j;
2949           int len = TYPE_FN_FIELDLIST_LENGTH (t, i);
2950           struct fn_field *f = TYPE_FN_FIELDLIST1 (t, i);
2951
2952           check_stub_method_group (t, i);
2953
2954           if (intype)
2955             {
2956               for (j = 0; j < len; ++j)
2957                 {
2958                   if (compare_parameters (TYPE_FN_FIELD_TYPE (f, j), intype, 0)
2959                       || compare_parameters (TYPE_FN_FIELD_TYPE (f, j), intype, 1))
2960                     break;
2961                 }
2962
2963               if (j == len)
2964                 error (_("no member function matches that type instantiation"));
2965             }
2966           else
2967             {
2968               int ii;
2969
2970               j = -1;
2971               for (ii = 0; ii < TYPE_FN_FIELDLIST_LENGTH (t, i);
2972                    ++ii)
2973                 {
2974                   /* Skip artificial methods.  This is necessary if,
2975                      for example, the user wants to "print
2976                      subclass::subclass" with only one user-defined
2977                      constructor.  There is no ambiguity in this
2978                      case.  */
2979                   if (TYPE_FN_FIELD_ARTIFICIAL (f, ii))
2980                     continue;
2981
2982                   /* Desired method is ambiguous if more than one
2983                      method is defined.  */
2984                   if (j != -1)
2985                     error (_("non-unique member `%s' requires type instantiation"), name);
2986
2987                   j = ii;
2988                 }
2989             }
2990
2991           if (TYPE_FN_FIELD_STATIC_P (f, j))
2992             {
2993               struct symbol *s = 
2994                 lookup_symbol (TYPE_FN_FIELD_PHYSNAME (f, j),
2995                                0, VAR_DOMAIN, 0);
2996               if (s == NULL)
2997                 return NULL;
2998
2999               if (want_address)
3000                 return value_addr (read_var_value (s, 0));
3001               else
3002                 return read_var_value (s, 0);
3003             }
3004
3005           if (TYPE_FN_FIELD_VIRTUAL_P (f, j))
3006             {
3007               if (want_address)
3008                 {
3009                   result = allocate_value
3010                     (lookup_methodptr_type (TYPE_FN_FIELD_TYPE (f, j)));
3011                   cplus_make_method_ptr (value_type (result),
3012                                          value_contents_writeable (result),
3013                                          TYPE_FN_FIELD_VOFFSET (f, j), 1);
3014                 }
3015               else if (noside == EVAL_AVOID_SIDE_EFFECTS)
3016                 return allocate_value (TYPE_FN_FIELD_TYPE (f, j));
3017               else
3018                 error (_("Cannot reference virtual member function \"%s\""),
3019                        name);
3020             }
3021           else
3022             {
3023               struct symbol *s = 
3024                 lookup_symbol (TYPE_FN_FIELD_PHYSNAME (f, j),
3025                                0, VAR_DOMAIN, 0);
3026               if (s == NULL)
3027                 return NULL;
3028
3029               v = read_var_value (s, 0);
3030               if (!want_address)
3031                 result = v;
3032               else
3033                 {
3034                   result = allocate_value (lookup_methodptr_type (TYPE_FN_FIELD_TYPE (f, j)));
3035                   cplus_make_method_ptr (value_type (result),
3036                                          value_contents_writeable (result),
3037                                          value_address (v), 0);
3038                 }
3039             }
3040           return result;
3041         }
3042     }
3043   for (i = TYPE_N_BASECLASSES (t) - 1; i >= 0; i--)
3044     {
3045       struct value *v;
3046       int base_offset;
3047
3048       if (BASETYPE_VIA_VIRTUAL (t, i))
3049         base_offset = 0;
3050       else
3051         base_offset = TYPE_BASECLASS_BITPOS (t, i) / 8;
3052       v = value_struct_elt_for_reference (domain,
3053                                           offset + base_offset,
3054                                           TYPE_BASECLASS (t, i),
3055                                           name, intype, 
3056                                           want_address, noside);
3057       if (v)
3058         return v;
3059     }
3060
3061   /* As a last chance, pretend that CURTYPE is a namespace, and look
3062      it up that way; this (frequently) works for types nested inside
3063      classes.  */
3064
3065   return value_maybe_namespace_elt (curtype, name, 
3066                                     want_address, noside);
3067 }
3068
3069 /* C++: Return the member NAME of the namespace given by the type
3070    CURTYPE.  */
3071
3072 static struct value *
3073 value_namespace_elt (const struct type *curtype,
3074                      char *name, int want_address,
3075                      enum noside noside)
3076 {
3077   struct value *retval = value_maybe_namespace_elt (curtype, name,
3078                                                     want_address, 
3079                                                     noside);
3080
3081   if (retval == NULL)
3082     error (_("No symbol \"%s\" in namespace \"%s\"."), 
3083            name, TYPE_TAG_NAME (curtype));
3084
3085   return retval;
3086 }
3087
3088 /* A helper function used by value_namespace_elt and
3089    value_struct_elt_for_reference.  It looks up NAME inside the
3090    context CURTYPE; this works if CURTYPE is a namespace or if CURTYPE
3091    is a class and NAME refers to a type in CURTYPE itself (as opposed
3092    to, say, some base class of CURTYPE).  */
3093
3094 static struct value *
3095 value_maybe_namespace_elt (const struct type *curtype,
3096                            char *name, int want_address,
3097                            enum noside noside)
3098 {
3099   const char *namespace_name = TYPE_TAG_NAME (curtype);
3100   struct symbol *sym;
3101   struct value *result;
3102
3103   sym = cp_lookup_symbol_namespace (namespace_name, name, NULL,
3104                                     get_selected_block (0), 
3105                                     VAR_DOMAIN, 1);
3106
3107   if (sym == NULL)
3108     return NULL;
3109   else if ((noside == EVAL_AVOID_SIDE_EFFECTS)
3110            && (SYMBOL_CLASS (sym) == LOC_TYPEDEF))
3111     result = allocate_value (SYMBOL_TYPE (sym));
3112   else
3113     result = value_of_variable (sym, get_selected_block (0));
3114
3115   if (result && want_address)
3116     result = value_addr (result);
3117
3118   return result;
3119 }
3120
3121 /* Given a pointer value V, find the real (RTTI) type of the object it
3122    points to.
3123
3124    Other parameters FULL, TOP, USING_ENC as with value_rtti_type()
3125    and refer to the values computed for the object pointed to.  */
3126
3127 struct type *
3128 value_rtti_target_type (struct value *v, int *full, 
3129                         int *top, int *using_enc)
3130 {
3131   struct value *target;
3132
3133   target = value_ind (v);
3134
3135   return value_rtti_type (target, full, top, using_enc);
3136 }
3137
3138 /* Given a value pointed to by ARGP, check its real run-time type, and
3139    if that is different from the enclosing type, create a new value
3140    using the real run-time type as the enclosing type (and of the same
3141    type as ARGP) and return it, with the embedded offset adjusted to
3142    be the correct offset to the enclosed object.  RTYPE is the type,
3143    and XFULL, XTOP, and XUSING_ENC are the other parameters, computed
3144    by value_rtti_type().  If these are available, they can be supplied
3145    and a second call to value_rtti_type() is avoided.  (Pass RTYPE ==
3146    NULL if they're not available.  */
3147
3148 struct value *
3149 value_full_object (struct value *argp, 
3150                    struct type *rtype, 
3151                    int xfull, int xtop,
3152                    int xusing_enc)
3153 {
3154   struct type *real_type;
3155   int full = 0;
3156   int top = -1;
3157   int using_enc = 0;
3158   struct value *new_val;
3159
3160   if (rtype)
3161     {
3162       real_type = rtype;
3163       full = xfull;
3164       top = xtop;
3165       using_enc = xusing_enc;
3166     }
3167   else
3168     real_type = value_rtti_type (argp, &full, &top, &using_enc);
3169
3170   /* If no RTTI data, or if object is already complete, do nothing.  */
3171   if (!real_type || real_type == value_enclosing_type (argp))
3172     return argp;
3173
3174   /* If we have the full object, but for some reason the enclosing
3175      type is wrong, set it.  */
3176   /* pai: FIXME -- sounds iffy */
3177   if (full)
3178     {
3179       argp = value_change_enclosing_type (argp, real_type);
3180       return argp;
3181     }
3182
3183   /* Check if object is in memory */
3184   if (VALUE_LVAL (argp) != lval_memory)
3185     {
3186       warning (_("Couldn't retrieve complete object of RTTI type %s; object may be in register(s)."), 
3187                TYPE_NAME (real_type));
3188
3189       return argp;
3190     }
3191
3192   /* All other cases -- retrieve the complete object.  */
3193   /* Go back by the computed top_offset from the beginning of the
3194      object, adjusting for the embedded offset of argp if that's what
3195      value_rtti_type used for its computation.  */
3196   new_val = value_at_lazy (real_type, value_address (argp) - top +
3197                            (using_enc ? 0 : value_embedded_offset (argp)));
3198   deprecated_set_value_type (new_val, value_type (argp));
3199   set_value_embedded_offset (new_val, (using_enc
3200                                        ? top + value_embedded_offset (argp)
3201                                        : top));
3202   return new_val;
3203 }
3204
3205
3206 /* Return the value of the local variable, if one exists.
3207    Flag COMPLAIN signals an error if the request is made in an
3208    inappropriate context.  */
3209
3210 struct value *
3211 value_of_local (const char *name, int complain)
3212 {
3213   struct symbol *func, *sym;
3214   struct block *b;
3215   struct value * ret;
3216   struct frame_info *frame;
3217
3218   if (complain)
3219     frame = get_selected_frame (_("no frame selected"));
3220   else
3221     {
3222       frame = deprecated_safe_get_selected_frame ();
3223       if (frame == 0)
3224         return 0;
3225     }
3226
3227   func = get_frame_function (frame);
3228   if (!func)
3229     {
3230       if (complain)
3231         error (_("no `%s' in nameless context"), name);
3232       else
3233         return 0;
3234     }
3235
3236   b = SYMBOL_BLOCK_VALUE (func);
3237   if (dict_empty (BLOCK_DICT (b)))
3238     {
3239       if (complain)
3240         error (_("no args, no `%s'"), name);
3241       else
3242         return 0;
3243     }
3244
3245   /* Calling lookup_block_symbol is necessary to get the LOC_REGISTER
3246      symbol instead of the LOC_ARG one (if both exist).  */
3247   sym = lookup_block_symbol (b, name, NULL, VAR_DOMAIN);
3248   if (sym == NULL)
3249     {
3250       if (complain)
3251         error (_("current stack frame does not contain a variable named `%s'"), 
3252                name);
3253       else
3254         return NULL;
3255     }
3256
3257   ret = read_var_value (sym, frame);
3258   if (ret == 0 && complain)
3259     error (_("`%s' argument unreadable"), name);
3260   return ret;
3261 }
3262
3263 /* C++/Objective-C: return the value of the class instance variable,
3264    if one exists.  Flag COMPLAIN signals an error if the request is
3265    made in an inappropriate context.  */
3266
3267 struct value *
3268 value_of_this (int complain)
3269 {
3270   if (!current_language->la_name_of_this)
3271     return 0;
3272   return value_of_local (current_language->la_name_of_this, complain);
3273 }
3274
3275 /* Create a slice (sub-string, sub-array) of ARRAY, that is LENGTH
3276    elements long, starting at LOWBOUND.  The result has the same lower
3277    bound as the original ARRAY.  */
3278
3279 struct value *
3280 value_slice (struct value *array, int lowbound, int length)
3281 {
3282   struct type *slice_range_type, *slice_type, *range_type;
3283   LONGEST lowerbound, upperbound;
3284   struct value *slice;
3285   struct type *array_type;
3286
3287   array_type = check_typedef (value_type (array));
3288   if (TYPE_CODE (array_type) != TYPE_CODE_ARRAY
3289       && TYPE_CODE (array_type) != TYPE_CODE_STRING
3290       && TYPE_CODE (array_type) != TYPE_CODE_BITSTRING)
3291     error (_("cannot take slice of non-array"));
3292
3293   range_type = TYPE_INDEX_TYPE (array_type);
3294   if (get_discrete_bounds (range_type, &lowerbound, &upperbound) < 0)
3295     error (_("slice from bad array or bitstring"));
3296
3297   if (lowbound < lowerbound || length < 0
3298       || lowbound + length - 1 > upperbound)
3299     error (_("slice out of range"));
3300
3301   /* FIXME-type-allocation: need a way to free this type when we are
3302      done with it.  */
3303   slice_range_type = create_range_type ((struct type *) NULL,
3304                                         TYPE_TARGET_TYPE (range_type),
3305                                         lowbound, 
3306                                         lowbound + length - 1);
3307   if (TYPE_CODE (array_type) == TYPE_CODE_BITSTRING)
3308     {
3309       int i;
3310
3311       slice_type = create_set_type ((struct type *) NULL,
3312                                     slice_range_type);
3313       TYPE_CODE (slice_type) = TYPE_CODE_BITSTRING;
3314       slice = value_zero (slice_type, not_lval);
3315
3316       for (i = 0; i < length; i++)
3317         {
3318           int element = value_bit_index (array_type,
3319                                          value_contents (array),
3320                                          lowbound + i);
3321           if (element < 0)
3322             error (_("internal error accessing bitstring"));
3323           else if (element > 0)
3324             {
3325               int j = i % TARGET_CHAR_BIT;
3326               if (gdbarch_bits_big_endian (get_type_arch (array_type)))
3327                 j = TARGET_CHAR_BIT - 1 - j;
3328               value_contents_raw (slice)[i / TARGET_CHAR_BIT] |= (1 << j);
3329             }
3330         }
3331       /* We should set the address, bitssize, and bitspos, so the
3332          slice can be used on the LHS, but that may require extensions
3333          to value_assign.  For now, just leave as a non_lval.
3334          FIXME.  */
3335     }
3336   else
3337     {
3338       struct type *element_type = TYPE_TARGET_TYPE (array_type);
3339       LONGEST offset =
3340         (lowbound - lowerbound) * TYPE_LENGTH (check_typedef (element_type));
3341
3342       slice_type = create_array_type ((struct type *) NULL, 
3343                                       element_type,
3344                                       slice_range_type);
3345       TYPE_CODE (slice_type) = TYPE_CODE (array_type);
3346
3347       if (VALUE_LVAL (array) == lval_memory && value_lazy (array))
3348         slice = allocate_value_lazy (slice_type);
3349       else
3350         {
3351           slice = allocate_value (slice_type);
3352           memcpy (value_contents_writeable (slice),
3353                   value_contents (array) + offset,
3354                   TYPE_LENGTH (slice_type));
3355         }
3356
3357       set_value_component_location (slice, array);
3358       VALUE_FRAME_ID (slice) = VALUE_FRAME_ID (array);
3359       set_value_offset (slice, value_offset (array) + offset);
3360     }
3361   return slice;
3362 }
3363
3364 /* Create a value for a FORTRAN complex number.  Currently most of the
3365    time values are coerced to COMPLEX*16 (i.e. a complex number
3366    composed of 2 doubles.  This really should be a smarter routine
3367    that figures out precision inteligently as opposed to assuming
3368    doubles.  FIXME: fmb  */
3369
3370 struct value *
3371 value_literal_complex (struct value *arg1, 
3372                        struct value *arg2,
3373                        struct type *type)
3374 {
3375   struct value *val;
3376   struct type *real_type = TYPE_TARGET_TYPE (type);
3377
3378   val = allocate_value (type);
3379   arg1 = value_cast (real_type, arg1);
3380   arg2 = value_cast (real_type, arg2);
3381
3382   memcpy (value_contents_raw (val),
3383           value_contents (arg1), TYPE_LENGTH (real_type));
3384   memcpy (value_contents_raw (val) + TYPE_LENGTH (real_type),
3385           value_contents (arg2), TYPE_LENGTH (real_type));
3386   return val;
3387 }
3388
3389 /* Cast a value into the appropriate complex data type.  */
3390
3391 static struct value *
3392 cast_into_complex (struct type *type, struct value *val)
3393 {
3394   struct type *real_type = TYPE_TARGET_TYPE (type);
3395
3396   if (TYPE_CODE (value_type (val)) == TYPE_CODE_COMPLEX)
3397     {
3398       struct type *val_real_type = TYPE_TARGET_TYPE (value_type (val));
3399       struct value *re_val = allocate_value (val_real_type);
3400       struct value *im_val = allocate_value (val_real_type);
3401
3402       memcpy (value_contents_raw (re_val),
3403               value_contents (val), TYPE_LENGTH (val_real_type));
3404       memcpy (value_contents_raw (im_val),
3405               value_contents (val) + TYPE_LENGTH (val_real_type),
3406               TYPE_LENGTH (val_real_type));
3407
3408       return value_literal_complex (re_val, im_val, type);
3409     }
3410   else if (TYPE_CODE (value_type (val)) == TYPE_CODE_FLT
3411            || TYPE_CODE (value_type (val)) == TYPE_CODE_INT)
3412     return value_literal_complex (val, 
3413                                   value_zero (real_type, not_lval), 
3414                                   type);
3415   else
3416     error (_("cannot cast non-number to complex"));
3417 }
3418
3419 void
3420 _initialize_valops (void)
3421 {
3422   add_setshow_boolean_cmd ("overload-resolution", class_support,
3423                            &overload_resolution, _("\
3424 Set overload resolution in evaluating C++ functions."), _("\
3425 Show overload resolution in evaluating C++ functions."), 
3426                            NULL, NULL,
3427                            show_overload_resolution,
3428                            &setlist, &showlist);
3429   overload_resolution = 1;
3430 }