mirror of
https://github.com/golang/go
synced 2024-11-19 06:04:39 -07:00
b2a950bb73
Rename "gothrow" to "throw" now that the C version of "throw" is no longer needed. This change is purely mechanical except in panic.go where the old version of "throw" has been deleted. sed -i "" 's/[[:<:]]gothrow[[:>:]]/throw/g' runtime/*.go Change-Id: Icf0752299c35958b92870a97111c67bcd9159dc3 Reviewed-on: https://go-review.googlesource.com/2150 Reviewed-by: Minux Ma <minux@golang.org> Reviewed-by: Dave Cheney <dave@cheney.net>
36 lines
1016 B
Go
36 lines
1016 B
Go
// Copyright 2013 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.
|
|
|
|
package runtime
|
|
|
|
import "unsafe"
|
|
|
|
// adjust Gobuf as if it executed a call to fn with context ctxt
|
|
// and then did an immediate Gosave.
|
|
func gostartcall(buf *gobuf, fn, ctxt unsafe.Pointer) {
|
|
if buf.lr != 0 {
|
|
throw("invalid use of gostartcall")
|
|
}
|
|
buf.lr = buf.pc
|
|
buf.pc = uintptr(fn)
|
|
buf.ctxt = ctxt
|
|
}
|
|
|
|
// Called to rewind context saved during morestack back to beginning of function.
|
|
// To help us, the linker emits a jmp back to the beginning right after the
|
|
// call to morestack. We just have to decode and apply that jump.
|
|
func rewindmorestack(buf *gobuf) {
|
|
var inst uint32
|
|
if buf.pc&3 == 0 && buf.pc != 0 {
|
|
inst = *(*uint32)(unsafe.Pointer(buf.pc))
|
|
if inst>>24 == 0x9a {
|
|
buf.pc += uintptr(int32(inst<<8)>>6) + 8
|
|
return
|
|
}
|
|
}
|
|
|
|
print("runtime: pc=", hex(buf.pc), " ", hex(inst), "\n")
|
|
throw("runtime: misuse of rewindmorestack")
|
|
}
|