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