2004-03-15 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gdb / infcall.c
CommitLineData
04714b91
AC
1/* Perform an inferior function call, for GDB, the GNU debugger.
2
3 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
9ab9195f
EZ
4 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
5 Free Software Foundation, Inc.
04714b91
AC
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
23
24#include "defs.h"
25#include "breakpoint.h"
26#include "target.h"
27#include "regcache.h"
28#include "inferior.h"
29#include "gdb_assert.h"
30#include "block.h"
31#include "gdbcore.h"
32#include "language.h"
9ab9195f 33#include "objfiles.h"
04714b91
AC
34#include "gdbcmd.h"
35#include "command.h"
36#include "gdb_string.h"
b9362cc7 37#include "infcall.h"
04714b91
AC
38
39/* NOTE: cagney/2003-04-16: What's the future of this code?
40
41 GDB needs an asynchronous expression evaluator, that means an
42 asynchronous inferior function call implementation, and that in
43 turn means restructuring the code so that it is event driven. */
44
45/* How you should pass arguments to a function depends on whether it
46 was defined in K&R style or prototype style. If you define a
47 function using the K&R syntax that takes a `float' argument, then
48 callers must pass that argument as a `double'. If you define the
49 function using the prototype syntax, then you must pass the
50 argument as a `float', with no promotion.
51
52 Unfortunately, on certain older platforms, the debug info doesn't
53 indicate reliably how each function was defined. A function type's
54 TYPE_FLAG_PROTOTYPED flag may be clear, even if the function was
55 defined in prototype style. When calling a function whose
56 TYPE_FLAG_PROTOTYPED flag is clear, GDB consults this flag to
57 decide what to do.
58
59 For modern targets, it is proper to assume that, if the prototype
60 flag is clear, that can be trusted: `float' arguments should be
61 promoted to `double'. For some older targets, if the prototype
62 flag is clear, that doesn't tell us anything. The default is to
63 trust the debug information; the user can override this behavior
64 with "set coerce-float-to-double 0". */
65
66static int coerce_float_to_double_p = 1;
67
68/* This boolean tells what gdb should do if a signal is received while
69 in a function called from gdb (call dummy). If set, gdb unwinds
70 the stack and restore the context to what as it was before the
71 call.
72
73 The default is to stop in the frame where the signal was received. */
74
75int unwind_on_signal_p = 0;
76
77/* Perform the standard coercions that are specified
78 for arguments to be passed to C functions.
79
80 If PARAM_TYPE is non-NULL, it is the expected parameter type.
81 IS_PROTOTYPED is non-zero if the function declaration is prototyped. */
82
83static struct value *
84value_arg_coerce (struct value *arg, struct type *param_type,
85 int is_prototyped)
86{
52f0bd74
AC
87 struct type *arg_type = check_typedef (VALUE_TYPE (arg));
88 struct type *type
04714b91
AC
89 = param_type ? check_typedef (param_type) : arg_type;
90
91 switch (TYPE_CODE (type))
92 {
93 case TYPE_CODE_REF:
94 if (TYPE_CODE (arg_type) != TYPE_CODE_REF
95 && TYPE_CODE (arg_type) != TYPE_CODE_PTR)
96 {
97 arg = value_addr (arg);
98 VALUE_TYPE (arg) = param_type;
99 return arg;
100 }
101 break;
102 case TYPE_CODE_INT:
103 case TYPE_CODE_CHAR:
104 case TYPE_CODE_BOOL:
105 case TYPE_CODE_ENUM:
106 /* If we don't have a prototype, coerce to integer type if necessary. */
107 if (!is_prototyped)
108 {
109 if (TYPE_LENGTH (type) < TYPE_LENGTH (builtin_type_int))
110 type = builtin_type_int;
111 }
112 /* Currently all target ABIs require at least the width of an integer
113 type for an argument. We may have to conditionalize the following
114 type coercion for future targets. */
115 if (TYPE_LENGTH (type) < TYPE_LENGTH (builtin_type_int))
116 type = builtin_type_int;
117 break;
118 case TYPE_CODE_FLT:
119 if (!is_prototyped && coerce_float_to_double_p)
120 {
121 if (TYPE_LENGTH (type) < TYPE_LENGTH (builtin_type_double))
122 type = builtin_type_double;
123 else if (TYPE_LENGTH (type) > TYPE_LENGTH (builtin_type_double))
124 type = builtin_type_long_double;
125 }
126 break;
127 case TYPE_CODE_FUNC:
128 type = lookup_pointer_type (type);
129 break;
130 case TYPE_CODE_ARRAY:
131 /* Arrays are coerced to pointers to their first element, unless
132 they are vectors, in which case we want to leave them alone,
133 because they are passed by value. */
134 if (current_language->c_style_arrays)
135 if (!TYPE_VECTOR (type))
136 type = lookup_pointer_type (TYPE_TARGET_TYPE (type));
137 break;
138 case TYPE_CODE_UNDEF:
139 case TYPE_CODE_PTR:
140 case TYPE_CODE_STRUCT:
141 case TYPE_CODE_UNION:
142 case TYPE_CODE_VOID:
143 case TYPE_CODE_SET:
144 case TYPE_CODE_RANGE:
145 case TYPE_CODE_STRING:
146 case TYPE_CODE_BITSTRING:
147 case TYPE_CODE_ERROR:
148 case TYPE_CODE_MEMBER:
149 case TYPE_CODE_METHOD:
150 case TYPE_CODE_COMPLEX:
151 default:
152 break;
153 }
154
155 return value_cast (type, arg);
156}
157
158/* Determine a function's address and its return type from its value.
159 Calls error() if the function is not valid for calling. */
160
a9fa03de 161CORE_ADDR
04714b91
AC
162find_function_addr (struct value *function, struct type **retval_type)
163{
52f0bd74
AC
164 struct type *ftype = check_typedef (VALUE_TYPE (function));
165 enum type_code code = TYPE_CODE (ftype);
04714b91
AC
166 struct type *value_type;
167 CORE_ADDR funaddr;
168
169 /* If it's a member function, just look at the function
170 part of it. */
171
172 /* Determine address to call. */
173 if (code == TYPE_CODE_FUNC || code == TYPE_CODE_METHOD)
174 {
175 funaddr = VALUE_ADDRESS (function);
176 value_type = TYPE_TARGET_TYPE (ftype);
177 }
178 else if (code == TYPE_CODE_PTR)
179 {
180 funaddr = value_as_address (function);
181 ftype = check_typedef (TYPE_TARGET_TYPE (ftype));
182 if (TYPE_CODE (ftype) == TYPE_CODE_FUNC
183 || TYPE_CODE (ftype) == TYPE_CODE_METHOD)
184 {
e2d0e7eb
AC
185 funaddr = gdbarch_convert_from_func_ptr_addr (current_gdbarch,
186 funaddr,
187 &current_target);
04714b91
AC
188 value_type = TYPE_TARGET_TYPE (ftype);
189 }
190 else
191 value_type = builtin_type_int;
192 }
193 else if (code == TYPE_CODE_INT)
194 {
195 /* Handle the case of functions lacking debugging info.
196 Their values are characters since their addresses are char */
197 if (TYPE_LENGTH (ftype) == 1)
198 funaddr = value_as_address (value_addr (function));
199 else
200 /* Handle integer used as address of a function. */
201 funaddr = (CORE_ADDR) value_as_long (function);
202
203 value_type = builtin_type_int;
204 }
205 else
206 error ("Invalid data type for function to be called.");
207
208 *retval_type = value_type;
209 return funaddr;
210}
211
212/* Call breakpoint_auto_delete on the current contents of the bpstat
213 pointed to by arg (which is really a bpstat *). */
214
215static void
216breakpoint_auto_delete_contents (void *arg)
217{
218 breakpoint_auto_delete (*(bpstat *) arg);
219}
220
7043d8dc
AC
221static CORE_ADDR
222legacy_push_dummy_code (struct gdbarch *gdbarch,
223 CORE_ADDR sp, CORE_ADDR funaddr, int using_gcc,
224 struct value **args, int nargs,
225 struct type *value_type,
226 CORE_ADDR *real_pc, CORE_ADDR *bp_addr)
227{
b1e29e33
AC
228 /* CALL_DUMMY is an array of words (DEPRECATED_REGISTER_SIZE), but
229 each word is in host byte order. Before calling
230 DEPRECATED_FIX_CALL_DUMMY, we byteswap it and remove any extra
231 bytes which might exist because ULONGEST is bigger than
232 DEPRECATED_REGISTER_SIZE. */
7043d8dc
AC
233 /* NOTE: This is pretty wierd, as the call dummy is actually a
234 sequence of instructions. But CISC machines will have to pack
b1e29e33
AC
235 the instructions into DEPRECATED_REGISTER_SIZE units (and so will
236 RISC machines for which INSTRUCTION_SIZE is not
237 DEPRECATED_REGISTER_SIZE). */
7043d8dc
AC
238 /* NOTE: This is pretty stupid. CALL_DUMMY should be in strict
239 target byte order. */
240 CORE_ADDR start_sp;
b1e29e33
AC
241 ULONGEST *dummy = alloca (DEPRECATED_SIZEOF_CALL_DUMMY_WORDS);
242 int sizeof_dummy1 = (DEPRECATED_REGISTER_SIZE
243 * DEPRECATED_SIZEOF_CALL_DUMMY_WORDS
7043d8dc
AC
244 / sizeof (ULONGEST));
245 char *dummy1 = alloca (sizeof_dummy1);
b1e29e33
AC
246 memcpy (dummy, DEPRECATED_CALL_DUMMY_WORDS,
247 DEPRECATED_SIZEOF_CALL_DUMMY_WORDS);
7043d8dc
AC
248 if (INNER_THAN (1, 2))
249 {
250 /* Stack grows down */
251 sp -= sizeof_dummy1;
252 start_sp = sp;
253 }
254 else
255 {
256 /* Stack grows up */
257 start_sp = sp;
258 sp += sizeof_dummy1;
259 }
260 /* NOTE: cagney/2002-09-10: Don't bother re-adjusting the stack
261 after allocating space for the call dummy. A target can specify
b1e29e33
AC
262 a SIZEOF_DUMMY1 (via DEPRECATED_SIZEOF_CALL_DUMMY_WORDS) such
263 that all local alignment requirements are met. */
7043d8dc
AC
264 /* Create a call sequence customized for this function and the
265 number of arguments for it. */
266 {
267 int i;
b1e29e33 268 for (i = 0; i < (int) (DEPRECATED_SIZEOF_CALL_DUMMY_WORDS / sizeof (dummy[0]));
7043d8dc 269 i++)
b1e29e33
AC
270 store_unsigned_integer (&dummy1[i * DEPRECATED_REGISTER_SIZE],
271 DEPRECATED_REGISTER_SIZE,
7043d8dc
AC
272 (ULONGEST) dummy[i]);
273 }
274 /* NOTE: cagney/2003-04-22: This computation of REAL_PC, BP_ADDR and
275 DUMMY_ADDR is pretty messed up. It comes from constant tinkering
b1e29e33 276 with the values. Instead a DEPRECATED_FIX_CALL_DUMMY replacement
7043d8dc 277 (PUSH_DUMMY_BREAKPOINT?) should just do everything. */
da6bab63
AC
278 if (!gdbarch_push_dummy_call_p (current_gdbarch))
279 {
da6bab63
AC
280 if (DEPRECATED_FIX_CALL_DUMMY_P ())
281 {
282 /* gdb_assert (CALL_DUMMY_LOCATION == ON_STACK) true? */
283 DEPRECATED_FIX_CALL_DUMMY (dummy1, start_sp, funaddr, nargs, args,
284 value_type, using_gcc);
285 }
286 (*real_pc) = start_sp;
da6bab63 287 }
7043d8dc
AC
288 /* Yes, the offset is applied to the real_pc and not the dummy addr.
289 Ulgh! Blame the HP/UX target. */
b1e29e33 290 (*bp_addr) = (*real_pc) + DEPRECATED_CALL_DUMMY_BREAKPOINT_OFFSET;
7043d8dc
AC
291 /* Yes, the offset is applied to the real_pc and not the
292 dummy_addr. Ulgh! Blame the HP/UX target. */
b1e29e33 293 (*real_pc) += DEPRECATED_CALL_DUMMY_START_OFFSET;
7043d8dc
AC
294 write_memory (start_sp, (char *) dummy1, sizeof_dummy1);
295 if (DEPRECATED_USE_GENERIC_DUMMY_FRAMES)
296 generic_save_call_dummy_addr (start_sp, start_sp + sizeof_dummy1);
297 return sp;
298}
299
300static CORE_ADDR
301generic_push_dummy_code (struct gdbarch *gdbarch,
302 CORE_ADDR sp, CORE_ADDR funaddr, int using_gcc,
303 struct value **args, int nargs,
304 struct type *value_type,
305 CORE_ADDR *real_pc, CORE_ADDR *bp_addr)
306{
307 /* Something here to findout the size of a breakpoint and then
308 allocate space for it on the stack. */
309 int bplen;
310 /* This code assumes frame align. */
311 gdb_assert (gdbarch_frame_align_p (gdbarch));
312 /* Force the stack's alignment. The intent is to ensure that the SP
313 is aligned to at least a breakpoint instruction's boundary. */
314 sp = gdbarch_frame_align (gdbarch, sp);
315 /* Allocate space for, and then position the breakpoint on the
316 stack. */
317 if (gdbarch_inner_than (gdbarch, 1, 2))
318 {
319 CORE_ADDR bppc = sp;
320 gdbarch_breakpoint_from_pc (gdbarch, &bppc, &bplen);
321 sp = gdbarch_frame_align (gdbarch, sp - bplen);
322 (*bp_addr) = sp;
323 /* Should the breakpoint size/location be re-computed here? */
324 }
325 else
326 {
327 (*bp_addr) = sp;
328 gdbarch_breakpoint_from_pc (gdbarch, bp_addr, &bplen);
329 sp = gdbarch_frame_align (gdbarch, sp + bplen);
330 }
331 /* Inferior resumes at the function entry point. */
332 (*real_pc) = funaddr;
333 return sp;
334}
335
b1e29e33
AC
336/* Provide backward compatibility. Once DEPRECATED_FIX_CALL_DUMMY is
337 eliminated, this can be simplified. */
7043d8dc
AC
338
339static CORE_ADDR
340push_dummy_code (struct gdbarch *gdbarch,
341 CORE_ADDR sp, CORE_ADDR funaddr, int using_gcc,
342 struct value **args, int nargs,
343 struct type *value_type,
344 CORE_ADDR *real_pc, CORE_ADDR *bp_addr)
345{
346 if (gdbarch_push_dummy_code_p (gdbarch))
347 return gdbarch_push_dummy_code (gdbarch, sp, funaddr, using_gcc,
348 args, nargs, value_type, real_pc, bp_addr);
da6bab63
AC
349 else if (DEPRECATED_FIX_CALL_DUMMY_P ()
350 && !gdbarch_push_dummy_call_p (gdbarch))
7043d8dc
AC
351 return legacy_push_dummy_code (gdbarch, sp, funaddr, using_gcc,
352 args, nargs, value_type, real_pc, bp_addr);
353 else
354 return generic_push_dummy_code (gdbarch, sp, funaddr, using_gcc,
355 args, nargs, value_type, real_pc, bp_addr);
356}
357
04714b91
AC
358/* All this stuff with a dummy frame may seem unnecessarily complicated
359 (why not just save registers in GDB?). The purpose of pushing a dummy
360 frame which looks just like a real frame is so that if you call a
361 function and then hit a breakpoint (get a signal, etc), "backtrace"
362 will look right. Whether the backtrace needs to actually show the
363 stack at the time the inferior function was called is debatable, but
364 it certainly needs to not display garbage. So if you are contemplating
365 making dummy frames be different from normal frames, consider that. */
366
367/* Perform a function call in the inferior.
368 ARGS is a vector of values of arguments (NARGS of them).
369 FUNCTION is a value, the function to be called.
370 Returns a value representing what the function returned.
371 May fail to return, if a breakpoint or signal is hit
372 during the execution of the function.
373
374 ARGS is modified to contain coerced values. */
375
376struct value *
377call_function_by_hand (struct value *function, int nargs, struct value **args)
378{
52f0bd74 379 CORE_ADDR sp;
04714b91 380 CORE_ADDR dummy_addr;
04714b91
AC
381 struct type *value_type;
382 unsigned char struct_return;
383 CORE_ADDR struct_addr = 0;
384 struct regcache *retbuf;
385 struct cleanup *retbuf_cleanup;
386 struct inferior_status *inf_status;
387 struct cleanup *inf_status_cleanup;
388 CORE_ADDR funaddr;
389 int using_gcc; /* Set to version of gcc in use, or zero if not gcc */
390 CORE_ADDR real_pc;
04714b91 391 struct type *ftype = check_typedef (SYMBOL_TYPE (function));
d585e13a 392 CORE_ADDR bp_addr;
04714b91 393
04714b91
AC
394 if (!target_has_execution)
395 noprocess ();
396
397 /* Create a cleanup chain that contains the retbuf (buffer
398 containing the register values). This chain is create BEFORE the
399 inf_status chain so that the inferior status can cleaned up
400 (restored or discarded) without having the retbuf freed. */
401 retbuf = regcache_xmalloc (current_gdbarch);
402 retbuf_cleanup = make_cleanup_regcache_xfree (retbuf);
403
404 /* A cleanup for the inferior status. Create this AFTER the retbuf
405 so that this can be discarded or applied without interfering with
406 the regbuf. */
407 inf_status = save_inferior_status (1);
408 inf_status_cleanup = make_cleanup_restore_inferior_status (inf_status);
409
410 if (DEPRECATED_PUSH_DUMMY_FRAME_P ())
411 {
412 /* DEPRECATED_PUSH_DUMMY_FRAME is responsible for saving the
413 inferior registers (and frame_pop() for restoring them). (At
414 least on most machines) they are saved on the stack in the
415 inferior. */
416 DEPRECATED_PUSH_DUMMY_FRAME;
417 }
418 else
419 {
420 /* FIXME: cagney/2003-02-26: Step zero of this little tinker is
421 to extract the generic dummy frame code from the architecture
422 vector. Hence this direct call.
423
424 A follow-on change is to modify this interface so that it takes
c48a845b 425 thread OR frame OR ptid as a parameter, and returns a dummy
04714b91 426 frame handle. The handle can then be used further down as a
a59fe496
AC
427 parameter to generic_save_dummy_frame_tos(). Hmm, thinking
428 about it, since everything is ment to be using generic dummy
429 frames, why not even use some of the dummy frame code to here -
430 do a regcache dup and then pass the duped regcache, along with
431 all the other stuff, at one single point.
04714b91
AC
432
433 In fact, you can even save the structure's return address in the
434 dummy frame and fix one of those nasty lost struct return edge
435 conditions. */
436 generic_push_dummy_frame ();
437 }
438
04714b91 439 /* Ensure that the initial SP is correctly aligned. */
ebc7896c
AC
440 {
441 CORE_ADDR old_sp = read_sp ();
442 if (gdbarch_frame_align_p (current_gdbarch))
443 {
8b148df9
AC
444 sp = gdbarch_frame_align (current_gdbarch, old_sp);
445 /* NOTE: cagney/2003-08-13: Skip the "red zone". For some
446 ABIs, a function can use memory beyond the inner most stack
447 address. AMD64 called that region the "red zone". Skip at
448 least the "red zone" size before allocating any space on
449 the stack. */
450 if (INNER_THAN (1, 2))
451 sp -= gdbarch_frame_red_zone_size (current_gdbarch);
452 else
453 sp += gdbarch_frame_red_zone_size (current_gdbarch);
454 /* Still aligned? */
455 gdb_assert (sp == gdbarch_frame_align (current_gdbarch, sp));
ebc7896c
AC
456 /* NOTE: cagney/2002-09-18:
457
458 On a RISC architecture, a void parameterless generic dummy
459 frame (i.e., no parameters, no result) typically does not
460 need to push anything the stack and hence can leave SP and
c48a845b 461 FP. Similarly, a frameless (possibly leaf) function does
ebc7896c
AC
462 not push anything on the stack and, hence, that too can
463 leave FP and SP unchanged. As a consequence, a sequence of
464 void parameterless generic dummy frame calls to frameless
465 functions will create a sequence of effectively identical
466 frames (SP, FP and TOS and PC the same). This, not
467 suprisingly, results in what appears to be a stack in an
468 infinite loop --- when GDB tries to find a generic dummy
469 frame on the internal dummy frame stack, it will always
470 find the first one.
471
472 To avoid this problem, the code below always grows the
473 stack. That way, two dummy frames can never be identical.
474 It does burn a few bytes of stack but that is a small price
475 to pay :-). */
ebc7896c
AC
476 if (sp == old_sp)
477 {
478 if (INNER_THAN (1, 2))
479 /* Stack grows down. */
480 sp = gdbarch_frame_align (current_gdbarch, old_sp - 1);
481 else
482 /* Stack grows up. */
483 sp = gdbarch_frame_align (current_gdbarch, old_sp + 1);
484 }
485 gdb_assert ((INNER_THAN (1, 2) && sp <= old_sp)
486 || (INNER_THAN (2, 1) && sp >= old_sp));
487 }
488 else
a59fe496
AC
489 /* FIXME: cagney/2002-09-18: Hey, you loose!
490
8b148df9
AC
491 Who knows how badly aligned the SP is!
492
493 If the generic dummy frame ends up empty (because nothing is
494 pushed) GDB won't be able to correctly perform back traces.
495 If a target is having trouble with backtraces, first thing to
496 do is add FRAME_ALIGN() to the architecture vector. If that
497 fails, try unwind_dummy_id().
498
499 If the ABI specifies a "Red Zone" (see the doco) the code
500 below will quietly trash it. */
ebc7896c
AC
501 sp = old_sp;
502 }
04714b91 503
04714b91
AC
504 funaddr = find_function_addr (function, &value_type);
505 CHECK_TYPEDEF (value_type);
506
507 {
508 struct block *b = block_for_pc (funaddr);
509 /* If compiled without -g, assume GCC 2. */
510 using_gcc = (b == NULL ? 2 : BLOCK_GCC_COMPILED (b));
511 }
512
513 /* Are we returning a value using a structure return or a normal
514 value return? */
515
48436ce6 516 struct_return = using_struct_return (value_type, using_gcc);
04714b91 517
7043d8dc
AC
518 /* Determine the location of the breakpoint (and possibly other
519 stuff) that the called function will return to. The SPARC, for a
520 function returning a structure or union, needs to make space for
521 not just the breakpoint but also an extra word containing the
522 size (?) of the structure being passed. */
523
524 /* The actual breakpoint (at BP_ADDR) is inserted separatly so there
525 is no need to write that out. */
526
04714b91
AC
527 switch (CALL_DUMMY_LOCATION)
528 {
529 case ON_STACK:
7043d8dc
AC
530 /* "dummy_addr" is here just to keep old targets happy. New
531 targets return that same information via "sp" and "bp_addr". */
532 if (INNER_THAN (1, 2))
d585e13a 533 {
7043d8dc
AC
534 sp = push_dummy_code (current_gdbarch, sp, funaddr,
535 using_gcc, args, nargs, value_type,
536 &real_pc, &bp_addr);
537 dummy_addr = sp;
d585e13a 538 }
7043d8dc
AC
539 else
540 {
541 dummy_addr = sp;
542 sp = push_dummy_code (current_gdbarch, sp, funaddr,
543 using_gcc, args, nargs, value_type,
544 &real_pc, &bp_addr);
545 }
546 break;
04714b91 547 case AT_ENTRY_POINT:
da6bab63
AC
548 if (DEPRECATED_FIX_CALL_DUMMY_P ()
549 && !gdbarch_push_dummy_call_p (current_gdbarch))
c89b70f1
AC
550 {
551 /* Sigh. Some targets use DEPRECATED_FIX_CALL_DUMMY to
552 shove extra stuff onto the stack or into registers. That
553 code should be in PUSH_DUMMY_CALL, however, in the mean
554 time ... */
555 /* If the target is manipulating DUMMY1, it looses big time. */
556 void *dummy1 = NULL;
557 DEPRECATED_FIX_CALL_DUMMY (dummy1, sp, funaddr, nargs, args,
558 value_type, using_gcc);
559 }
04714b91 560 real_pc = funaddr;
88a82a65 561 dummy_addr = entry_point_address ();
0285512f
AC
562 /* Make certain that the address points at real code, and not a
563 function descriptor. */
e2d0e7eb
AC
564 dummy_addr = gdbarch_convert_from_func_ptr_addr (current_gdbarch,
565 dummy_addr,
566 &current_target);
d585e13a
AC
567 /* A call dummy always consists of just a single breakpoint, so
568 it's address is the same as the address of the dummy. */
569 bp_addr = dummy_addr;
04714b91 570 break;
9710e734
AC
571 case AT_SYMBOL:
572 /* Some executables define a symbol __CALL_DUMMY_ADDRESS whose
573 address is the location where the breakpoint should be
574 placed. Once all targets are using the overhauled frame code
575 this can be deleted - ON_STACK is a better option. */
576 {
577 struct minimal_symbol *sym;
578
579 sym = lookup_minimal_symbol ("__CALL_DUMMY_ADDRESS", NULL, NULL);
580 real_pc = funaddr;
581 if (sym)
582 dummy_addr = SYMBOL_VALUE_ADDRESS (sym);
583 else
584 dummy_addr = entry_point_address ();
0285512f
AC
585 /* Make certain that the address points at real code, and not
586 a function descriptor. */
e2d0e7eb
AC
587 dummy_addr = gdbarch_convert_from_func_ptr_addr (current_gdbarch,
588 dummy_addr,
589 &current_target);
0285512f
AC
590 /* A call dummy always consists of just a single breakpoint,
591 so it's address is the same as the address of the dummy. */
9710e734
AC
592 bp_addr = dummy_addr;
593 break;
594 }
04714b91
AC
595 default:
596 internal_error (__FILE__, __LINE__, "bad switch");
597 }
598
7043d8dc
AC
599 if (DEPRECATED_USE_GENERIC_DUMMY_FRAMES)
600 /* Save where the breakpoint is going to be inserted so that the
601 dummy-frame code is later able to re-identify it. */
602 generic_save_call_dummy_addr (bp_addr, bp_addr + 1);
603
04714b91
AC
604 if (nargs < TYPE_NFIELDS (ftype))
605 error ("too few arguments in function call");
606
ebc7896c
AC
607 {
608 int i;
609 for (i = nargs - 1; i >= 0; i--)
610 {
611 int prototyped;
612 struct type *param_type;
613
614 /* FIXME drow/2002-05-31: Should just always mark methods as
615 prototyped. Can we respect TYPE_VARARGS? Probably not. */
616 if (TYPE_CODE (ftype) == TYPE_CODE_METHOD)
617 prototyped = 1;
618 else if (i < TYPE_NFIELDS (ftype))
619 prototyped = TYPE_PROTOTYPED (ftype);
620 else
621 prototyped = 0;
622
623 if (i < TYPE_NFIELDS (ftype))
624 param_type = TYPE_FIELD_TYPE (ftype, i);
625 else
626 param_type = NULL;
627
628 args[i] = value_arg_coerce (args[i], param_type, prototyped);
629
630 /* elz: this code is to handle the case in which the function
631 to be called has a pointer to function as parameter and the
632 corresponding actual argument is the address of a function
633 and not a pointer to function variable. In aCC compiled
634 code, the calls through pointers to functions (in the body
635 of the function called by hand) are made via
636 $$dyncall_external which requires some registers setting,
637 this is taken care of if we call via a function pointer
638 variable, but not via a function address. In cc this is
639 not a problem. */
640
641 if (using_gcc == 0)
642 {
643 if (param_type != NULL && TYPE_CODE (ftype) != TYPE_CODE_METHOD)
644 {
645 /* if this parameter is a pointer to function. */
646 if (TYPE_CODE (param_type) == TYPE_CODE_PTR)
647 if (TYPE_CODE (TYPE_TARGET_TYPE (param_type)) == TYPE_CODE_FUNC)
648 /* elz: FIXME here should go the test about the
649 compiler used to compile the target. We want to
650 issue the error message only if the compiler
651 used was HP's aCC. If we used HP's cc, then
652 there is no problem and no need to return at
653 this point. */
654 /* Go see if the actual parameter is a variable of
655 type pointer to function or just a function. */
656 if (args[i]->lval == not_lval)
657 {
658 char *arg_name;
659 if (find_pc_partial_function ((CORE_ADDR) args[i]->aligner.contents[0], &arg_name, NULL, NULL))
660 error ("\
04714b91
AC
661You cannot use function <%s> as argument. \n\
662You must use a pointer to function type variable. Command ignored.", arg_name);
ebc7896c
AC
663 }
664 }
665 }
666 }
667 }
04714b91 668
8e823e25 669 if (DEPRECATED_REG_STRUCT_HAS_ADDR_P ())
04714b91 670 {
ebc7896c 671 int i;
04714b91
AC
672 /* This is a machine like the sparc, where we may need to pass a
673 pointer to the structure, not the structure itself. */
674 for (i = nargs - 1; i >= 0; i--)
675 {
676 struct type *arg_type = check_typedef (VALUE_TYPE (args[i]));
677 if ((TYPE_CODE (arg_type) == TYPE_CODE_STRUCT
678 || TYPE_CODE (arg_type) == TYPE_CODE_UNION
679 || TYPE_CODE (arg_type) == TYPE_CODE_ARRAY
680 || TYPE_CODE (arg_type) == TYPE_CODE_STRING
681 || TYPE_CODE (arg_type) == TYPE_CODE_BITSTRING
682 || TYPE_CODE (arg_type) == TYPE_CODE_SET
683 || (TYPE_CODE (arg_type) == TYPE_CODE_FLT
684 && TYPE_LENGTH (arg_type) > 8)
685 )
8e823e25 686 && DEPRECATED_REG_STRUCT_HAS_ADDR (using_gcc, arg_type))
04714b91
AC
687 {
688 CORE_ADDR addr;
689 int len; /* = TYPE_LENGTH (arg_type); */
690 int aligned_len;
691 arg_type = check_typedef (VALUE_ENCLOSING_TYPE (args[i]));
692 len = TYPE_LENGTH (arg_type);
693
f27dd7fd 694 if (DEPRECATED_STACK_ALIGN_P ())
04714b91
AC
695 /* MVS 11/22/96: I think at least some of this
696 stack_align code is really broken. Better to let
697 PUSH_ARGUMENTS adjust the stack in a target-defined
698 manner. */
f27dd7fd 699 aligned_len = DEPRECATED_STACK_ALIGN (len);
04714b91
AC
700 else
701 aligned_len = len;
702 if (INNER_THAN (1, 2))
703 {
704 /* stack grows downward */
705 sp -= aligned_len;
706 /* ... so the address of the thing we push is the
707 stack pointer after we push it. */
708 addr = sp;
709 }
710 else
711 {
712 /* The stack grows up, so the address of the thing
713 we push is the stack pointer before we push it. */
714 addr = sp;
715 sp += aligned_len;
716 }
717 /* Push the structure. */
718 write_memory (addr, VALUE_CONTENTS_ALL (args[i]), len);
719 /* The value we're going to pass is the address of the
720 thing we just pushed. */
721 /*args[i] = value_from_longest (lookup_pointer_type (value_type),
722 (LONGEST) addr); */
723 args[i] = value_from_pointer (lookup_pointer_type (arg_type),
724 addr);
725 }
726 }
727 }
728
729
730 /* Reserve space for the return structure to be written on the
731 stack, if necessary. Make certain that the value is correctly
732 aligned. */
733
734 if (struct_return)
735 {
736 int len = TYPE_LENGTH (value_type);
f27dd7fd 737 if (DEPRECATED_STACK_ALIGN_P ())
04714b91
AC
738 /* NOTE: cagney/2003-03-22: Should rely on frame align, rather
739 than stack align to force the alignment of the stack. */
f27dd7fd 740 len = DEPRECATED_STACK_ALIGN (len);
04714b91
AC
741 if (INNER_THAN (1, 2))
742 {
743 /* Stack grows downward. Align STRUCT_ADDR and SP after
744 making space for the return value. */
745 sp -= len;
746 if (gdbarch_frame_align_p (current_gdbarch))
747 sp = gdbarch_frame_align (current_gdbarch, sp);
748 struct_addr = sp;
749 }
750 else
751 {
752 /* Stack grows upward. Align the frame, allocate space, and
753 then again, re-align the frame??? */
754 if (gdbarch_frame_align_p (current_gdbarch))
755 sp = gdbarch_frame_align (current_gdbarch, sp);
756 struct_addr = sp;
757 sp += len;
758 if (gdbarch_frame_align_p (current_gdbarch))
759 sp = gdbarch_frame_align (current_gdbarch, sp);
760 }
761 }
762
04714b91
AC
763 /* Create the dummy stack frame. Pass in the call dummy address as,
764 presumably, the ABI code knows where, in the call dummy, the
765 return address should be pointed. */
766 if (gdbarch_push_dummy_call_p (current_gdbarch))
767 /* When there is no push_dummy_call method, should this code
768 simply error out. That would the implementation of this method
769 for all ABIs (which is probably a good thing). */
6a65450a 770 sp = gdbarch_push_dummy_call (current_gdbarch, funaddr, current_regcache,
7043d8dc 771 bp_addr, nargs, args, sp, struct_return,
04714b91
AC
772 struct_addr);
773 else if (DEPRECATED_PUSH_ARGUMENTS_P ())
774 /* Keep old targets working. */
775 sp = DEPRECATED_PUSH_ARGUMENTS (nargs, args, sp, struct_return,
776 struct_addr);
777 else
778 sp = legacy_push_arguments (nargs, args, sp, struct_return, struct_addr);
779
780 if (DEPRECATED_PUSH_RETURN_ADDRESS_P ())
781 /* for targets that use no CALL_DUMMY */
782 /* There are a number of targets now which actually don't write
783 any CALL_DUMMY instructions into the target, but instead just
784 save the machine state, push the arguments, and jump directly
785 to the callee function. Since this doesn't actually involve
786 executing a JSR/BSR instruction, the return address must be set
787 up by hand, either by pushing onto the stack or copying into a
788 return-address register as appropriate. Formerly this has been
789 done in PUSH_ARGUMENTS, but that's overloading its
790 functionality a bit, so I'm making it explicit to do it here. */
d585e13a
AC
791 /* NOTE: cagney/2003-04-22: The first parameter ("real_pc") has
792 been replaced with zero, it turns out that no implementation
793 used that parameter. This occured because the value being
794 supplied - the address of the called function's entry point
795 instead of the address of the breakpoint that the called
796 function should return to - wasn't useful. */
797 sp = DEPRECATED_PUSH_RETURN_ADDRESS (0, sp);
04714b91
AC
798
799 /* NOTE: cagney/2003-03-23: Diable this code when there is a
800 push_dummy_call() method. Since that method will have already
801 handled any alignment issues, the code below is entirely
802 redundant. */
803 if (!gdbarch_push_dummy_call_p (current_gdbarch)
f27dd7fd 804 && DEPRECATED_STACK_ALIGN_P () && !INNER_THAN (1, 2))
04714b91
AC
805 {
806 /* If stack grows up, we must leave a hole at the bottom, note
807 that sp already has been advanced for the arguments! */
f27dd7fd 808 sp = DEPRECATED_STACK_ALIGN (sp);
04714b91
AC
809 }
810
04714b91
AC
811 /* Store the address at which the structure is supposed to be
812 written. */
813 /* NOTE: 2003-03-24: Since PUSH_ARGUMENTS can (and typically does)
814 store the struct return address, this call is entirely redundant. */
815 if (struct_return && DEPRECATED_STORE_STRUCT_RETURN_P ())
816 DEPRECATED_STORE_STRUCT_RETURN (struct_addr, sp);
817
1fd4ae22
AC
818 /* Write the stack pointer. This is here because the statements
819 above might fool with it. On SPARC, this write also stores the
820 register window into the right place in the new stack frame,
821 which otherwise wouldn't happen (see store_inferior_registers in
822 sparc-nat.c). */
823 /* NOTE: cagney/2003-03-23: Since the architecture method
824 push_dummy_call() should have already stored the stack pointer
825 (as part of creating the fake call frame), and none of the code
826 following that call adjusts the stack-pointer value, the below
827 call is entirely redundant. */
04714b91
AC
828 if (DEPRECATED_DUMMY_WRITE_SP_P ())
829 DEPRECATED_DUMMY_WRITE_SP (sp);
830
3e210248
AC
831 if (gdbarch_unwind_dummy_id_p (current_gdbarch))
832 {
833 /* Sanity. The exact same SP value is returned by
834 PUSH_DUMMY_CALL, saved as the dummy-frame TOS, and used by
835 unwind_dummy_id to form the frame ID's stack address. */
836 gdb_assert (DEPRECATED_USE_GENERIC_DUMMY_FRAMES);
837 generic_save_dummy_frame_tos (sp);
838 }
a59fe496
AC
839 else if (DEPRECATED_SAVE_DUMMY_FRAME_TOS_P ())
840 DEPRECATED_SAVE_DUMMY_FRAME_TOS (sp);
04714b91 841
74cfe982
AC
842 /* Now proceed, having reached the desired place. */
843 clear_proceed_status ();
844
845 /* Create a momentary breakpoint at the return address of the
846 inferior. That way it breaks when it returns. */
04714b91 847
74cfe982
AC
848 {
849 struct breakpoint *bpt;
850 struct symtab_and_line sal;
851 struct frame_id frame;
852 init_sal (&sal); /* initialize to zeroes */
853 sal.pc = bp_addr;
854 sal.section = find_pc_overlay (sal.pc);
855 /* Set up a frame ID for the dummy frame so we can pass it to
856 set_momentary_breakpoint. We need to give the breakpoint a
0ba6dca9
AC
857 frame ID so that the breakpoint code can correctly re-identify
858 the dummy breakpoint. */
3e210248
AC
859 if (gdbarch_unwind_dummy_id_p (current_gdbarch))
860 {
861 /* Sanity. The exact same SP value is returned by
862 PUSH_DUMMY_CALL, saved as the dummy-frame TOS, and used by
863 unwind_dummy_id to form the frame ID's stack address. */
864 gdb_assert (DEPRECATED_USE_GENERIC_DUMMY_FRAMES);
865 frame = frame_id_build (sp, sal.pc);
866 }
0ba6dca9 867 else
3e210248
AC
868 {
869 /* The assumption here is that push_dummy_call() returned the
ce2826aa 870 stack part of the frame ID. Unfortunately, many older
3e210248
AC
871 architectures were, via a convoluted mess, relying on the
872 poorly defined and greatly overloaded
873 DEPRECATED_TARGET_READ_FP or DEPRECATED_FP_REGNUM to supply
874 the value. */
875 if (DEPRECATED_TARGET_READ_FP_P ())
876 frame = frame_id_build (DEPRECATED_TARGET_READ_FP (), sal.pc);
877 else if (DEPRECATED_FP_REGNUM >= 0)
878 frame = frame_id_build (read_register (DEPRECATED_FP_REGNUM), sal.pc);
879 else
880 frame = frame_id_build (sp, sal.pc);
881 }
74cfe982
AC
882 bpt = set_momentary_breakpoint (sal, frame, bp_call_dummy);
883 bpt->disposition = disp_del;
884 }
04714b91 885
74cfe982
AC
886 /* Execute a "stack dummy", a piece of code stored in the stack by
887 the debugger to be executed in the inferior.
04714b91 888
74cfe982
AC
889 The dummy's frame is automatically popped whenever that break is
890 hit. If that is the first time the program stops,
891 call_function_by_hand returns to its caller with that frame
892 already gone and sets RC to 0.
893
894 Otherwise, set RC to a non-zero value. If the called function
895 receives a random signal, we do not allow the user to continue
896 executing it as this may not work. The dummy frame is poped and
897 we return 1. If we hit a breakpoint, we leave the frame in place
898 and return 2 (the frame will eventually be popped when we do hit
899 the dummy end breakpoint). */
04714b91 900
74cfe982
AC
901 {
902 struct cleanup *old_cleanups = make_cleanup (null_cleanup, 0);
903 int saved_async = 0;
904
905 /* If all error()s out of proceed ended up calling normal_stop
906 (and perhaps they should; it already does in the special case
907 of error out of resume()), then we wouldn't need this. */
908 make_cleanup (breakpoint_auto_delete_contents, &stop_bpstat);
909
910 disable_watchpoints_before_interactive_call_start ();
911 proceed_to_finish = 1; /* We want stop_registers, please... */
912
913 if (target_can_async_p ())
914 saved_async = target_async_mask (0);
915
916 proceed (real_pc, TARGET_SIGNAL_0, 0);
917
918 if (saved_async)
919 target_async_mask (saved_async);
920
921 enable_watchpoints_after_interactive_call_stop ();
04714b91 922
74cfe982 923 discard_cleanups (old_cleanups);
52557533 924 }
04714b91 925
52557533
AC
926 if (stopped_by_random_signal || !stop_stack_dummy)
927 {
928 /* Find the name of the function we're about to complain about. */
edcf254d 929 const char *name = NULL;
04714b91 930 {
52557533
AC
931 struct symbol *symbol = find_pc_function (funaddr);
932 if (symbol)
933 name = SYMBOL_PRINT_NAME (symbol);
934 else
04714b91 935 {
52557533
AC
936 /* Try the minimal symbols. */
937 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (funaddr);
938 if (msymbol)
939 name = SYMBOL_PRINT_NAME (msymbol);
940 }
edcf254d
AC
941 if (name == NULL)
942 {
943 /* Can't use a cleanup here. It is discarded, instead use
944 an alloca. */
945 char *tmp = xstrprintf ("at %s", local_hex_string (funaddr));
946 char *a = alloca (strlen (tmp) + 1);
947 strcpy (a, tmp);
948 xfree (tmp);
949 name = a;
950 }
52557533 951 }
52557533
AC
952 if (stopped_by_random_signal)
953 {
954 /* We stopped inside the FUNCTION because of a random
955 signal. Further execution of the FUNCTION is not
956 allowed. */
04714b91 957
52557533
AC
958 if (unwind_on_signal_p)
959 {
960 /* The user wants the context restored. */
961
962 /* We must get back to the frame we were before the
963 dummy call. */
964 frame_pop (get_current_frame ());
04714b91 965
52557533
AC
966 /* FIXME: Insert a bunch of wrap_here; name can be very
967 long if it's a C++ name with arguments and stuff. */
968 error ("\
04714b91
AC
969The program being debugged was signaled while in a function called from GDB.\n\
970GDB has restored the context to what it was before the call.\n\
971To change this behavior use \"set unwindonsignal off\"\n\
972Evaluation of the expression containing the function (%s) will be abandoned.",
52557533
AC
973 name);
974 }
975 else
976 {
977 /* The user wants to stay in the frame where we stopped
978 (default).*/
979 /* If we restored the inferior status (via the cleanup),
980 we would print a spurious error message (Unable to
981 restore previously selected frame), would write the
982 registers from the inf_status (which is wrong), and
983 would do other wrong things. */
984 discard_cleanups (inf_status_cleanup);
985 discard_inferior_status (inf_status);
986 /* FIXME: Insert a bunch of wrap_here; name can be very
987 long if it's a C++ name with arguments and stuff. */
988 error ("\
04714b91
AC
989The program being debugged was signaled while in a function called from GDB.\n\
990GDB remains in the frame where the signal was received.\n\
991To change this behavior use \"set unwindonsignal on\"\n\
992Evaluation of the expression containing the function (%s) will be abandoned.",
52557533
AC
993 name);
994 }
995 }
04714b91 996
52557533
AC
997 if (!stop_stack_dummy)
998 {
999 /* We hit a breakpoint inside the FUNCTION. */
1000 /* If we restored the inferior status (via the cleanup), we
1001 would print a spurious error message (Unable to restore
1002 previously selected frame), would write the registers
1003 from the inf_status (which is wrong), and would do other
1004 wrong things. */
1005 discard_cleanups (inf_status_cleanup);
1006 discard_inferior_status (inf_status);
1007 /* The following error message used to say "The expression
1008 which contained the function call has been discarded."
1009 It is a hard concept to explain in a few words. Ideally,
1010 GDB would be able to resume evaluation of the expression
1011 when the function finally is done executing. Perhaps
1012 someday this will be implemented (it would not be easy). */
1013 /* FIXME: Insert a bunch of wrap_here; name can be very long if it's
1014 a C++ name with arguments and stuff. */
1015 error ("\
04714b91
AC
1016The program being debugged stopped while in a function called from GDB.\n\
1017When the function (%s) is done executing, GDB will silently\n\
1018stop (instead of continuing to evaluate the expression containing\n\
1019the function call).", name);
52557533
AC
1020 }
1021
1022 /* The above code errors out, so ... */
1023 internal_error (__FILE__, __LINE__, "... should not be here");
1024 }
04714b91 1025
74cfe982
AC
1026 /* If we get here the called FUNCTION run to completion. */
1027
1028 /* On normal return, the stack dummy has been popped already. */
1029 regcache_cpy_no_passthrough (retbuf, stop_registers);
1030
1031 /* Restore the inferior status, via its cleanup. At this stage,
1032 leave the RETBUF alone. */
1033 do_cleanups (inf_status_cleanup);
1034
1035 /* Figure out the value returned by the function. */
64f395bf 1036 if (struct_return)
74cfe982 1037 {
64f395bf
AC
1038 /* NOTE: cagney/2003-09-27: This assumes that PUSH_DUMMY_CALL
1039 has correctly stored STRUCT_ADDR in the target. In the past
1040 that hasn't been the case, the old MIPS PUSH_ARGUMENTS
1041 (PUSH_DUMMY_CALL precursor) would silently move the location
1042 of the struct return value making STRUCT_ADDR bogus. If
1043 you're seeing problems with values being returned using the
1044 "struct return convention", check that PUSH_DUMMY_CALL isn't
1045 playing tricks. */
74cfe982
AC
1046 struct value *retval = value_at (value_type, struct_addr, NULL);
1047 do_cleanups (retbuf_cleanup);
1048 return retval;
1049 }
1050 else
1051 {
5fe830e4
AC
1052 /* The non-register case was handled above. */
1053 struct value *retval = register_value_being_returned (value_type,
1054 retbuf);
74cfe982
AC
1055 do_cleanups (retbuf_cleanup);
1056 return retval;
1057 }
04714b91
AC
1058}
1059
1060void _initialize_infcall (void);
1061
1062void
1063_initialize_infcall (void)
1064{
1065 add_setshow_boolean_cmd ("coerce-float-to-double", class_obscure,
1066 &coerce_float_to_double_p, "\
1067Set coercion of floats to doubles when calling functions\n\
1068Variables of type float should generally be converted to doubles before\n\
1069calling an unprototyped function, and left alone when calling a prototyped\n\
1070function. However, some older debug info formats do not provide enough\n\
1071information to determine that a function is prototyped. If this flag is\n\
1072set, GDB will perform the conversion for a function it considers\n\
1073unprototyped.\n\
1074The default is to perform the conversion.\n", "\
1075Show coercion of floats to doubles when calling functions\n\
1076Variables of type float should generally be converted to doubles before\n\
1077calling an unprototyped function, and left alone when calling a prototyped\n\
1078function. However, some older debug info formats do not provide enough\n\
1079information to determine that a function is prototyped. If this flag is\n\
1080set, GDB will perform the conversion for a function it considers\n\
1081unprototyped.\n\
1082The default is to perform the conversion.\n",
1083 NULL, NULL, &setlist, &showlist);
1084
1085 add_setshow_boolean_cmd ("unwindonsignal", no_class,
1086 &unwind_on_signal_p, "\
1087Set unwinding of stack if a signal is received while in a call dummy.\n\
1088The unwindonsignal lets the user determine what gdb should do if a signal\n\
1089is received while in a function called from gdb (call dummy). If set, gdb\n\
1090unwinds the stack and restore the context to what as it was before the call.\n\
1091The default is to stop in the frame where the signal was received.", "\
1092Set unwinding of stack if a signal is received while in a call dummy.\n\
1093The unwindonsignal lets the user determine what gdb should do if a signal\n\
1094is received while in a function called from gdb (call dummy). If set, gdb\n\
1095unwinds the stack and restore the context to what as it was before the call.\n\
1096The default is to stop in the frame where the signal was received.",
1097 NULL, NULL, &setlist, &showlist);
1098}
This page took 0.160315 seconds and 4 git commands to generate.