diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2013-12-11 23:43:16 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2013-12-11 23:43:16 +0000 |
commit | b1d137cf582d6923cd6182752551f5046912c016 (patch) | |
tree | 958f4d3468ed91fa20d17ed4c61877af6f98a89a /libgo/runtime | |
parent | de04d95e64c39dbc5475361146260aed6db02faa (diff) | |
download | gcc-b1d137cf582d6923cd6182752551f5046912c016.zip gcc-b1d137cf582d6923cd6182752551f5046912c016.tar.gz gcc-b1d137cf582d6923cd6182752551f5046912c016.tar.bz2 |
reflect, runtime: Let reflect.MakeFunc functions call recover.
From-SVN: r205908
Diffstat (limited to 'libgo/runtime')
-rw-r--r-- | libgo/runtime/go-defer.c | 1 | ||||
-rw-r--r-- | libgo/runtime/go-defer.h | 6 | ||||
-rw-r--r-- | libgo/runtime/go-recover.c | 72 | ||||
-rw-r--r-- | libgo/runtime/proc.c | 1 |
4 files changed, 78 insertions, 2 deletions
diff --git a/libgo/runtime/go-defer.c b/libgo/runtime/go-defer.c index 3955e0f..fed8db3 100644 --- a/libgo/runtime/go-defer.c +++ b/libgo/runtime/go-defer.c @@ -27,6 +27,7 @@ __go_defer (_Bool *frame, void (*pfn) (void *), void *arg) n->__pfn = pfn; n->__arg = arg; n->__retaddr = NULL; + n->__makefunc_can_recover = 0; g->defer = n; } diff --git a/libgo/runtime/go-defer.h b/libgo/runtime/go-defer.h index 0b20e8f..3298ce9 100644 --- a/libgo/runtime/go-defer.h +++ b/libgo/runtime/go-defer.h @@ -34,4 +34,10 @@ struct __go_defer_stack set by __go_set_defer_retaddr which is called by the thunks created by defer statements. */ const void *__retaddr; + + /* Set to true if a function created by reflect.MakeFunc is + permitted to recover. The return address of such a function + function will be somewhere in libffi, so __retaddr is not + useful. */ + _Bool __makefunc_can_recover; }; diff --git a/libgo/runtime/go-recover.c b/libgo/runtime/go-recover.c index d6403e0..6cef266 100644 --- a/libgo/runtime/go-recover.c +++ b/libgo/runtime/go-recover.c @@ -16,12 +16,14 @@ __go_can_recover--this is, the thunk. */ _Bool -__go_can_recover (const void* retaddr) +__go_can_recover (const void *retaddr) { G *g; struct __go_defer_stack *d; const char* ret; const char* dret; + Location loc; + const byte *name; g = runtime_g (); @@ -52,7 +54,73 @@ __go_can_recover (const void* retaddr) #endif dret = (const char *) d->__retaddr; - return ret <= dret && ret + 16 >= dret; + if (ret <= dret && ret + 16 >= dret) + return 1; + + /* If the function calling recover was created by reflect.MakeFunc, + then RETADDR will be somewhere in libffi. Our caller is + permitted to recover if it was called from libffi. */ + if (!d->__makefunc_can_recover) + return 0; + + if (runtime_callers (2, &loc, 1) < 1) + return 0; + + /* If we have no function name, then we weren't called by Go code. + Guess that we were called by libffi. */ + if (loc.function.len == 0) + return 1; + + if (loc.function.len < 4) + return 0; + name = loc.function.str; + if (*name == '_') + { + if (loc.function.len < 5) + return 0; + ++name; + } + + if (name[0] == 'f' && name[1] == 'f' && name[2] == 'i' && name[3] == '_') + return 1; + + return 0; +} + +/* This function is called when code is about to enter a function + created by reflect.MakeFunc. It is called by the function stub + used by MakeFunc. If the stub is permitted to call recover, then a + real MakeFunc function is permitted to call recover. */ + +void +__go_makefunc_can_recover (const void *retaddr) +{ + struct __go_defer_stack *d; + + d = runtime_g ()->defer; + if (d != NULL + && !d->__makefunc_can_recover + && __go_can_recover (retaddr)) + d->__makefunc_can_recover = 1; +} + +/* This function is called when code is about to exit a function + created by reflect.MakeFunc. It is called by the function stub + used by MakeFunc. It clears the __makefunc_can_recover field. + It's OK to always clear this field, because __go_can_recover will + only be called by a stub created for a function that calls recover. + That stub will not call a function created by reflect.MakeFunc, so + by the time we get here any caller higher up on the call stack no + longer needs the information. */ + +void +__go_makefunc_returning (void) +{ + struct __go_defer_stack *d; + + d = runtime_g ()->defer; + if (d != NULL) + d->__makefunc_can_recover = 0; } /* This is only called when it is valid for the caller to recover the diff --git a/libgo/runtime/proc.c b/libgo/runtime/proc.c index 19afee3..0d0127b 100644 --- a/libgo/runtime/proc.c +++ b/libgo/runtime/proc.c @@ -539,6 +539,7 @@ runtime_main(void* dummy __attribute__((unused))) d.__arg = (void*)-1; d.__panic = g->panic; d.__retaddr = nil; + d.__makefunc_can_recover = 0; d.__frame = &frame; g->defer = &d; |