75791bab05
Use the new -fgo-c-header option to build a header file for the Go runtime code in libgo/go/runtime, and use the new header file in the C runtime code in libgo/runtime. This will ensure that the Go code and C code share the same data structures as we convert the runtime from C to Go. The new file libgo/go/runtime/runtime2.go is copied from the Go 1.7 release, and then edited to remove unnecessary data structures and modify others for use with libgo. The new file libgo/go/runtime/mcache.go is an initial version of the same files in the Go 1.7 release, and will be replaced by the Go 1.7 file when we convert to the new memory allocator. The new file libgo/go/runtime/type.go describes the gccgo version of the reflection data structures, and replaces the Go 1.7 runtime file which describes the gc version of those structures. Using the new header file means changing a number of struct fields to use Go naming conventions (that is, no underscores) and to rename constants to have a leading underscore so that they are not exported from the Go package. These names were updated in the C code. The C code was also changed to drop the thread-local variable m, as was done some time ago in the gc sources. Now the m field is always accessed using g->m, where g is the single remaining thread-local variable. This in turn required some adjustments to set g->m correctly in all cases. Also pass the new -fgo-compiling-runtime option when compiling the runtime package, although that option doesn't do anything yet. Reviewed-on: https://go-review.googlesource.com/28051 From-SVN: r239872
94 lines
2.6 KiB
C
94 lines
2.6 KiB
C
/* go-deferred-recover.c -- support for a deferred recover function.
|
|
|
|
Copyright 2010 The Go Authors. All rights reserved.
|
|
Use of this source code is governed by a BSD-style
|
|
license that can be found in the LICENSE file. */
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "runtime.h"
|
|
#include "go-panic.h"
|
|
|
|
/* This is called when a call to recover is deferred. That is,
|
|
something like
|
|
defer recover()
|
|
|
|
We need to handle this specially. In 6g/8g, the recover function
|
|
looks up the stack frame. In particular, that means that a
|
|
deferred recover will not recover a panic thrown in the same
|
|
function that defers the recover. It will only recover a panic
|
|
thrown in a function that defers the deferred call to recover.
|
|
|
|
In other words:
|
|
|
|
func f1() {
|
|
defer recover() // does not stop panic
|
|
panic(0)
|
|
}
|
|
|
|
func f2() {
|
|
defer func() {
|
|
defer recover() // stops panic(0)
|
|
}()
|
|
panic(0)
|
|
}
|
|
|
|
func f3() {
|
|
defer func() {
|
|
defer recover() // does not stop panic
|
|
panic(0)
|
|
}()
|
|
panic(1)
|
|
}
|
|
|
|
func f4() {
|
|
defer func() {
|
|
defer func() {
|
|
defer recover() // stops panic(0)
|
|
}()
|
|
panic(0)
|
|
}()
|
|
panic(1)
|
|
}
|
|
|
|
The interesting case here is f3. As can be seen from f2, the
|
|
deferred recover could pick up panic(1). However, this does not
|
|
happen because it is blocked by the panic(0).
|
|
|
|
When a function calls recover, then when we invoke it we pass a
|
|
hidden parameter indicating whether it should recover something.
|
|
This parameter is set based on whether the function is being
|
|
invoked directly from defer. The parameter winds up determining
|
|
whether __go_recover or __go_deferred_recover is called at all.
|
|
|
|
In the case of a deferred recover, the hidden parameter which
|
|
controls the call is actually the one set up for the function which
|
|
runs the defer recover() statement. That is the right thing in all
|
|
the cases above except for f3. In f3 the function is permitted to
|
|
call recover, but the deferred recover call is not. We address
|
|
that here by checking for that specific case before calling
|
|
recover. If this function was deferred when there is already a
|
|
panic on the panic stack, then we can only recover that panic, not
|
|
any other.
|
|
|
|
Note that we can get away with using a special function here
|
|
because you are not permitted to take the address of a predeclared
|
|
function like recover. */
|
|
|
|
struct __go_empty_interface
|
|
__go_deferred_recover ()
|
|
{
|
|
G *g;
|
|
|
|
g = runtime_g ();
|
|
if (g->_defer == NULL || g->_defer->_panic != g->_panic)
|
|
{
|
|
struct __go_empty_interface ret;
|
|
|
|
ret.__type_descriptor = NULL;
|
|
ret.__object = NULL;
|
|
return ret;
|
|
}
|
|
return __go_recover ();
|
|
}
|