portable-devtools / go /src /runtime /asm_riscv64.s
codekingpro's picture
Add files using upload-large-folder tool
334514d verified
Raw
History Blame Contribute Delete
28.2 kB
// Copyright 2017 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.
#include "go_asm.h"
#include "funcdata.h"
#include "textflag.h"
// When building with -buildmode=c-shared, this symbol is called when the shared
// library is loaded.
TEXT _rt0_riscv64_lib(SB),NOSPLIT,$224
// Preserve callee-save registers, along with X1 (LR).
MOV X1, (8*3)(X2)
MOV X8, (8*4)(X2)
MOV X9, (8*5)(X2)
MOV X18, (8*6)(X2)
MOV X19, (8*7)(X2)
MOV X20, (8*8)(X2)
MOV X21, (8*9)(X2)
MOV X22, (8*10)(X2)
MOV X23, (8*11)(X2)
MOV X24, (8*12)(X2)
MOV X25, (8*13)(X2)
MOV X26, (8*14)(X2)
MOV g, (8*15)(X2)
MOVD F8, (8*16)(X2)
MOVD F9, (8*17)(X2)
MOVD F18, (8*18)(X2)
MOVD F19, (8*19)(X2)
MOVD F20, (8*20)(X2)
MOVD F21, (8*21)(X2)
MOVD F22, (8*22)(X2)
MOVD F23, (8*23)(X2)
MOVD F24, (8*24)(X2)
MOVD F25, (8*25)(X2)
MOVD F26, (8*26)(X2)
MOVD F27, (8*27)(X2)
// Initialize g as nil in case of using g later e.g. sigaction in cgo_sigaction.go
MOV X0, g
MOV A0, _rt0_riscv64_lib_argc<>(SB)
MOV A1, _rt0_riscv64_lib_argv<>(SB)
// Synchronous initialization.
MOV $runtimelibpreinit(SB), T0
JALR RA, T0
// Create a new thread to do the runtime initialization and return.
MOV _cgo_sys_thread_create(SB), T0
BEQZ T0, nocgo
MOV $_rt0_riscv64_lib_go(SB), A0
MOV $0, A1
JALR RA, T0
JMP restore
nocgo:
MOV $0x800000, A0 // stacksize = 8192KB
MOV $_rt0_riscv64_lib_go(SB), A1
MOV A0, 8(X2)
MOV A1, 16(X2)
MOV $runtimenewosproc0(SB), T0
JALR RA, T0
restore:
// Restore callee-save registers, along with X1 (LR).
MOV (8*3)(X2), X1
MOV (8*4)(X2), X8
MOV (8*5)(X2), X9
MOV (8*6)(X2), X18
MOV (8*7)(X2), X19
MOV (8*8)(X2), X20
MOV (8*9)(X2), X21
MOV (8*10)(X2), X22
MOV (8*11)(X2), X23
MOV (8*12)(X2), X24
MOV (8*13)(X2), X25
MOV (8*14)(X2), X26
MOV (8*15)(X2), g
MOVD (8*16)(X2), F8
MOVD (8*17)(X2), F9
MOVD (8*18)(X2), F18
MOVD (8*19)(X2), F19
MOVD (8*20)(X2), F20
MOVD (8*21)(X2), F21
MOVD (8*22)(X2), F22
MOVD (8*23)(X2), F23
MOVD (8*24)(X2), F24
MOVD (8*25)(X2), F25
MOVD (8*26)(X2), F26
MOVD (8*27)(X2), F27
RET
TEXT _rt0_riscv64_lib_go(SB),NOSPLIT,$0
MOV _rt0_riscv64_lib_argc<>(SB), A0
MOV _rt0_riscv64_lib_argv<>(SB), A1
MOV $runtimert0_go(SB), T0
JALR ZERO, T0
DATA _rt0_riscv64_lib_argc<>(SB)/8, $0
GLOBL _rt0_riscv64_lib_argc<>(SB),NOPTR, $8
DATA _rt0_riscv64_lib_argv<>(SB)/8, $0
GLOBL _rt0_riscv64_lib_argv<>(SB),NOPTR, $8
// func rt0_go()
TEXT runtime路rt0_go(SB),NOSPLIT|TOPFRAME,$0
// X2 = stack; A0 = argc; A1 = argv
SUB $24, X2
MOV A0, 8(X2) // argc
MOV A1, 16(X2) // argv
// create istack out of the given (operating system) stack.
// _cgo_init may update stackguard.
MOV $runtimeg0(SB), g
MOV $(-64*1024), T0
ADD T0, X2, T1
MOV T1, g_stackguard0(g)
MOV T1, g_stackguard1(g)
MOV T1, (g_stack+stack_lo)(g)
MOV X2, (g_stack+stack_hi)(g)
// if there is a _cgo_init, call it using the gcc ABI.
MOV _cgo_init(SB), T0
BEQ T0, ZERO, nocgo
MOV ZERO, A3 // arg 3: not used
MOV ZERO, A2 // arg 2: not used
MOV $setg_gcc<>(SB), A1 // arg 1: setg
MOV g, A0 // arg 0: G
JALR RA, T0
nocgo:
// update stackguard after _cgo_init
MOV (g_stack+stack_lo)(g), T0
ADD $const_stackGuard, T0
MOV T0, g_stackguard0(g)
MOV T0, g_stackguard1(g)
// set the per-goroutine and per-mach "registers"
MOV $runtimem0(SB), T0
// save m->g0 = g0
MOV g, m_g0(T0)
// save m0 to g0->m
MOV T0, g_m(g)
CALL runtime路check(SB)
// args are already prepared
CALL runtime路args(SB)
CALL runtime路osinit(SB)
CALL runtime路schedinit(SB)
// create a new goroutine to start program
MOV $runtimemainPC(SB), T0 // entry
SUB $16, X2
MOV T0, 8(X2)
MOV ZERO, 0(X2)
CALL runtime路newproc(SB)
ADD $16, X2
// start this M
CALL runtime路mstart(SB)
WORD $0 // crash if reached
RET
TEXT runtime路mstart(SB),NOSPLIT|TOPFRAME,$0
CALL runtime路mstart0(SB)
RET // not reached
// void setg_gcc(G*); set g called from gcc with g in A0
TEXT setg_gcc<>(SB),NOSPLIT,$0-0
MOV A0, g
CALL runtime路save_g(SB)
RET
// func cputicks() int64
TEXT runtime路cputicks<ABIInternal>(SB),NOSPLIT,$0-0
// RDTIME to emulate cpu ticks
// RDCYCLE reads counter that is per HART(core) based
// according to the riscv manual, see issue 46737
RDTIME X10
RET
// systemstack_switch is a dummy routine that systemstack leaves at the bottom
// of the G stack. We need to distinguish the routine that
// lives at the bottom of the G stack from the one that lives
// at the top of the system stack because the one at the top of
// the system stack terminates the stack walk (see topofstack()).
TEXT runtime路systemstack_switch(SB), NOSPLIT, $0-0
UNDEF
JALR RA, ZERO // make sure this function is not leaf
RET
// func systemstack(fn func())
TEXT runtime路systemstack(SB), NOSPLIT, $0-8
MOV fn+0(FP), CTXT // CTXT = fn
MOV g_m(g), T0 // T0 = m
MOV m_gsignal(T0), T1 // T1 = gsignal
BEQ g, T1, noswitch
MOV m_g0(T0), T1 // T1 = g0
BEQ g, T1, noswitch
MOV m_curg(T0), T2
BEQ g, T2, switch
// Bad: g is not gsignal, not g0, not curg. What is it?
// Hide call from linker nosplit analysis.
MOV $runtimebadsystemstack(SB), T1
JALR RA, T1
switch:
// save our state in g->sched. Pretend to
// be systemstack_switch if the G stack is scanned.
CALL gosave_systemstack_switch<>(SB)
// switch to g0
MOV T1, g
CALL runtime路save_g(SB)
MOV (g_sched+gobuf_sp)(g), T0
MOV T0, X2
// call target function
MOV 0(CTXT), T1 // code pointer
JALR RA, T1
// switch back to g
MOV g_m(g), T0
MOV m_curg(T0), g
CALL runtime路save_g(SB)
MOV (g_sched+gobuf_sp)(g), X2
MOV ZERO, (g_sched+gobuf_sp)(g)
RET
noswitch:
// already on m stack, just call directly
// Using a tail call here cleans up tracebacks since we won't stop
// at an intermediate systemstack.
MOV 0(CTXT), T1 // code pointer
ADD $8, X2
JMP (T1)
// func switchToCrashStack0(fn func())
TEXT runtime路switchToCrashStack0<ABIInternal>(SB), NOSPLIT, $0-8
MOV X10, CTXT // context register
MOV g_m(g), X11 // curm
// set g to gcrash
MOV $runtime路gcrash(SB), g // g = &gcrash
CALL runtime路save_g(SB) // clobbers X31
MOV X11, g_m(g) // g.m = curm
MOV g, m_g0(X11) // curm.g0 = g
// switch to crashstack
MOV (g_stack+stack_hi)(g), X11
SUB $(4*8), X11
MOV X11, X2
// call target function
MOV 0(CTXT), X10
JALR X1, X10
// should never return
CALL runtime路abort(SB)
UNDEF
/*
* support for morestack
*/
// Called during function prolog when more stack is needed.
// Called with return address (i.e. caller's PC) in X5 (aka T0),
// and the LR register contains the caller's LR.
//
// The traceback routines see morestack on a g0 as being
// the top of a stack (for example, morestack calling newstack
// calling the scheduler calling newm calling gc), so we must
// record an argument size. For that purpose, it has no arguments.
// func morestack()
TEXT runtime路morestack(SB),NOSPLIT|NOFRAME,$0-0
// Called from f.
// Set g->sched to context in f.
MOV X2, (g_sched+gobuf_sp)(g)
MOV T0, (g_sched+gobuf_pc)(g)
MOV RA, (g_sched+gobuf_lr)(g)
MOV CTXT, (g_sched+gobuf_ctxt)(g)
// Cannot grow scheduler stack (m->g0).
MOV g_m(g), A0
MOV m_g0(A0), A1
BNE g, A1, 3(PC)
CALL runtime路badmorestackg0(SB)
CALL runtime路abort(SB)
// Cannot grow signal stack (m->gsignal).
MOV m_gsignal(A0), A1
BNE g, A1, 3(PC)
CALL runtime路badmorestackgsignal(SB)
CALL runtime路abort(SB)
// Called from f.
// Set m->morebuf to f's caller.
MOV RA, (m_morebuf+gobuf_pc)(A0) // f's caller's PC
MOV X2, (m_morebuf+gobuf_sp)(A0) // f's caller's SP
MOV g, (m_morebuf+gobuf_g)(A0)
// Call newstack on m->g0's stack.
MOV m_g0(A0), g
CALL runtime路save_g(SB)
MOV (g_sched+gobuf_sp)(g), X2
// Create a stack frame on g0 to call newstack.
MOV ZERO, -8(X2) // Zero saved LR in frame
SUB $8, X2
CALL runtime路newstack(SB)
// Not reached, but make sure the return PC from the call to newstack
// is still in this function, and not the beginning of the next.
UNDEF
// func morestack_noctxt()
TEXT runtime路morestack_noctxt(SB),NOSPLIT|NOFRAME,$0-0
// Force SPWRITE. This function doesn't actually write SP,
// but it is called with a special calling convention where
// the caller doesn't save LR on stack but passes it as a
// register, and the unwinder currently doesn't understand.
// Make it SPWRITE to stop unwinding. (See issue 54332)
MOV X2, X2
MOV ZERO, CTXT
JMP runtime路morestack(SB)
// AES hashing not implemented for riscv64
TEXT runtime路memhash<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-32
JMP runtime路memhashFallback<ABIInternal>(SB)
TEXT runtime路strhash<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-24
JMP runtime路strhashFallback<ABIInternal>(SB)
TEXT runtime路memhash32<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-24
JMP runtime路memhash32Fallback<ABIInternal>(SB)
TEXT runtime路memhash64<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-24
JMP runtime路memhash64Fallback<ABIInternal>(SB)
// restore state from Gobuf; longjmp
// func gogo(buf *gobuf)
TEXT runtime路gogo(SB), NOSPLIT|NOFRAME, $0-8
MOV buf+0(FP), T0
MOV gobuf_g(T0), T1
MOV 0(T1), ZERO // make sure g != nil
JMP gogo<>(SB)
TEXT gogo<>(SB), NOSPLIT|NOFRAME, $0
MOV T1, g
CALL runtime路save_g(SB)
MOV gobuf_sp(T0), X2
MOV gobuf_lr(T0), RA
MOV gobuf_ctxt(T0), CTXT
MOV ZERO, gobuf_sp(T0)
MOV ZERO, gobuf_lr(T0)
MOV ZERO, gobuf_ctxt(T0)
MOV gobuf_pc(T0), T0
JALR ZERO, T0
// func procyieldAsm(cycles uint32)
TEXT runtime路procyieldAsm(SB),NOSPLIT,$0-0
RET
// Switch to m->g0's stack, call fn(g).
// Fn must never return. It should gogo(&g->sched)
// to keep running g.
// func mcall(fn func(*g))
TEXT runtime路mcall<ABIInternal>(SB), NOSPLIT|NOFRAME, $0-8
MOV X10, CTXT
// Save caller state in g->sched
MOV X2, (g_sched+gobuf_sp)(g)
MOV RA, (g_sched+gobuf_pc)(g)
MOV ZERO, (g_sched+gobuf_lr)(g)
// Switch to m->g0 & its stack, call fn.
MOV g, X10
MOV g_m(g), T1
MOV m_g0(T1), g
CALL runtime路save_g(SB)
BNE g, X10, 2(PC)
JMP runtime路badmcall(SB)
MOV 0(CTXT), T1 // code pointer
MOV (g_sched+gobuf_sp)(g), X2 // sp = m->g0->sched.sp
// we don't need special macro for regabi since arg0(X10) = g
SUB $16, X2
MOV X10, 8(X2) // setup g
MOV ZERO, 0(X2) // clear return address
JALR RA, T1
JMP runtime路badmcall2(SB)
// Save state of caller into g->sched,
// but using fake PC from systemstack_switch.
// Must only be called from functions with no locals ($0)
// or else unwinding from systemstack_switch is incorrect.
// Smashes X31.
TEXT gosave_systemstack_switch<>(SB),NOSPLIT|NOFRAME,$0
MOV $runtimesystemstack_switch(SB), X31
ADD $8, X31 // get past prologue
MOV X31, (g_sched+gobuf_pc)(g)
MOV X2, (g_sched+gobuf_sp)(g)
MOV ZERO, (g_sched+gobuf_lr)(g)
// Assert ctxt is zero. See func save.
MOV (g_sched+gobuf_ctxt)(g), X31
BEQ ZERO, X31, 2(PC)
CALL runtime路abort(SB)
RET
// func asmcgocall_no_g(fn, arg unsafe.Pointer)
// Call fn(arg) aligned appropriately for the gcc ABI.
// Called on a system stack, and there may be no g yet (during needm).
TEXT 路asmcgocall_no_g(SB),NOSPLIT,$0-16
MOV fn+0(FP), X5
MOV arg+8(FP), X10
JALR RA, (X5)
RET
// func asmcgocall(fn, arg unsafe.Pointer) int32
// Call fn(arg) on the scheduler stack,
// aligned appropriately for the gcc ABI.
// See cgocall.go for more details.
TEXT 路asmcgocall(SB),NOSPLIT,$0-20
MOV fn+0(FP), X5
MOV arg+8(FP), X10
MOV X2, X8 // save original stack pointer
MOV g, X9
// Figure out if we need to switch to m->g0 stack.
// We get called to create new OS threads too, and those
// come in on the m->g0 stack already. Or we might already
// be on the m->gsignal stack.
MOV g_m(g), X6
MOV m_gsignal(X6), X7
BEQ X7, g, g0
MOV m_g0(X6), X7
BEQ X7, g, g0
CALL gosave_systemstack_switch<>(SB)
MOV X7, g
CALL runtime路save_g(SB)
MOV (g_sched+gobuf_sp)(g), X2
// Now on a scheduling stack (a pthread-created stack).
g0:
// Save room for two of our pointers.
SUB $16, X2
MOV X9, 0(X2) // save old g on stack
MOV (g_stack+stack_hi)(X9), X9
SUB X8, X9, X8
MOV X8, 8(X2) // save depth in old g stack (can't just save SP, as stack might be copied during a callback)
JALR RA, (X5)
// Restore g, stack pointer. X10 is return value.
MOV 0(X2), g
CALL runtime路save_g(SB)
MOV (g_stack+stack_hi)(g), X5
MOV 8(X2), X6
SUB X6, X5, X6
MOV X6, X2
MOVW X10, ret+16(FP)
RET
// func asminit()
TEXT runtime路asminit(SB),NOSPLIT|NOFRAME,$0-0
RET
// reflectcall: call a function with the given argument list
// func call(stackArgsType *_type, f *FuncVal, stackArgs *byte, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs).
// we don't have variable-sized frames, so we use a small number
// of constant-sized-frame functions to encode a few bits of size in the pc.
// Caution: ugly multiline assembly macros in your future!
#define DISPATCH(NAME,MAXSIZE) \
MOV $MAXSIZE, T1 \
BLTU T1, T0, 3(PC) \
MOV $NAME(SB), T2; \
JALR ZERO, T2
// Note: can't just "BR NAME(SB)" - bad inlining results.
// func call(stackArgsType *rtype, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs).
TEXT reflect路call(SB), NOSPLIT, $0-0
JMP 路reflectcall(SB)
// func call(stackArgsType *_type, fn, stackArgs unsafe.Pointer, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs).
TEXT 路reflectcall(SB), NOSPLIT|NOFRAME, $0-48
MOVWU frameSize+32(FP), T0
DISPATCH(runtime路call16, 16)
DISPATCH(runtime路call32, 32)
DISPATCH(runtime路call64, 64)
DISPATCH(runtime路call128, 128)
DISPATCH(runtime路call256, 256)
DISPATCH(runtime路call512, 512)
DISPATCH(runtime路call1024, 1024)
DISPATCH(runtime路call2048, 2048)
DISPATCH(runtime路call4096, 4096)
DISPATCH(runtime路call8192, 8192)
DISPATCH(runtime路call16384, 16384)
DISPATCH(runtime路call32768, 32768)
DISPATCH(runtime路call65536, 65536)
DISPATCH(runtime路call131072, 131072)
DISPATCH(runtime路call262144, 262144)
DISPATCH(runtime路call524288, 524288)
DISPATCH(runtime路call1048576, 1048576)
DISPATCH(runtime路call2097152, 2097152)
DISPATCH(runtime路call4194304, 4194304)
DISPATCH(runtime路call8388608, 8388608)
DISPATCH(runtime路call16777216, 16777216)
DISPATCH(runtime路call33554432, 33554432)
DISPATCH(runtime路call67108864, 67108864)
DISPATCH(runtime路call134217728, 134217728)
DISPATCH(runtime路call268435456, 268435456)
DISPATCH(runtime路call536870912, 536870912)
DISPATCH(runtime路call1073741824, 1073741824)
MOV $runtimebadreflectcall(SB), T2
JALR ZERO, T2
#define CALLFN(NAME,MAXSIZE) \
TEXT NAME(SB), WRAPPER, $MAXSIZE-48; \
NO_LOCAL_POINTERS; \
/* copy arguments to stack */ \
MOV stackArgs+16(FP), A1; \
MOVWU stackArgsSize+24(FP), A2; \
MOV X2, A3; \
ADD $8, A3; \
ADD A3, A2; \
BEQ A3, A2, 6(PC); \
MOVBU (A1), A4; \
ADD $1, A1; \
MOVB A4, (A3); \
ADD $1, A3; \
JMP -5(PC); \
/* set up argument registers */ \
MOV regArgs+40(FP), X25; \
CALL 路unspillArgs(SB); \
/* call function */ \
MOV f+8(FP), CTXT; \
MOV (CTXT), X25; \
PCDATA $PCDATA_StackMapIndex, $0; \
JALR RA, X25; \
/* copy return values back */ \
MOV regArgs+40(FP), X25; \
CALL 路spillArgs(SB); \
MOV stackArgsType+0(FP), A5; \
MOV stackArgs+16(FP), A1; \
MOVWU stackArgsSize+24(FP), A2; \
MOVWU stackRetOffset+28(FP), A4; \
ADD $8, X2, A3; \
ADD A4, A3; \
ADD A4, A1; \
SUB A4, A2; \
CALL callRet<>(SB); \
RET
// callRet copies return values back at the end of call*. This is a
// separate function so it can allocate stack space for the arguments
// to reflectcallmove. It does not follow the Go ABI; it expects its
// arguments in registers.
TEXT callRet<>(SB), NOSPLIT, $40-0
NO_LOCAL_POINTERS
MOV A5, 8(X2)
MOV A1, 16(X2)
MOV A3, 24(X2)
MOV A2, 32(X2)
MOV X25, 40(X2)
CALL runtime路reflectcallmove(SB)
RET
CALLFN(路call16, 16)
CALLFN(路call32, 32)
CALLFN(路call64, 64)
CALLFN(路call128, 128)
CALLFN(路call256, 256)
CALLFN(路call512, 512)
CALLFN(路call1024, 1024)
CALLFN(路call2048, 2048)
CALLFN(路call4096, 4096)
CALLFN(路call8192, 8192)
CALLFN(路call16384, 16384)
CALLFN(路call32768, 32768)
CALLFN(路call65536, 65536)
CALLFN(路call131072, 131072)
CALLFN(路call262144, 262144)
CALLFN(路call524288, 524288)
CALLFN(路call1048576, 1048576)
CALLFN(路call2097152, 2097152)
CALLFN(路call4194304, 4194304)
CALLFN(路call8388608, 8388608)
CALLFN(路call16777216, 16777216)
CALLFN(路call33554432, 33554432)
CALLFN(路call67108864, 67108864)
CALLFN(路call134217728, 134217728)
CALLFN(路call268435456, 268435456)
CALLFN(路call536870912, 536870912)
CALLFN(路call1073741824, 1073741824)
// Called from cgo wrappers, this function returns g->m->curg.stack.hi.
// Must obey the gcc calling convention.
TEXT _cgo_topofstack(SB),NOSPLIT,$8
// g (X27) and REG_TMP (X31) might be clobbered by load_g.
// X27 is callee-save in the gcc calling convention, so save it.
MOV g, savedX27-8(SP)
CALL runtime路load_g(SB)
MOV g_m(g), X5
MOV m_curg(X5), X5
MOV (g_stack+stack_hi)(X5), X10 // return value in X10
MOV savedX27-8(SP), g
RET
// func goexit(neverCallThisFunction)
// The top-most function running on a goroutine, returns to goexit+PCQuantum*2.
// Note that the NOPs are written in a manner that will not be compressed,
// since the offset must be known by the runtime.
TEXT runtime路goexit(SB),NOSPLIT|NOFRAME|TOPFRAME,$0-0
WORD $0x00000013 // NOP
JMP runtime路goexit1(SB) // does not return
// traceback from goexit1 must hit code range of goexit
WORD $0x00000013 // NOP
// This is called from .init_array and follows the platform, not the Go ABI.
TEXT runtime路addmoduledata(SB),NOSPLIT,$0-0
// Use X31 as it is a scratch register in both the Go ABI and psABI.
MOV runtime路lastmoduledatap(SB), X31
MOV X10, moduledata_next(X31)
MOV X10, runtime路lastmoduledatap(SB)
RET
// func cgocallback(fn, frame unsafe.Pointer, ctxt uintptr)
// See cgocall.go for more details.
TEXT 路cgocallback(SB),NOSPLIT,$24-24
NO_LOCAL_POINTERS
// Skip cgocallbackg, just dropm when fn is nil, and frame is the saved g.
// It is used to dropm while thread is exiting.
MOV fn+0(FP), X7
BNE ZERO, X7, loadg
// Restore the g from frame.
MOV frame+8(FP), g
JMP dropm
loadg:
// Load m and g from thread-local storage.
MOVBU runtime路iscgo(SB), X5
BEQ ZERO, X5, nocgo
CALL runtime路load_g(SB)
nocgo:
// If g is nil, Go did not create the current thread,
// or if this thread never called into Go on pthread platforms.
// Call needm to obtain one for temporary use.
// In this case, we're running on the thread stack, so there's
// lots of space, but the linker doesn't know. Hide the call from
// the linker analysis by using an indirect call.
BEQ ZERO, g, needm
MOV g_m(g), X5
MOV X5, savedm-8(SP)
JMP havem
needm:
MOV g, savedm-8(SP) // g is zero, so is m.
MOV $runtime路needAndBindM(SB), X6
JALR RA, X6
// Set m->sched.sp = SP, so that if a panic happens
// during the function we are about to execute, it will
// have a valid SP to run on the g0 stack.
// The next few lines (after the havem label)
// will save this SP onto the stack and then write
// the same SP back to m->sched.sp. That seems redundant,
// but if an unrecovered panic happens, unwindm will
// restore the g->sched.sp from the stack location
// and then systemstack will try to use it. If we don't set it here,
// that restored SP will be uninitialized (typically 0) and
// will not be usable.
MOV g_m(g), X5
MOV m_g0(X5), X6
MOV X2, (g_sched+gobuf_sp)(X6)
havem:
// Now there's a valid m, and we're running on its m->g0.
// Save current m->g0->sched.sp on stack and then set it to SP.
// Save current sp in m->g0->sched.sp in preparation for
// switch back to m->curg stack.
// NOTE: unwindm knows that the saved g->sched.sp is at 8(X2) aka savedsp-24(SP).
MOV m_g0(X5), X6
MOV (g_sched+gobuf_sp)(X6), X7
MOV X7, savedsp-24(SP) // must match frame size
MOV X2, (g_sched+gobuf_sp)(X6)
// Switch to m->curg stack and call runtime.cgocallbackg.
// Because we are taking over the execution of m->curg
// but *not* resuming what had been running, we need to
// save that information (m->curg->sched) so we can restore it.
// We can restore m->curg->sched.sp easily, because calling
// runtime.cgocallbackg leaves SP unchanged upon return.
// To save m->curg->sched.pc, we push it onto the curg stack and
// open a frame the same size as cgocallback's g0 frame.
// Once we switch to the curg stack, the pushed PC will appear
// to be the return PC of cgocallback, so that the traceback
// will seamlessly trace back into the earlier calls.
MOV m_curg(X5), g
CALL runtime路save_g(SB)
MOV (g_sched+gobuf_sp)(g), X6 // prepare stack as X6
MOV (g_sched+gobuf_pc)(g), X7
MOV X7, -(24+8)(X6) // "saved LR"; must match frame size
// Gather our arguments into registers.
MOV fn+0(FP), X7
MOV frame+8(FP), X8
MOV ctxt+16(FP), X9
MOV $-(24+8)(X6), X2 // switch stack; must match frame size
MOV X7, 8(X2)
MOV X8, 16(X2)
MOV X9, 24(X2)
CALL runtime路cgocallbackg(SB)
// Restore g->sched (== m->curg->sched) from saved values.
MOV 0(X2), X7
MOV X7, (g_sched+gobuf_pc)(g)
MOV $(24+8)(X2), X6 // must match frame size
MOV X6, (g_sched+gobuf_sp)(g)
// Switch back to m->g0's stack and restore m->g0->sched.sp.
// (Unlike m->curg, the g0 goroutine never uses sched.pc,
// so we do not have to restore it.)
MOV g_m(g), X5
MOV m_g0(X5), g
CALL runtime路save_g(SB)
MOV (g_sched+gobuf_sp)(g), X2
MOV savedsp-24(SP), X6 // must match frame size
MOV X6, (g_sched+gobuf_sp)(g)
// If the m on entry was nil, we called needm above to borrow an m,
// 1. for the duration of the call on non-pthread platforms,
// 2. or the duration of the C thread alive on pthread platforms.
// If the m on entry wasn't nil,
// 1. the thread might be a Go thread,
// 2. or it wasn't the first call from a C thread on pthread platforms,
// since then we skip dropm to reuse the m in the first call.
MOV savedm-8(SP), X5
BNE ZERO, X5, droppedm
// Skip dropm to reuse it in the next call, when a pthread key has been created.
MOV _cgo_pthread_key_created(SB), X5
// It means cgo is disabled when _cgo_pthread_key_created is a nil pointer, need dropm.
BEQ ZERO, X5, dropm
MOV (X5), X5
BNE ZERO, X5, droppedm
dropm:
MOV $runtimedropm(SB), X6
JALR RA, X6
droppedm:
// Done!
RET
TEXT runtime路breakpoint(SB),NOSPLIT|NOFRAME,$0-0
EBREAK
RET
TEXT runtime路abort(SB),NOSPLIT|NOFRAME,$0-0
EBREAK
RET
// void setg(G*); set g. for use by needm.
TEXT runtime路setg(SB), NOSPLIT, $0-8
MOV gg+0(FP), g
// This only happens if iscgo, so jump straight to save_g
CALL runtime路save_g(SB)
RET
TEXT 路checkASM(SB),NOSPLIT,$0-1
MOV $1, T0
MOV T0, ret+0(FP)
RET
// spillArgs stores return values from registers to a *internal/abi.RegArgs in X25.
TEXT 路spillArgs(SB),NOSPLIT,$0-0
MOV X10, (0*8)(X25)
MOV X11, (1*8)(X25)
MOV X12, (2*8)(X25)
MOV X13, (3*8)(X25)
MOV X14, (4*8)(X25)
MOV X15, (5*8)(X25)
MOV X16, (6*8)(X25)
MOV X17, (7*8)(X25)
MOV X8, (8*8)(X25)
MOV X9, (9*8)(X25)
MOV X18, (10*8)(X25)
MOV X19, (11*8)(X25)
MOV X20, (12*8)(X25)
MOV X21, (13*8)(X25)
MOV X22, (14*8)(X25)
MOV X23, (15*8)(X25)
MOVD F10, (16*8)(X25)
MOVD F11, (17*8)(X25)
MOVD F12, (18*8)(X25)
MOVD F13, (19*8)(X25)
MOVD F14, (20*8)(X25)
MOVD F15, (21*8)(X25)
MOVD F16, (22*8)(X25)
MOVD F17, (23*8)(X25)
MOVD F8, (24*8)(X25)
MOVD F9, (25*8)(X25)
MOVD F18, (26*8)(X25)
MOVD F19, (27*8)(X25)
MOVD F20, (28*8)(X25)
MOVD F21, (29*8)(X25)
MOVD F22, (30*8)(X25)
MOVD F23, (31*8)(X25)
RET
// unspillArgs loads args into registers from a *internal/abi.RegArgs in X25.
TEXT 路unspillArgs(SB),NOSPLIT,$0-0
MOV (0*8)(X25), X10
MOV (1*8)(X25), X11
MOV (2*8)(X25), X12
MOV (3*8)(X25), X13
MOV (4*8)(X25), X14
MOV (5*8)(X25), X15
MOV (6*8)(X25), X16
MOV (7*8)(X25), X17
MOV (8*8)(X25), X8
MOV (9*8)(X25), X9
MOV (10*8)(X25), X18
MOV (11*8)(X25), X19
MOV (12*8)(X25), X20
MOV (13*8)(X25), X21
MOV (14*8)(X25), X22
MOV (15*8)(X25), X23
MOVD (16*8)(X25), F10
MOVD (17*8)(X25), F11
MOVD (18*8)(X25), F12
MOVD (19*8)(X25), F13
MOVD (20*8)(X25), F14
MOVD (21*8)(X25), F15
MOVD (22*8)(X25), F16
MOVD (23*8)(X25), F17
MOVD (24*8)(X25), F8
MOVD (25*8)(X25), F9
MOVD (26*8)(X25), F18
MOVD (27*8)(X25), F19
MOVD (28*8)(X25), F20
MOVD (29*8)(X25), F21
MOVD (30*8)(X25), F22
MOVD (31*8)(X25), F23
RET
// gcWriteBarrier informs the GC about heap pointer writes.
//
// gcWriteBarrier does NOT follow the Go ABI. It accepts the
// number of bytes of buffer needed in X24, and returns a pointer
// to the buffer space in X24.
// It clobbers X31 aka T6 (the linker temp register - REG_TMP).
// The act of CALLing gcWriteBarrier will clobber RA (LR).
// It does not clobber any other general-purpose registers,
// but may clobber others (e.g., floating point registers).
TEXT gcWriteBarrier<>(SB),NOSPLIT,$208
// Save the registers clobbered by the fast path.
MOV A0, 24*8(X2)
MOV A1, 25*8(X2)
retry:
MOV g_m(g), A0
MOV m_p(A0), A0
MOV (p_wbBuf+wbBuf_next)(A0), A1
MOV (p_wbBuf+wbBuf_end)(A0), T6 // T6 is linker temp register (REG_TMP)
// Increment wbBuf.next position.
ADD X24, A1
// Is the buffer full?
BLTU T6, A1, flush
// Commit to the larger buffer.
MOV A1, (p_wbBuf+wbBuf_next)(A0)
// Make the return value (the original next position)
SUB X24, A1, X24
// Restore registers.
MOV 24*8(X2), A0
MOV 25*8(X2), A1
RET
flush:
// Save all general purpose registers since these could be
// clobbered by wbBufFlush and were not saved by the caller.
MOV T0, 1*8(X2)
MOV T1, 2*8(X2)
// X0 is zero register
// X1 is LR, saved by prologue
// X2 is SP
// X3 is GP
// X4 is TP
MOV X7, 3*8(X2)
MOV X8, 4*8(X2)
MOV X9, 5*8(X2)
// X10 already saved (A0)
// X11 already saved (A1)
MOV X12, 6*8(X2)
MOV X13, 7*8(X2)
MOV X14, 8*8(X2)
MOV X15, 9*8(X2)
MOV X16, 10*8(X2)
MOV X17, 11*8(X2)
MOV X18, 12*8(X2)
MOV X19, 13*8(X2)
MOV X20, 14*8(X2)
MOV X21, 15*8(X2)
MOV X22, 16*8(X2)
MOV X23, 17*8(X2)
MOV X24, 18*8(X2)
MOV X25, 19*8(X2)
MOV X26, 20*8(X2)
// X27 is g.
MOV X28, 21*8(X2)
MOV X29, 22*8(X2)
MOV X30, 23*8(X2)
// X31 is tmp register.
CALL runtime路wbBufFlush(SB)
MOV 1*8(X2), T0
MOV 2*8(X2), T1
MOV 3*8(X2), X7
MOV 4*8(X2), X8
MOV 5*8(X2), X9
MOV 6*8(X2), X12
MOV 7*8(X2), X13
MOV 8*8(X2), X14
MOV 9*8(X2), X15
MOV 10*8(X2), X16
MOV 11*8(X2), X17
MOV 12*8(X2), X18
MOV 13*8(X2), X19
MOV 14*8(X2), X20
MOV 15*8(X2), X21
MOV 16*8(X2), X22
MOV 17*8(X2), X23
MOV 18*8(X2), X24
MOV 19*8(X2), X25
MOV 20*8(X2), X26
MOV 21*8(X2), X28
MOV 22*8(X2), X29
MOV 23*8(X2), X30
JMP retry
TEXT runtime路gcWriteBarrier1<ABIInternal>(SB),NOSPLIT,$0
MOV $8, X24
JMP gcWriteBarrier<>(SB)
TEXT runtime路gcWriteBarrier2<ABIInternal>(SB),NOSPLIT,$0
MOV $16, X24
JMP gcWriteBarrier<>(SB)
TEXT runtime路gcWriteBarrier3<ABIInternal>(SB),NOSPLIT,$0
MOV $24, X24
JMP gcWriteBarrier<>(SB)
TEXT runtime路gcWriteBarrier4<ABIInternal>(SB),NOSPLIT,$0
MOV $32, X24
JMP gcWriteBarrier<>(SB)
TEXT runtime路gcWriteBarrier5<ABIInternal>(SB),NOSPLIT,$0
MOV $40, X24
JMP gcWriteBarrier<>(SB)
TEXT runtime路gcWriteBarrier6<ABIInternal>(SB),NOSPLIT,$0
MOV $48, X24
JMP gcWriteBarrier<>(SB)
TEXT runtime路gcWriteBarrier7<ABIInternal>(SB),NOSPLIT,$0
MOV $56, X24
JMP gcWriteBarrier<>(SB)
TEXT runtime路gcWriteBarrier8<ABIInternal>(SB),NOSPLIT,$0
MOV $64, X24
JMP gcWriteBarrier<>(SB)
TEXT runtime路panicBounds<ABIInternal>(SB),NOSPLIT,$144-0
NO_LOCAL_POINTERS
// Save all 16 int registers that could have an index in them.
// They may be pointers, but if they are they are dead.
// Skip X0 aka ZERO, X1 aka LR, X2 aka SP, X3 aka GP, X4 aka TP.
MOV X5, 24(X2)
MOV X6, 32(X2)
MOV X7, 40(X2)
MOV X8, 48(X2)
MOV X9, 56(X2)
MOV X10, 64(X2)
MOV X11, 72(X2)
MOV X12, 80(X2)
MOV X13, 88(X2)
MOV X14, 96(X2)
MOV X15, 104(X2)
MOV X16, 112(X2)
MOV X17, 120(X2)
MOV X18, 128(X2)
MOV X19, 136(X2)
MOV X20, 144(X2)
MOV X1, X10 // PC immediately after call to panicBounds
ADD $24, X2, X11 // pointer to save area
CALL runtime路panicBounds64<ABIInternal>(SB)
RET
DATA runtime路mainPC+0(SB)/8,$runtime路main<ABIInternal>(SB)
GLOBL runtime路mainPC(SB),RODATA,$8