| // 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. |
| // adjust Gobuf as it if executed a call to fn with context ctxt |
| // and then did an immediate gosave. |
| runtime·gostartcall(Gobuf *gobuf, void (*fn)(void), void *ctxt) |
| sp = (uintptr*)gobuf->sp; |
| *--sp = (uintptr)gobuf->pc; |
| // 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. |
| runtime·rewindmorestack(Gobuf *gobuf) |
| if(pc[0] == 0xe9) { // jmp 4-byte offset |
| gobuf->pc = gobuf->pc + 5 + *(int32*)(pc+1); |
| if(pc[0] == 0xeb) { // jmp 1-byte offset |
| gobuf->pc = gobuf->pc + 2 + *(int8*)(pc+1); |
| runtime·printf("runtime: pc=%p %x %x %x %x %x\n", pc, pc[0], pc[1], pc[2], pc[3], pc[4]); |
| runtime·throw("runtime: misuse of rewindmorestack"); |