blob: 796f27c4e356c5da7b506406202445fb9769b9bf [file] [log] [blame]
Austin Clements0da27cb2014-11-18 15:19:37 -05001// Copyright 2014 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Russ Cox09d92b62014-12-05 19:13:20 -05005// +build ppc64 ppc64le
Austin Clements0da27cb2014-11-18 15:19:37 -05006
7package runtime
8
9import "unsafe"
10
11// adjust Gobuf as if it executed a call to fn with context ctxt
12// and then did an immediate Gosave.
13func gostartcall(buf *gobuf, fn, ctxt unsafe.Pointer) {
14 if buf.lr != 0 {
Keith Randallb2a950b2014-12-27 20:58:00 -080015 throw("invalid use of gostartcall")
Austin Clements0da27cb2014-11-18 15:19:37 -050016 }
17 buf.lr = buf.pc
18 buf.pc = uintptr(fn)
19 buf.ctxt = ctxt
20}
21
Michael Hudson-Doyle368d5482015-10-16 15:42:09 +130022func prepGoExitFrame(sp uintptr)