diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2014-05-14 14:16:22 -0600 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2014-12-12 22:26:41 +0100 |
commit | ed12ef62ccad3b86e25ec3b042d8bf7f15c75909 (patch) | |
tree | 63d07969f0e78ce5a5d07907817f67b9dc73c9a6 /gdb/infcall.c | |
parent | ac04f72bb4396a311ffc445710d4068c13fb0448 (diff) | |
download | gdb-ed12ef62ccad3b86e25ec3b042d8bf7f15c75909.zip gdb-ed12ef62ccad3b86e25ec3b042d8bf7f15c75909.tar.gz gdb-ed12ef62ccad3b86e25ec3b042d8bf7f15c75909.tar.bz2 |
introduce call_function_by_hand_dummy
This provides a variant of call_function_by_hand that allows the dummy
frame destructor to be set. This is used by the compiler code to
manage some resources when calling the gdb-generated inferior
function.
gdb/ChangeLog
2014-12-12 Jan Kratochvil <jan.kratochvil@redhat.com>
* infcall.h (call_function_by_hand_dummy): Declare.
* infcall.c (call_function_by_hand): Use
call_function_by_hand_dummy.
(call_function_by_hand_dummy): Rename from call_function_by_hand.
Add arguments. Register a destructor.
Diffstat (limited to 'gdb/infcall.c')
-rw-r--r-- | gdb/infcall.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/gdb/infcall.c b/gdb/infcall.c index 25a7af4..b5a9ae1 100644 --- a/gdb/infcall.c +++ b/gdb/infcall.c @@ -456,6 +456,14 @@ cleanup_delete_std_terminate_breakpoint (void *ignore) delete_std_terminate_breakpoint (); } +/* See infcall.h. */ + +struct value * +call_function_by_hand (struct value *function, int nargs, struct value **args) +{ + return call_function_by_hand_dummy (function, nargs, args, NULL, NULL); +} + /* All this stuff with a dummy frame may seem unnecessarily complicated (why not just save registers in GDB?). The purpose of pushing a dummy frame which looks just like a real frame is so that if you call a @@ -475,7 +483,10 @@ cleanup_delete_std_terminate_breakpoint (void *ignore) ARGS is modified to contain coerced values. */ struct value * -call_function_by_hand (struct value *function, int nargs, struct value **args) +call_function_by_hand_dummy (struct value *function, + int nargs, struct value **args, + call_function_by_hand_dummy_dtor_ftype *dummy_dtor, + void *dummy_dtor_data) { CORE_ADDR sp; struct type *values_type, *target_values_type; @@ -874,6 +885,9 @@ call_function_by_hand (struct value *function, int nargs, struct value **args) caller (and identify the dummy-frame) onto the dummy-frame stack. */ dummy_frame_push (caller_state, &dummy_id, inferior_ptid); + if (dummy_dtor != NULL) + register_dummy_frame_dtor (dummy_id, inferior_ptid, + dummy_dtor, dummy_dtor_data); /* Discard both inf_status and caller_state cleanups. From this point on we explicitly restore the associated state |