delve/service
aarzilli 60c58acb8e proc,service: display return values when stepping out of a function
Displays the return values of the current function when we step out of
it after executing a step, next or stepout command.

Implementation of this feature is tricky: when the function has
returned the return variables are not in scope anymore. Implementing
this feature requires evaluating variables that are out of scope, using
a stack frame that doesn't exist anymore.

We can't calculate the address of these variables when the
next/step/stepout command is initiated either, because between that
point and the time where the stepout breakpoint is actually hit the
goroutine stack could grow and be moved to a different memory address.
2018-06-12 11:35:56 +02:00
..
api proc,service: display return values when stepping out of a function 2018-06-12 11:35:56 +02:00
debugger proc,service: display return values when stepping out of a function 2018-06-12 11:35:56 +02:00
rpc1 command/terminal: allow restart to change process args (#1060) 2018-01-18 14:16:11 -08:00
rpc2 proc,service: display return values when stepping out of a function 2018-06-12 11:35:56 +02:00
rpccommon proc/native,proc/gdbserial: let target access terminal 2018-05-18 09:53:29 -07:00
test proc,service: display return values when stepping out of a function 2018-06-12 11:35:56 +02:00
client.go proc,service: display return values when stepping out of a function 2018-06-12 11:35:56 +02:00
config.go proc/native,proc/gdbserial: let target access terminal 2018-05-18 09:53:29 -07:00
rpccallback.go Replaced net/rpc with custom version 2016-07-02 12:16:06 +02:00
server.go misc: cleanup and documentation 2016-01-10 02:10:51 -08:00