revert change 1.104 --> 1.105. sigh. this reversal breaks 18470. double
[external/binutils.git] / gdb / values.c
1 /* Low level packing and unpacking of values for GDB, the GNU Debugger.
2    Copyright 1986, 87, 89, 91, 93, 94, 95, 96, 97, 1998
3    Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
20
21 #include "defs.h"
22 #include "gdb_string.h"
23 #include "symtab.h"
24 #include "gdbtypes.h"
25 #include "value.h"
26 #include "gdbcore.h"
27 #include "frame.h"
28 #include "command.h"
29 #include "gdbcmd.h"
30 #include "target.h"
31 #include "language.h"
32 #include "scm-lang.h"
33 #include "demangle.h"
34
35 /* Prototypes for exported functions. */
36
37 void _initialize_values PARAMS ((void));
38
39 /* Prototypes for local functions. */
40
41 static value_ptr value_headof PARAMS ((value_ptr, struct type *,
42                                        struct type *));
43
44 static void show_values PARAMS ((char *, int));
45
46 static void show_convenience PARAMS ((char *, int));
47
48 static int vb_match PARAMS ((struct type *, int, struct type *));
49
50 /* The value-history records all the values printed
51    by print commands during this session.  Each chunk
52    records 60 consecutive values.  The first chunk on
53    the chain records the most recent values.
54    The total number of values is in value_history_count.  */
55
56 #define VALUE_HISTORY_CHUNK 60
57
58 struct value_history_chunk
59 {
60   struct value_history_chunk *next;
61   value_ptr values[VALUE_HISTORY_CHUNK];
62 };
63
64 /* Chain of chunks now in use.  */
65
66 static struct value_history_chunk *value_history_chain;
67
68 static int value_history_count; /* Abs number of last entry stored */
69 \f
70 /* List of all value objects currently allocated
71    (except for those released by calls to release_value)
72    This is so they can be freed after each command.  */
73
74 static value_ptr all_values;
75
76 /* Allocate a  value  that has the correct length for type TYPE.  */
77
78 value_ptr
79 allocate_value (type)
80      struct type *type;
81 {
82   register value_ptr val;
83   struct type *atype = check_typedef (type);
84
85   val = (struct value *) xmalloc (sizeof (struct value) + TYPE_LENGTH (atype));
86   VALUE_NEXT (val) = all_values;
87   all_values = val;
88   VALUE_TYPE (val) = type;
89   VALUE_LVAL (val) = not_lval;
90   VALUE_ADDRESS (val) = 0;
91   VALUE_FRAME (val) = 0;
92   VALUE_OFFSET (val) = 0;
93   VALUE_BITPOS (val) = 0;
94   VALUE_BITSIZE (val) = 0;
95   VALUE_REGNO (val) = -1;
96   VALUE_LAZY (val) = 0;
97   VALUE_OPTIMIZED_OUT (val) = 0;
98   VALUE_BFD_SECTION (val) = NULL;
99   val->modifiable = 1;
100   return val;
101 }
102
103 /* Allocate a  value  that has the correct length
104    for COUNT repetitions type TYPE.  */
105
106 value_ptr
107 allocate_repeat_value (type, count)
108      struct type *type;
109      int count;
110 {
111   int low_bound = current_language->string_lower_bound; /* ??? */
112   /* FIXME-type-allocation: need a way to free this type when we are
113      done with it.  */
114   struct type *range_type
115     = create_range_type ((struct type *) NULL, builtin_type_int,
116                          low_bound, count + low_bound - 1);
117   /* FIXME-type-allocation: need a way to free this type when we are
118      done with it.  */
119   return allocate_value (create_array_type ((struct type *) NULL,
120                                             type, range_type));
121 }
122
123 /* Return a mark in the value chain.  All values allocated after the
124    mark is obtained (except for those released) are subject to being freed
125    if a subsequent value_free_to_mark is passed the mark.  */
126 value_ptr
127 value_mark ()
128 {
129   return all_values;
130 }
131
132 /* Free all values allocated since MARK was obtained by value_mark
133    (except for those released).  */
134 void
135 value_free_to_mark (mark)
136      value_ptr mark;
137 {
138   value_ptr val, next;
139
140   for (val = all_values; val && val != mark; val = next)
141     {
142       next = VALUE_NEXT (val);
143       value_free (val);
144     }
145   all_values = val;
146 }
147
148 /* Free all the values that have been allocated (except for those released).
149    Called after each command, successful or not.  */
150
151 void
152 free_all_values ()
153 {
154   register value_ptr val, next;
155
156   for (val = all_values; val; val = next)
157     {
158       next = VALUE_NEXT (val);
159       value_free (val);
160     }
161
162   all_values = 0;
163 }
164
165 /* Remove VAL from the chain all_values
166    so it will not be freed automatically.  */
167
168 void
169 release_value (val)
170      register value_ptr val;
171 {
172   register value_ptr v;
173
174   if (all_values == val)
175     {
176       all_values = val->next;
177       return;
178     }
179
180   for (v = all_values; v; v = v->next)
181     {
182       if (v->next == val)
183         {
184           v->next = val->next;
185           break;
186         }
187     }
188 }
189
190 /* Release all values up to mark  */
191 value_ptr
192 value_release_to_mark (mark)
193      value_ptr mark;
194 {
195   value_ptr val, next;
196
197   for (val = next = all_values; next; next = VALUE_NEXT (next))
198     if (VALUE_NEXT (next) == mark)
199       {
200         all_values = VALUE_NEXT (next);
201         VALUE_NEXT (next) = 0;
202         return val;
203       }
204   all_values = 0;
205   return val;
206 }
207
208 /* Return a copy of the value ARG.
209    It contains the same contents, for same memory address,
210    but it's a different block of storage.  */
211
212 value_ptr
213 value_copy (arg)
214      value_ptr arg;
215 {
216   register struct type *type = VALUE_TYPE (arg);
217   register value_ptr val = allocate_value (type);
218   VALUE_LVAL (val) = VALUE_LVAL (arg);
219   VALUE_ADDRESS (val) = VALUE_ADDRESS (arg);
220   VALUE_OFFSET (val) = VALUE_OFFSET (arg);
221   VALUE_BITPOS (val) = VALUE_BITPOS (arg);
222   VALUE_BITSIZE (val) = VALUE_BITSIZE (arg);
223   VALUE_FRAME (val) = VALUE_FRAME (arg);
224   VALUE_REGNO (val) = VALUE_REGNO (arg);
225   VALUE_LAZY (val) = VALUE_LAZY (arg);
226   VALUE_OPTIMIZED_OUT (val) = VALUE_OPTIMIZED_OUT (arg);
227   VALUE_BFD_SECTION (val) = VALUE_BFD_SECTION (arg);
228   val->modifiable = arg->modifiable;
229   if (!VALUE_LAZY (val))
230     {
231       memcpy (VALUE_CONTENTS_RAW (val), VALUE_CONTENTS_RAW (arg),
232               TYPE_LENGTH (VALUE_TYPE (arg)));
233     }
234   return val;
235 }
236 \f
237 /* Access to the value history.  */
238
239 /* Record a new value in the value history.
240    Returns the absolute history index of the entry.
241    Result of -1 indicates the value was not saved; otherwise it is the
242    value history index of this new item.  */
243
244 int
245 record_latest_value (val)
246      value_ptr val;
247 {
248   int i;
249
250   /* We don't want this value to have anything to do with the inferior anymore.
251      In particular, "set $1 = 50" should not affect the variable from which
252      the value was taken, and fast watchpoints should be able to assume that
253      a value on the value history never changes.  */
254   if (VALUE_LAZY (val))
255     value_fetch_lazy (val);
256   /* We preserve VALUE_LVAL so that the user can find out where it was fetched
257      from.  This is a bit dubious, because then *&$1 does not just return $1
258      but the current contents of that location.  c'est la vie...  */
259   val->modifiable = 0;
260   release_value (val);
261
262   /* Here we treat value_history_count as origin-zero
263      and applying to the value being stored now.  */
264
265   i = value_history_count % VALUE_HISTORY_CHUNK;
266   if (i == 0)
267     {
268       register struct value_history_chunk *new
269         = (struct value_history_chunk *)
270           xmalloc (sizeof (struct value_history_chunk));
271       memset (new->values, 0, sizeof new->values);
272       new->next = value_history_chain;
273       value_history_chain = new;
274     }
275
276   value_history_chain->values[i] = val;
277
278   /* Now we regard value_history_count as origin-one
279      and applying to the value just stored.  */
280
281   return ++value_history_count;
282 }
283
284 /* Return a copy of the value in the history with sequence number NUM.  */
285
286 value_ptr
287 access_value_history (num)
288      int num;
289 {
290   register struct value_history_chunk *chunk;
291   register int i;
292   register int absnum = num;
293
294   if (absnum <= 0)
295     absnum += value_history_count;
296
297   if (absnum <= 0)
298     {
299       if (num == 0)
300         error ("The history is empty.");
301       else if (num == 1)
302         error ("There is only one value in the history.");
303       else
304         error ("History does not go back to $$%d.", -num);
305     }
306   if (absnum > value_history_count)
307     error ("History has not yet reached $%d.", absnum);
308
309   absnum--;
310
311   /* Now absnum is always absolute and origin zero.  */
312
313   chunk = value_history_chain;
314   for (i = (value_history_count - 1) / VALUE_HISTORY_CHUNK - absnum / VALUE_HISTORY_CHUNK;
315        i > 0; i--)
316     chunk = chunk->next;
317
318   return value_copy (chunk->values[absnum % VALUE_HISTORY_CHUNK]);
319 }
320
321 /* Clear the value history entirely.
322    Must be done when new symbol tables are loaded,
323    because the type pointers become invalid.  */
324
325 void
326 clear_value_history ()
327 {
328   register struct value_history_chunk *next;
329   register int i;
330   register value_ptr val;
331
332   while (value_history_chain)
333     {
334       for (i = 0; i < VALUE_HISTORY_CHUNK; i++)
335         if ((val = value_history_chain->values[i]) != NULL)
336           free ((PTR)val);
337       next = value_history_chain->next;
338       free ((PTR)value_history_chain);
339       value_history_chain = next;
340     }
341   value_history_count = 0;
342 }
343
344 static void
345 show_values (num_exp, from_tty)
346      char *num_exp;
347      int from_tty;
348 {
349   register int i;
350   register value_ptr val;
351   static int num = 1;
352
353   if (num_exp)
354     {
355         /* "info history +" should print from the stored position.
356            "info history <exp>" should print around value number <exp>.  */
357       if (num_exp[0] != '+' || num_exp[1] != '\0')
358         num = parse_and_eval_address (num_exp) - 5;
359     }
360   else
361     {
362       /* "info history" means print the last 10 values.  */
363       num = value_history_count - 9;
364     }
365
366   if (num <= 0)
367     num = 1;
368
369   for (i = num; i < num + 10 && i <= value_history_count; i++)
370     {
371       val = access_value_history (i);
372       printf_filtered ("$%d = ", i);
373       value_print (val, gdb_stdout, 0, Val_pretty_default);
374       printf_filtered ("\n");
375     }
376
377   /* The next "info history +" should start after what we just printed.  */
378   num += 10;
379
380   /* Hitting just return after this command should do the same thing as
381      "info history +".  If num_exp is null, this is unnecessary, since
382      "info history +" is not useful after "info history".  */
383   if (from_tty && num_exp)
384     {
385       num_exp[0] = '+';
386       num_exp[1] = '\0';
387     }
388 }
389 \f
390 /* Internal variables.  These are variables within the debugger
391    that hold values assigned by debugger commands.
392    The user refers to them with a '$' prefix
393    that does not appear in the variable names stored internally.  */
394
395 static struct internalvar *internalvars;
396
397 /* Look up an internal variable with name NAME.  NAME should not
398    normally include a dollar sign.
399
400    If the specified internal variable does not exist,
401    one is created, with a void value.  */
402
403 struct internalvar *
404 lookup_internalvar (name)
405      char *name;
406 {
407   register struct internalvar *var;
408
409   for (var = internalvars; var; var = var->next)
410     if (STREQ (var->name, name))
411       return var;
412
413   var = (struct internalvar *) xmalloc (sizeof (struct internalvar));
414   var->name = concat (name, NULL);
415   var->value = allocate_value (builtin_type_void);
416   release_value (var->value);
417   var->next = internalvars;
418   internalvars = var;
419   return var;
420 }
421
422 value_ptr
423 value_of_internalvar (var)
424      struct internalvar *var;
425 {
426   register value_ptr val;
427
428 #ifdef IS_TRAPPED_INTERNALVAR
429   if (IS_TRAPPED_INTERNALVAR (var->name))
430     return VALUE_OF_TRAPPED_INTERNALVAR (var);
431 #endif 
432
433   val = value_copy (var->value);
434   if (VALUE_LAZY (val))
435     value_fetch_lazy (val);
436   VALUE_LVAL (val) = lval_internalvar;
437   VALUE_INTERNALVAR (val) = var;
438   return val;
439 }
440
441 void
442 set_internalvar_component (var, offset, bitpos, bitsize, newval)
443      struct internalvar *var;
444      int offset, bitpos, bitsize;
445      value_ptr newval;
446 {
447   register char *addr = VALUE_CONTENTS (var->value) + offset;
448
449 #ifdef IS_TRAPPED_INTERNALVAR
450   if (IS_TRAPPED_INTERNALVAR (var->name))
451     SET_TRAPPED_INTERNALVAR (var, newval, bitpos, bitsize, offset);
452 #endif
453
454   if (bitsize)
455     modify_field (addr, value_as_long (newval),
456                   bitpos, bitsize);
457   else
458     memcpy (addr, VALUE_CONTENTS (newval), TYPE_LENGTH (VALUE_TYPE (newval)));
459 }
460
461 void
462 set_internalvar (var, val)
463      struct internalvar *var;
464      value_ptr val;
465 {
466   value_ptr newval;
467
468 #ifdef IS_TRAPPED_INTERNALVAR
469   if (IS_TRAPPED_INTERNALVAR (var->name))
470     SET_TRAPPED_INTERNALVAR (var, val, 0, 0, 0);
471 #endif
472
473   newval = value_copy (val);
474   newval->modifiable = 1;
475
476   /* Force the value to be fetched from the target now, to avoid problems
477      later when this internalvar is referenced and the target is gone or
478      has changed.  */
479   if (VALUE_LAZY (newval))
480     value_fetch_lazy (newval);
481
482   /* Begin code which must not call error().  If var->value points to
483      something free'd, an error() obviously leaves a dangling pointer.
484      But we also get a danling pointer if var->value points to
485      something in the value chain (i.e., before release_value is
486      called), because after the error free_all_values will get called before
487      long.  */
488   free ((PTR)var->value);
489   var->value = newval;
490   release_value (newval);
491   /* End code which must not call error().  */
492 }
493
494 char *
495 internalvar_name (var)
496      struct internalvar *var;
497 {
498   return var->name;
499 }
500
501 /* Free all internalvars.  Done when new symtabs are loaded,
502    because that makes the values invalid.  */
503
504 void
505 clear_internalvars ()
506 {
507   register struct internalvar *var;
508
509   while (internalvars)
510     {
511       var = internalvars;
512       internalvars = var->next;
513       free ((PTR)var->name);
514       free ((PTR)var->value);
515       free ((PTR)var);
516     }
517 }
518
519 static void
520 show_convenience (ignore, from_tty)
521      char *ignore;
522      int from_tty;
523 {
524   register struct internalvar *var;
525   int varseen = 0;
526
527   for (var = internalvars; var; var = var->next)
528     {
529 #ifdef IS_TRAPPED_INTERNALVAR
530       if (IS_TRAPPED_INTERNALVAR (var->name))
531         continue;
532 #endif
533       if (!varseen)
534         {
535           varseen = 1;
536         }
537       printf_filtered ("$%s = ", var->name);
538       value_print (var->value, gdb_stdout, 0, Val_pretty_default);
539       printf_filtered ("\n");
540     }
541   if (!varseen)
542     printf_unfiltered ("No debugger convenience variables now defined.\n\
543 Convenience variables have names starting with \"$\";\n\
544 use \"set\" as in \"set $foo = 5\" to define them.\n");
545 }
546 \f
547 /* Extract a value as a C number (either long or double).
548    Knows how to convert fixed values to double, or
549    floating values to long.
550    Does not deallocate the value.  */
551
552 LONGEST
553 value_as_long (val)
554      register value_ptr val;
555 {
556   /* This coerces arrays and functions, which is necessary (e.g.
557      in disassemble_command).  It also dereferences references, which
558      I suspect is the most logical thing to do.  */
559   COERCE_ARRAY (val);
560   return unpack_long (VALUE_TYPE (val), VALUE_CONTENTS (val));
561 }
562
563 DOUBLEST
564 value_as_double (val)
565      register value_ptr val;
566 {
567   DOUBLEST foo;
568   int inv;
569   
570   foo = unpack_double (VALUE_TYPE (val), VALUE_CONTENTS (val), &inv);
571   if (inv)
572     error ("Invalid floating value found in program.");
573   return foo;
574 }
575 /* Extract a value as a C pointer.
576    Does not deallocate the value.  */
577 CORE_ADDR
578 value_as_pointer (val)
579      value_ptr val;
580 {
581   /* Assume a CORE_ADDR can fit in a LONGEST (for now).  Not sure
582      whether we want this to be true eventually.  */
583 #if 0
584   /* ADDR_BITS_REMOVE is wrong if we are being called for a
585      non-address (e.g. argument to "signal", "info break", etc.), or
586      for pointers to char, in which the low bits *are* significant.  */
587   return ADDR_BITS_REMOVE(value_as_long (val));
588 #else
589   return value_as_long (val);
590 #endif
591 }
592 \f
593 /* Unpack raw data (copied from debugee, target byte order) at VALADDR
594    as a long, or as a double, assuming the raw data is described
595    by type TYPE.  Knows how to convert different sizes of values
596    and can convert between fixed and floating point.  We don't assume
597    any alignment for the raw data.  Return value is in host byte order.
598
599    If you want functions and arrays to be coerced to pointers, and
600    references to be dereferenced, call value_as_long() instead.
601
602    C++: It is assumed that the front-end has taken care of
603    all matters concerning pointers to members.  A pointer
604    to member which reaches here is considered to be equivalent
605    to an INT (or some size).  After all, it is only an offset.  */
606
607 LONGEST
608 unpack_long (type, valaddr)
609      struct type *type;
610      char *valaddr;
611 {
612   register enum type_code code = TYPE_CODE (type);
613   register int len = TYPE_LENGTH (type);
614   register int nosign = TYPE_UNSIGNED (type);
615
616   if (current_language->la_language == language_scm
617       && is_scmvalue_type (type))
618     return scm_unpack (type, valaddr, TYPE_CODE_INT);
619
620   switch (code)
621     {
622     case TYPE_CODE_TYPEDEF:
623       return unpack_long (check_typedef (type), valaddr);
624     case TYPE_CODE_ENUM:
625     case TYPE_CODE_BOOL:
626     case TYPE_CODE_INT:
627     case TYPE_CODE_CHAR:
628     case TYPE_CODE_RANGE:
629       if (nosign)
630         return extract_unsigned_integer (valaddr, len);
631       else
632         return extract_signed_integer (valaddr, len);
633
634     case TYPE_CODE_FLT:
635       return extract_floating (valaddr, len);
636
637     case TYPE_CODE_PTR:
638     case TYPE_CODE_REF:
639       /* Assume a CORE_ADDR can fit in a LONGEST (for now).  Not sure
640          whether we want this to be true eventually.  */
641 #ifdef GDB_TARGET_IS_D10V
642       if (len == 2)
643           return D10V_MAKE_DADDR(extract_address (valaddr, len));
644 #endif
645       return extract_address (valaddr, len);
646
647     case TYPE_CODE_MEMBER:
648       error ("not implemented: member types in unpack_long");
649
650     default:
651       error ("Value can't be converted to integer.");
652     }
653   return 0; /* Placate lint.  */
654 }
655
656 /* Return a double value from the specified type and address.
657    INVP points to an int which is set to 0 for valid value,
658    1 for invalid value (bad float format).  In either case,
659    the returned double is OK to use.  Argument is in target
660    format, result is in host format.  */
661
662 DOUBLEST
663 unpack_double (type, valaddr, invp)
664      struct type *type;
665      char *valaddr;
666      int *invp;
667 {
668   enum type_code code;
669   int len;
670   int nosign;
671
672   *invp = 0;                    /* Assume valid.   */
673   CHECK_TYPEDEF (type);
674   code = TYPE_CODE (type);
675   len = TYPE_LENGTH (type);
676   nosign = TYPE_UNSIGNED (type);
677   if (code == TYPE_CODE_FLT)
678     {
679 #ifdef INVALID_FLOAT
680       if (INVALID_FLOAT (valaddr, len))
681         {
682           *invp = 1;
683           return 1.234567891011121314;
684         }
685 #endif
686       return extract_floating (valaddr, len);
687     }
688   else if (nosign)
689     {
690       /* Unsigned -- be sure we compensate for signed LONGEST.  */
691 #if !defined (_MSC_VER) || (_MSC_VER > 900)
692       return (ULONGEST) unpack_long (type, valaddr);
693 #else
694       /* FIXME!!! msvc22 doesn't support unsigned __int64 -> double */
695       return (LONGEST) unpack_long (type, valaddr);
696 #endif /* _MSC_VER */
697     }
698   else
699     {
700       /* Signed -- we are OK with unpack_long.  */
701       return unpack_long (type, valaddr);
702     }
703 }
704
705 /* Unpack raw data (copied from debugee, target byte order) at VALADDR
706    as a CORE_ADDR, assuming the raw data is described by type TYPE.
707    We don't assume any alignment for the raw data.  Return value is in
708    host byte order.
709
710    If you want functions and arrays to be coerced to pointers, and
711    references to be dereferenced, call value_as_pointer() instead.
712
713    C++: It is assumed that the front-end has taken care of
714    all matters concerning pointers to members.  A pointer
715    to member which reaches here is considered to be equivalent
716    to an INT (or some size).  After all, it is only an offset.  */
717
718 CORE_ADDR
719 unpack_pointer (type, valaddr)
720      struct type *type;
721      char *valaddr;
722 {
723   /* Assume a CORE_ADDR can fit in a LONGEST (for now).  Not sure
724      whether we want this to be true eventually.  */
725   return unpack_long (type, valaddr);
726 }
727 \f
728 /* Get the value of the FIELDN'th field (which must be static) of TYPE. */
729
730 value_ptr
731 value_static_field (type, fieldno)
732      struct type *type;
733      int fieldno;
734 {
735   CORE_ADDR addr;
736   asection *sect;
737   if (TYPE_FIELD_STATIC_HAS_ADDR (type, fieldno))
738     {
739       addr = TYPE_FIELD_STATIC_PHYSADDR (type, fieldno);
740       sect = NULL;
741     }
742   else
743     {
744       char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (type, fieldno);
745       struct symbol *sym = lookup_symbol (phys_name, 0, VAR_NAMESPACE, 0, NULL);
746       if (sym == NULL)
747         return NULL;
748       addr = SYMBOL_VALUE_ADDRESS (sym);
749       sect = SYMBOL_BFD_SECTION (sym);
750       SET_FIELD_PHYSADDR (TYPE_FIELD (type, fieldno), addr);
751     }
752   return value_at (TYPE_FIELD_TYPE (type, fieldno), addr, sect);
753 }
754
755 /* Given a value ARG1 (offset by OFFSET bytes)
756    of a struct or union type ARG_TYPE,
757    extract and return the value of one of its (non-static) fields.
758    FIELDNO says which field. */
759
760 value_ptr
761 value_primitive_field (arg1, offset, fieldno, arg_type)
762      register value_ptr arg1;
763      int offset;
764      register int fieldno;
765      register struct type *arg_type;
766 {
767   register value_ptr v;
768   register struct type *type;
769
770   CHECK_TYPEDEF (arg_type);
771   type = TYPE_FIELD_TYPE (arg_type, fieldno);
772
773   /* Handle packed fields */
774
775   if (TYPE_FIELD_BITSIZE (arg_type, fieldno))
776     {
777       v = value_from_longest (type,
778                               unpack_field_as_long (arg_type,
779                                                     VALUE_CONTENTS (arg1)
780                                                       + offset,
781                                                     fieldno));
782       VALUE_BITPOS (v) = TYPE_FIELD_BITPOS (arg_type, fieldno) % 8;
783       VALUE_BITSIZE (v) = TYPE_FIELD_BITSIZE (arg_type, fieldno);
784     }
785   else
786     {
787       v = allocate_value (type);
788       if (VALUE_LAZY (arg1))
789         VALUE_LAZY (v) = 1;
790       else
791         memcpy (VALUE_CONTENTS_RAW (v),
792                 VALUE_CONTENTS_RAW (arg1) + offset
793                   + TYPE_FIELD_BITPOS (arg_type, fieldno) / 8,
794                 TYPE_LENGTH (type));
795     }
796   VALUE_LVAL (v) = VALUE_LVAL (arg1);
797   if (VALUE_LVAL (arg1) == lval_internalvar)
798     VALUE_LVAL (v) = lval_internalvar_component;
799   VALUE_ADDRESS (v) = VALUE_ADDRESS (arg1);
800   VALUE_OFFSET (v) = VALUE_OFFSET (arg1) + offset
801                      + TYPE_FIELD_BITPOS (arg_type, fieldno) / 8;
802   return v;
803 }
804
805 /* Given a value ARG1 of a struct or union type,
806    extract and return the value of one of its (non-static) fields.
807    FIELDNO says which field. */
808
809 value_ptr
810 value_field (arg1, fieldno)
811      register value_ptr arg1;
812      register int fieldno;
813 {
814   return value_primitive_field (arg1, 0, fieldno, VALUE_TYPE (arg1));
815 }
816
817 /* Return a non-virtual function as a value.
818    F is the list of member functions which contains the desired method.
819    J is an index into F which provides the desired method. */
820
821 value_ptr
822 value_fn_field (arg1p, f, j, type, offset)
823      value_ptr *arg1p;
824      struct fn_field *f;
825      int j;
826      struct type *type;
827      int offset;
828 {
829   register value_ptr v;
830   register struct type *ftype = TYPE_FN_FIELD_TYPE (f, j);
831   struct symbol *sym;
832
833   sym = lookup_symbol (TYPE_FN_FIELD_PHYSNAME (f, j),
834                        0, VAR_NAMESPACE, 0, NULL);
835   if (! sym) 
836         return NULL;
837 /*
838         error ("Internal error: could not find physical method named %s",
839                     TYPE_FN_FIELD_PHYSNAME (f, j));
840 */
841   
842   v = allocate_value (ftype);
843   VALUE_ADDRESS (v) = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
844   VALUE_TYPE (v) = ftype;
845
846   if (arg1p)
847    {
848     if (type != VALUE_TYPE (*arg1p))
849       *arg1p = value_ind (value_cast (lookup_pointer_type (type),
850                                       value_addr (*arg1p)));
851
852     /* Move the `this' pointer according to the offset. 
853     VALUE_OFFSET (*arg1p) += offset;
854     */
855     }
856
857   return v;
858 }
859
860 /* Return a virtual function as a value.
861    ARG1 is the object which provides the virtual function
862    table pointer.  *ARG1P is side-effected in calling this function.
863    F is the list of member functions which contains the desired virtual
864    function.
865    J is an index into F which provides the desired virtual function.
866
867    TYPE is the type in which F is located.  */
868 value_ptr
869 value_virtual_fn_field (arg1p, f, j, type, offset)
870      value_ptr *arg1p;
871      struct fn_field *f;
872      int j;
873      struct type *type;
874      int offset;
875 {
876   value_ptr arg1 = *arg1p;
877   struct type *type1 = check_typedef (VALUE_TYPE (arg1));
878   struct type *entry_type;
879   /* First, get the virtual function table pointer.  That comes
880      with a strange type, so cast it to type `pointer to long' (which
881      should serve just fine as a function type).  Then, index into
882      the table, and convert final value to appropriate function type.  */
883   value_ptr entry, vfn, vtbl;
884   value_ptr vi = value_from_longest (builtin_type_int, 
885                                      (LONGEST) TYPE_FN_FIELD_VOFFSET (f, j));
886   struct type *fcontext = TYPE_FN_FIELD_FCONTEXT (f, j);
887   struct type *context;
888   if (fcontext == NULL)
889    /* We don't have an fcontext (e.g. the program was compiled with
890       g++ version 1).  Try to get the vtbl from the TYPE_VPTR_BASETYPE.
891       This won't work right for multiple inheritance, but at least we
892       should do as well as GDB 3.x did.  */
893     fcontext = TYPE_VPTR_BASETYPE (type);
894   context = lookup_pointer_type (fcontext);
895   /* Now context is a pointer to the basetype containing the vtbl.  */
896   if (TYPE_TARGET_TYPE (context) != type1)
897     {
898       arg1 = value_ind (value_cast (context, value_addr (arg1)));
899       type1 = check_typedef (VALUE_TYPE (arg1));
900     }
901
902   context = type1;
903   /* Now context is the basetype containing the vtbl.  */
904
905   /* This type may have been defined before its virtual function table
906      was.  If so, fill in the virtual function table entry for the
907      type now.  */
908   if (TYPE_VPTR_FIELDNO (context) < 0)
909     fill_in_vptr_fieldno (context);
910
911   /* The virtual function table is now an array of structures
912      which have the form { int16 offset, delta; void *pfn; }.  */
913   vtbl = value_ind (value_primitive_field (arg1, 0, 
914                                            TYPE_VPTR_FIELDNO (context),
915                                            TYPE_VPTR_BASETYPE (context)));
916
917   /* Index into the virtual function table.  This is hard-coded because
918      looking up a field is not cheap, and it may be important to save
919      time, e.g. if the user has set a conditional breakpoint calling
920      a virtual function.  */
921   entry = value_subscript (vtbl, vi);
922   entry_type = check_typedef (VALUE_TYPE (entry));
923
924   if (TYPE_CODE (entry_type) == TYPE_CODE_STRUCT)
925     {
926       /* Move the `this' pointer according to the virtual function table. */
927       VALUE_OFFSET (arg1) += value_as_long (value_field (entry, 0));
928       
929       if (! VALUE_LAZY (arg1))
930         {
931           VALUE_LAZY (arg1) = 1;
932           value_fetch_lazy (arg1);
933         }
934
935       vfn = value_field (entry, 2);
936     }
937   else if (TYPE_CODE (entry_type) == TYPE_CODE_PTR)
938     vfn = entry;
939   else
940     error ("I'm confused:  virtual function table has bad type");
941   /* Reinstantiate the function pointer with the correct type.  */
942   VALUE_TYPE (vfn) = lookup_pointer_type (TYPE_FN_FIELD_TYPE (f, j));
943
944   *arg1p = arg1;
945   return vfn;
946 }
947
948 /* ARG is a pointer to an object we know to be at least
949    a DTYPE.  BTYPE is the most derived basetype that has
950    already been searched (and need not be searched again).
951    After looking at the vtables between BTYPE and DTYPE,
952    return the most derived type we find.  The caller must
953    be satisfied when the return value == DTYPE.
954
955    FIXME-tiemann: should work with dossier entries as well.  */
956
957 static value_ptr
958 value_headof (in_arg, btype, dtype)
959      value_ptr in_arg;
960      struct type *btype, *dtype;
961 {
962   /* First collect the vtables we must look at for this object.  */
963   /* FIXME-tiemann: right now, just look at top-most vtable.  */
964   value_ptr arg, vtbl, entry, best_entry = 0;
965   int i, nelems;
966   int offset, best_offset = 0;
967   struct symbol *sym;
968   CORE_ADDR pc_for_sym;
969   char *demangled_name;
970   struct minimal_symbol *msymbol;
971
972   btype = TYPE_VPTR_BASETYPE (dtype);
973   CHECK_TYPEDEF (btype);
974   arg = in_arg;
975   if (btype != dtype)
976     arg = value_cast (lookup_pointer_type (btype), arg);
977   vtbl = value_ind (value_field (value_ind (arg), TYPE_VPTR_FIELDNO (btype)));
978
979   /* Check that VTBL looks like it points to a virtual function table.  */
980   msymbol = lookup_minimal_symbol_by_pc (VALUE_ADDRESS (vtbl));
981   if (msymbol == NULL
982       || (demangled_name = SYMBOL_NAME (msymbol)) == NULL
983       || !VTBL_PREFIX_P (demangled_name))
984     {
985       /* If we expected to find a vtable, but did not, let the user
986          know that we aren't happy, but don't throw an error.
987          FIXME: there has to be a better way to do this.  */
988       struct type *error_type = (struct type *)xmalloc (sizeof (struct type));
989       memcpy (error_type, VALUE_TYPE (in_arg), sizeof (struct type));
990       TYPE_NAME (error_type) = savestring ("suspicious *", sizeof ("suspicious *"));
991       VALUE_TYPE (in_arg) = error_type;
992       return in_arg;
993     }
994
995   /* Now search through the virtual function table.  */
996   entry = value_ind (vtbl);
997   nelems = longest_to_int (value_as_long (value_field (entry, 2)));
998   for (i = 1; i <= nelems; i++)
999     {
1000       entry = value_subscript (vtbl, value_from_longest (builtin_type_int, 
1001                                                       (LONGEST) i));
1002       /* This won't work if we're using thunks. */
1003       if (TYPE_CODE (check_typedef (VALUE_TYPE (entry))) != TYPE_CODE_STRUCT)
1004         break;
1005       offset = longest_to_int (value_as_long (value_field (entry, 0)));
1006       /* If we use '<=' we can handle single inheritance
1007        * where all offsets are zero - just use the first entry found. */
1008       if (offset <= best_offset)
1009         {
1010           best_offset = offset;
1011           best_entry = entry;
1012         }
1013     }
1014   /* Move the pointer according to BEST_ENTRY's offset, and figure
1015      out what type we should return as the new pointer.  */
1016   if (best_entry == 0)
1017     {
1018       /* An alternative method (which should no longer be necessary).
1019        * But we leave it in for future use, when we will hopefully
1020        * have optimizes the vtable to use thunks instead of offsets. */
1021       /* Use the name of vtable itself to extract a base type. */
1022       demangled_name += 4;  /* Skip _vt$ prefix. */
1023     }
1024   else
1025     {
1026       pc_for_sym = value_as_pointer (value_field (best_entry, 2));
1027       sym = find_pc_function (pc_for_sym);
1028       demangled_name = cplus_demangle (SYMBOL_NAME (sym), DMGL_ANSI);
1029       *(strchr (demangled_name, ':')) = '\0';
1030     }
1031   sym = lookup_symbol (demangled_name, 0, VAR_NAMESPACE, 0, 0);
1032   if (sym == NULL)
1033     error ("could not find type declaration for `%s'", demangled_name);
1034   if (best_entry)
1035     {
1036       free (demangled_name);
1037       arg = value_add (value_cast (builtin_type_int, arg),
1038                        value_field (best_entry, 0));
1039     }
1040   else arg = in_arg;
1041   VALUE_TYPE (arg) = lookup_pointer_type (SYMBOL_TYPE (sym));
1042   return arg;
1043 }
1044
1045 /* ARG is a pointer object of type TYPE.  If TYPE has virtual
1046    function tables, probe ARG's tables (including the vtables
1047    of its baseclasses) to figure out the most derived type that ARG
1048    could actually be a pointer to.  */
1049
1050 value_ptr
1051 value_from_vtable_info (arg, type)
1052      value_ptr arg;
1053      struct type *type;
1054 {
1055   /* Take care of preliminaries.  */
1056   if (TYPE_VPTR_FIELDNO (type) < 0)
1057     fill_in_vptr_fieldno (type);
1058   if (TYPE_VPTR_FIELDNO (type) < 0)
1059     return 0;
1060
1061   return value_headof (arg, 0, type);
1062 }
1063
1064 /* Return true if the INDEXth field of TYPE is a virtual baseclass
1065    pointer which is for the base class whose type is BASECLASS.  */
1066
1067 static int
1068 vb_match (type, index, basetype)
1069      struct type *type;
1070      int index;
1071      struct type *basetype;
1072 {
1073   struct type *fieldtype;
1074   char *name = TYPE_FIELD_NAME (type, index);
1075   char *field_class_name = NULL;
1076
1077   if (*name != '_')
1078     return 0;
1079   /* gcc 2.4 uses _vb$.  */
1080   if (name[1] == 'v' && name[2] == 'b' && is_cplus_marker (name[3]))
1081     field_class_name = name + 4;
1082   /* gcc 2.5 will use __vb_.  */
1083   if (name[1] == '_' && name[2] == 'v' && name[3] == 'b' && name[4] == '_')
1084     field_class_name = name + 5;
1085
1086   if (field_class_name == NULL)
1087     /* This field is not a virtual base class pointer.  */
1088     return 0;
1089
1090   /* It's a virtual baseclass pointer, now we just need to find out whether
1091      it is for this baseclass.  */
1092   fieldtype = TYPE_FIELD_TYPE (type, index);
1093   if (fieldtype == NULL
1094       || TYPE_CODE (fieldtype) != TYPE_CODE_PTR)
1095     /* "Can't happen".  */
1096     return 0;
1097
1098   /* What we check for is that either the types are equal (needed for
1099      nameless types) or have the same name.  This is ugly, and a more
1100      elegant solution should be devised (which would probably just push
1101      the ugliness into symbol reading unless we change the stabs format).  */
1102   if (TYPE_TARGET_TYPE (fieldtype) == basetype)
1103     return 1;
1104
1105   if (TYPE_NAME (basetype) != NULL
1106       && TYPE_NAME (TYPE_TARGET_TYPE (fieldtype)) != NULL
1107       && STREQ (TYPE_NAME (basetype),
1108                 TYPE_NAME (TYPE_TARGET_TYPE (fieldtype))))
1109     return 1;
1110   return 0;
1111 }
1112
1113 /* Compute the offset of the baseclass which is
1114    the INDEXth baseclass of class TYPE,
1115    for value at VALADDR (in host) at ADDRESS (in target).
1116    The result is the offset of the baseclass value relative
1117    to (the address of)(ARG) + OFFSET.
1118
1119    -1 is returned on error. */
1120
1121 int
1122 baseclass_offset (type, index, valaddr, address)
1123      struct type *type;
1124      int index;
1125      char *valaddr;
1126      CORE_ADDR address;
1127 {
1128   struct type *basetype = TYPE_BASECLASS (type, index);
1129
1130   if (BASETYPE_VIA_VIRTUAL (type, index))
1131     {
1132       /* Must hunt for the pointer to this virtual baseclass.  */
1133       register int i, len = TYPE_NFIELDS (type);
1134       register int n_baseclasses = TYPE_N_BASECLASSES (type);
1135
1136       /* First look for the virtual baseclass pointer
1137          in the fields.  */
1138       for (i = n_baseclasses; i < len; i++)
1139         {
1140           if (vb_match (type, i, basetype))
1141             {
1142               CORE_ADDR addr
1143                 = unpack_pointer (TYPE_FIELD_TYPE (type, i),
1144                                   valaddr + (TYPE_FIELD_BITPOS (type, i) / 8));
1145
1146               return addr - (LONGEST) address;
1147             }
1148         }
1149       /* Not in the fields, so try looking through the baseclasses.  */
1150       for (i = index+1; i < n_baseclasses; i++)
1151         {
1152           int boffset =
1153               baseclass_offset (type, i, valaddr, address);
1154           if (boffset)
1155             return boffset;
1156         }
1157       /* Not found.  */
1158       return -1;
1159     }
1160
1161   /* Baseclass is easily computed.  */
1162   return TYPE_BASECLASS_BITPOS (type, index) / 8;
1163 }
1164 \f
1165 /* Unpack a field FIELDNO of the specified TYPE, from the anonymous object at
1166    VALADDR.
1167
1168    Extracting bits depends on endianness of the machine.  Compute the
1169    number of least significant bits to discard.  For big endian machines,
1170    we compute the total number of bits in the anonymous object, subtract
1171    off the bit count from the MSB of the object to the MSB of the
1172    bitfield, then the size of the bitfield, which leaves the LSB discard
1173    count.  For little endian machines, the discard count is simply the
1174    number of bits from the LSB of the anonymous object to the LSB of the
1175    bitfield.
1176
1177    If the field is signed, we also do sign extension. */
1178
1179 LONGEST
1180 unpack_field_as_long (type, valaddr, fieldno)
1181      struct type *type;
1182      char *valaddr;
1183      int fieldno;
1184 {
1185   ULONGEST val;
1186   ULONGEST valmask;
1187   int bitpos = TYPE_FIELD_BITPOS (type, fieldno);
1188   int bitsize = TYPE_FIELD_BITSIZE (type, fieldno);
1189   int lsbcount;
1190   struct type *field_type;
1191
1192   val = extract_unsigned_integer (valaddr + bitpos / 8, sizeof (val));
1193   field_type = TYPE_FIELD_TYPE (type, fieldno);
1194   CHECK_TYPEDEF (field_type);
1195
1196   /* Extract bits.  See comment above. */
1197
1198   if (BITS_BIG_ENDIAN)
1199     lsbcount = (sizeof val * 8 - bitpos % 8 - bitsize);
1200   else
1201     lsbcount = (bitpos % 8);
1202   val >>= lsbcount;
1203
1204   /* If the field does not entirely fill a LONGEST, then zero the sign bits.
1205      If the field is signed, and is negative, then sign extend. */
1206
1207   if ((bitsize > 0) && (bitsize < 8 * (int) sizeof (val)))
1208     {
1209       valmask = (((ULONGEST) 1) << bitsize) - 1;
1210       val &= valmask;
1211       if (!TYPE_UNSIGNED (field_type))
1212         {
1213           if (val & (valmask ^ (valmask >> 1)))
1214             {
1215               val |= ~valmask;
1216             }
1217         }
1218     }
1219   return (val);
1220 }
1221
1222 /* Modify the value of a bitfield.  ADDR points to a block of memory in
1223    target byte order; the bitfield starts in the byte pointed to.  FIELDVAL
1224    is the desired value of the field, in host byte order.  BITPOS and BITSIZE
1225    indicate which bits (in target bit order) comprise the bitfield.  */
1226
1227 void
1228 modify_field (addr, fieldval, bitpos, bitsize)
1229      char *addr;
1230      LONGEST fieldval;
1231      int bitpos, bitsize;
1232 {
1233   LONGEST oword;
1234
1235   /* If a negative fieldval fits in the field in question, chop
1236      off the sign extension bits.  */
1237   if (bitsize < (8 * (int) sizeof (fieldval))
1238       && (~fieldval & ~((1 << (bitsize - 1)) - 1)) == 0)
1239     fieldval = fieldval & ((1 << bitsize) - 1);
1240
1241   /* Warn if value is too big to fit in the field in question.  */
1242   if (bitsize < (8 * (int) sizeof (fieldval))
1243       && 0 != (fieldval & ~((1<<bitsize)-1)))
1244     {
1245       /* FIXME: would like to include fieldval in the message, but
1246          we don't have a sprintf_longest.  */
1247       warning ("Value does not fit in %d bits.", bitsize);
1248
1249       /* Truncate it, otherwise adjoining fields may be corrupted.  */
1250       fieldval = fieldval & ((1 << bitsize) - 1);
1251     }
1252
1253   oword = extract_signed_integer (addr, sizeof oword);
1254
1255   /* Shifting for bit field depends on endianness of the target machine.  */
1256   if (BITS_BIG_ENDIAN)
1257     bitpos = sizeof (oword) * 8 - bitpos - bitsize;
1258
1259   /* Mask out old value, while avoiding shifts >= size of oword */
1260   if (bitsize < 8 * (int) sizeof (oword))
1261     oword &= ~(((((ULONGEST)1) << bitsize) - 1) << bitpos);
1262   else
1263     oword &= ~((~(ULONGEST)0) << bitpos);
1264   oword |= fieldval << bitpos;
1265
1266   store_signed_integer (addr, sizeof oword, oword);
1267 }
1268 \f
1269 /* Convert C numbers into newly allocated values */
1270
1271 value_ptr
1272 value_from_longest (type, num)
1273      struct type *type;
1274      register LONGEST num;
1275 {
1276   register value_ptr val = allocate_value (type);
1277   register enum type_code code;
1278   register int len;
1279  retry:
1280   code = TYPE_CODE (type);
1281   len = TYPE_LENGTH (type);
1282
1283   switch (code)
1284     {
1285     case TYPE_CODE_TYPEDEF:
1286       type = check_typedef (type);
1287       goto retry;
1288     case TYPE_CODE_INT:
1289     case TYPE_CODE_CHAR:
1290     case TYPE_CODE_ENUM:
1291     case TYPE_CODE_BOOL:
1292     case TYPE_CODE_RANGE:
1293       store_signed_integer (VALUE_CONTENTS_RAW (val), len, num);
1294       break;
1295       
1296     case TYPE_CODE_REF:
1297     case TYPE_CODE_PTR:
1298       /* This assumes that all pointers of a given length
1299          have the same form.  */
1300       store_address (VALUE_CONTENTS_RAW (val), len, (CORE_ADDR) num);
1301       break;
1302       
1303     default:
1304       error ("Unexpected type (%d) encountered for integer constant.", code);
1305     }
1306   return val;
1307 }
1308
1309 value_ptr
1310 value_from_double (type, num)
1311      struct type *type;
1312      DOUBLEST num;
1313 {
1314   register value_ptr val = allocate_value (type);
1315   struct type *base_type = check_typedef (type);
1316   register enum type_code code = TYPE_CODE (base_type);
1317   register int len = TYPE_LENGTH (base_type);
1318
1319   if (code == TYPE_CODE_FLT)
1320     {
1321       store_floating (VALUE_CONTENTS_RAW (val), len, num);
1322     }
1323   else
1324     error ("Unexpected type encountered for floating constant.");
1325
1326   return val;
1327 }
1328 \f
1329 /* Deal with the value that is "about to be returned".  */
1330
1331 /* Return the value that a function returning now
1332    would be returning to its caller, assuming its type is VALTYPE.
1333    RETBUF is where we look for what ought to be the contents
1334    of the registers (in raw form).  This is because it is often
1335    desirable to restore old values to those registers
1336    after saving the contents of interest, and then call
1337    this function using the saved values.
1338    struct_return is non-zero when the function in question is
1339    using the structure return conventions on the machine in question;
1340    0 when it is using the value returning conventions (this often
1341    means returning pointer to where structure is vs. returning value). */
1342
1343 value_ptr
1344 value_being_returned (valtype, retbuf, struct_return)
1345      register struct type *valtype;
1346      char retbuf[REGISTER_BYTES];
1347      int struct_return;
1348      /*ARGSUSED*/
1349 {
1350   register value_ptr val;
1351   CORE_ADDR addr;
1352
1353 #if defined (EXTRACT_STRUCT_VALUE_ADDRESS)
1354   /* If this is not defined, just use EXTRACT_RETURN_VALUE instead.  */
1355   if (struct_return) {
1356     addr = EXTRACT_STRUCT_VALUE_ADDRESS (retbuf);
1357     if (!addr)
1358       error ("Function return value unknown");
1359     return value_at (valtype, addr, NULL);
1360   }
1361 #endif
1362
1363   val = allocate_value (valtype);
1364   CHECK_TYPEDEF (valtype);
1365   EXTRACT_RETURN_VALUE (valtype, retbuf, VALUE_CONTENTS_RAW (val));
1366
1367   return val;
1368 }
1369
1370 /* Should we use EXTRACT_STRUCT_VALUE_ADDRESS instead of
1371    EXTRACT_RETURN_VALUE?  GCC_P is true if compiled with gcc
1372    and TYPE is the type (which is known to be struct, union or array).
1373
1374    On most machines, the struct convention is used unless we are
1375    using gcc and the type is of a special size.  */
1376 /* As of about 31 Mar 93, GCC was changed to be compatible with the
1377    native compiler.  GCC 2.3.3 was the last release that did it the
1378    old way.  Since gcc2_compiled was not changed, we have no
1379    way to correctly win in all cases, so we just do the right thing
1380    for gcc1 and for gcc2 after this change.  Thus it loses for gcc
1381    2.0-2.3.3.  This is somewhat unfortunate, but changing gcc2_compiled
1382    would cause more chaos than dealing with some struct returns being
1383    handled wrong.  */
1384
1385 int
1386 generic_use_struct_convention (gcc_p, value_type)
1387      int gcc_p;
1388      struct type *value_type;
1389 {     
1390   return !((gcc_p == 1)
1391             && (TYPE_LENGTH (value_type) == 1
1392                 || TYPE_LENGTH (value_type) == 2
1393                 || TYPE_LENGTH (value_type) == 4
1394                 || TYPE_LENGTH (value_type) == 8));
1395 }
1396
1397 #ifndef USE_STRUCT_CONVENTION
1398 #define USE_STRUCT_CONVENTION(gcc_p,type) generic_use_struct_convention (gcc_p, type)
1399 #endif
1400
1401 /* Some fundamental types (such as long double) are returned on the stack for
1402    certain architectures.  This macro should return true for any type besides
1403    struct, union or array that gets returned on the stack.  */
1404
1405 #ifndef RETURN_VALUE_ON_STACK
1406 #define RETURN_VALUE_ON_STACK(TYPE) 0
1407 #endif
1408
1409 /* Return true if the function specified is using the structure returning
1410    convention on this machine to return arguments, or 0 if it is using
1411    the value returning convention.  FUNCTION is the value representing
1412    the function, FUNCADDR is the address of the function, and VALUE_TYPE
1413    is the type returned by the function.  GCC_P is nonzero if compiled
1414    with GCC.  */
1415
1416 int
1417 using_struct_return (function, funcaddr, value_type, gcc_p)
1418      value_ptr function;
1419      CORE_ADDR funcaddr;
1420      struct type *value_type;
1421      int gcc_p;
1422      /*ARGSUSED*/
1423 {
1424   register enum type_code code = TYPE_CODE (value_type);
1425
1426   if (code == TYPE_CODE_ERROR)
1427     error ("Function return type unknown.");
1428
1429   if (code == TYPE_CODE_STRUCT
1430       || code == TYPE_CODE_UNION
1431       || code == TYPE_CODE_ARRAY
1432       || RETURN_VALUE_ON_STACK (value_type))
1433     return USE_STRUCT_CONVENTION (gcc_p, value_type);
1434
1435   return 0;
1436 }
1437
1438 /* Store VAL so it will be returned if a function returns now.
1439    Does not verify that VAL's type matches what the current
1440    function wants to return.  */
1441
1442 void
1443 set_return_value (val)
1444      value_ptr val;
1445 {
1446   struct type *type = check_typedef (VALUE_TYPE (val));
1447   register enum type_code code = TYPE_CODE (type);
1448
1449   if (code == TYPE_CODE_ERROR)
1450     error ("Function return type unknown.");
1451
1452   if (   code == TYPE_CODE_STRUCT
1453       || code == TYPE_CODE_UNION)       /* FIXME, implement struct return.  */
1454     error ("GDB does not support specifying a struct or union return value.");
1455
1456   STORE_RETURN_VALUE (type, VALUE_CONTENTS (val));
1457 }
1458 \f
1459 void
1460 _initialize_values ()
1461 {
1462   add_cmd ("convenience", no_class, show_convenience,
1463             "Debugger convenience (\"$foo\") variables.\n\
1464 These variables are created when you assign them values;\n\
1465 thus, \"print $foo=1\" gives \"$foo\" the value 1.  Values may be any type.\n\n\
1466 A few convenience variables are given values automatically:\n\
1467 \"$_\"holds the last address examined with \"x\" or \"info lines\",\n\
1468 \"$__\" holds the contents of the last address examined with \"x\".",
1469            &showlist);
1470
1471   add_cmd ("values", no_class, show_values,
1472            "Elements of value history around item number IDX (or last ten).",
1473            &showlist);
1474 }