aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/runtime/panic.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/panic.go')
-rw-r--r--src/runtime/panic.go36
1 files changed, 29 insertions, 7 deletions
diff --git a/src/runtime/panic.go b/src/runtime/panic.go
index d429171ec..ec33a4469 100644
--- a/src/runtime/panic.go
+++ b/src/runtime/panic.go
@@ -38,12 +38,24 @@ type deferFrame struct {
JumpPC unsafe.Pointer // pc to return to
ExtraRegs [deferExtraRegs]unsafe.Pointer // extra registers (depending on the architecture)
Previous *deferFrame // previous recover buffer pointer
- Panicking bool // true iff this defer frame is panicking
+ Panicking panicState // not panicking, panicking, or in Goexit
PanicValue interface{} // panic value, might be nil for panic(nil) for example
}
+type panicState uint8
+
+const (
+ panicFalse panicState = iota
+ panicTrue
+ panicGoexit
+)
+
// Builtin function panic(msg), used as a compiler intrinsic.
func _panic(message interface{}) {
+ panicOrGoexit(message, panicTrue)
+}
+
+func panicOrGoexit(message interface{}, panicking panicState) {
if panicStrategy() == tinygo.PanicStrategyTrap {
trap()
}
@@ -53,11 +65,16 @@ func _panic(message interface{}) {
frame := (*deferFrame)(task.Current().DeferFrame)
if frame != nil {
frame.PanicValue = message
- frame.Panicking = true
+ frame.Panicking = panicking
tinygo_longjmp(frame)
// unreachable
}
}
+ if panicking == panicGoexit {
+ // Call to Goexit() instead of a panic.
+ // Exit the goroutine instead of printing a panic message.
+ deadlock()
+ }
printstring("panic: ")
printitf(message)
printnl()
@@ -103,7 +120,7 @@ func setupDeferFrame(frame *deferFrame, jumpSP unsafe.Pointer) {
currentTask := task.Current()
frame.Previous = (*deferFrame)(currentTask.DeferFrame)
frame.JumpSP = jumpSP
- frame.Panicking = false
+ frame.Panicking = panicFalse
currentTask.DeferFrame = unsafe.Pointer(frame)
}
@@ -115,10 +132,10 @@ func setupDeferFrame(frame *deferFrame, jumpSP unsafe.Pointer) {
//go:nobounds
func destroyDeferFrame(frame *deferFrame) {
task.Current().DeferFrame = unsafe.Pointer(frame.Previous)
- if frame.Panicking {
+ if frame.Panicking != panicFalse {
// We're still panicking!
// Re-raise the panic now.
- _panic(frame.PanicValue)
+ panicOrGoexit(frame.PanicValue, frame.Panicking)
}
}
@@ -143,10 +160,15 @@ func _recover(useParentFrame bool) interface{} {
// already), but instead from the previous frame.
frame = frame.Previous
}
- if frame != nil && frame.Panicking {
+ if frame != nil && frame.Panicking != panicFalse {
+ if frame.Panicking == panicGoexit {
+ // Special value that indicates we're exiting the goroutine using
+ // Goexit(). Therefore, make this recover call a no-op.
+ return nil
+ }
// Only the first call to recover returns the panic value. It also stops
// the panicking sequence, hence setting panicking to false.
- frame.Panicking = false
+ frame.Panicking = panicFalse
return frame.PanicValue
}
// Not panicking, so return a nil interface.