OSDN Git Service

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