summaryrefslogtreecommitdiff
path: root/src/runtime/sys_power64x.c
blob: 79d976255f5b5b22d3de7580e7d128765aa27507 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright 2014 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.

// +build power64 power64le

#include "runtime.h"

// adjust Gobuf as if it executed a call to fn with context ctxt
// and then did an immediate Gosave.
void
runtime·gostartcall(Gobuf *gobuf, void (*fn)(void), void *ctxt)
{
	if(gobuf->lr != 0)
		runtime·throw("invalid use of gostartcall");
	gobuf->lr = gobuf->pc;
	gobuf->pc = (uintptr)fn;
	gobuf->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.
void
runtime·rewindmorestack(Gobuf *gobuf)
{
	uint32 inst;

	inst = *(uint32*)gobuf->pc;
	if((gobuf->pc&3) == 0 && (inst>>24) == 0x4b && (inst&3) == 0) {
		//runtime·printf("runtime: rewind pc=%p to pc=%p\n", gobuf->pc, gobuf->pc + ((int32)(inst<<8)>>8));
		gobuf->pc += (int32)(inst<<8)>>8;
		return;
	}
	runtime·printf("runtime: pc=%p %x\n", gobuf->pc, inst);
	runtime·throw("runtime: misuse of rewindmorestack");
}