ADDV $8, R3
JMP (R4)
+// func switchToCrashStack0(fn func())
+TEXT runtime·switchToCrashStack0(SB), NOSPLIT, $0-8
+ MOVV fn+0(FP), REGCTXT // context register
+ MOVV g_m(g), R4 // curm
+
+ // set g to gcrash
+ MOVV $runtime·gcrash(SB), g // g = &gcrash
+ JAL runtime·save_g(SB)
+ MOVV R4, g_m(g) // g.m = curm
+ MOVV g, m_g0(R4) // curm.g0 = g
+
+ // switch to crashstack
+ MOVV (g_stack+stack_hi)(g), R4
+ ADDV $(-4*8), R4, R3
+
+ // call target function
+ MOVV 0(REGCTXT), R6
+ JAL (R6)
+
+ // should never return
+ JAL runtime·abort(SB)
+ UNDEF
+
/*
* support for morestack
*/
// calling the scheduler calling newm calling gc), so we must
// record an argument size. For that purpose, it has no arguments.
TEXT runtime·morestack(SB),NOSPLIT|NOFRAME,$0-0
+ // Called from f.
+ // Set g->sched to context in f.
+ MOVV R3, (g_sched+gobuf_sp)(g)
+ MOVV R1, (g_sched+gobuf_pc)(g)
+ MOVV R31, (g_sched+gobuf_lr)(g)
+ MOVV REGCTXT, (g_sched+gobuf_ctxt)(g)
+
// Cannot grow scheduler stack (m->g0).
MOVV g_m(g), R7
MOVV m_g0(R7), R8
JAL runtime·badmorestackgsignal(SB)
JAL runtime·abort(SB)
- // Called from f.
- // Set g->sched to context in f.
- MOVV R3, (g_sched+gobuf_sp)(g)
- MOVV R1, (g_sched+gobuf_pc)(g)
- MOVV R31, (g_sched+gobuf_lr)(g)
- MOVV REGCTXT, (g_sched+gobuf_ctxt)(g)
-
// Called from f.
// Set m->morebuf to f's caller.
MOVV R31, (m_morebuf+gobuf_pc)(R7) // f's caller's PC
// Disable crash stack on Windows for now. Apparently, throwing an exception
// on a non-system-allocated crash stack causes EXCEPTION_STACK_OVERFLOW and
// hangs the process (see issue 63938).
-const crashStackImplemented = (GOARCH == "amd64" || GOARCH == "arm64" || GOARCH == "mips64" || GOARCH == "mips64le" || GOARCH == "ppc64" || GOARCH == "ppc64le" || GOARCH == "riscv64" || GOARCH == "s390x" || GOARCH == "wasm") && GOOS != "windows"
+const crashStackImplemented = (GOARCH == "amd64" || GOARCH == "arm64" || GOARCH == "loong64" || GOARCH == "mips64" || GOARCH == "mips64le" || GOARCH == "ppc64" || GOARCH == "ppc64le" || GOARCH == "riscv64" || GOARCH == "s390x" || GOARCH == "wasm") && GOOS != "windows"
//go:noescape
func switchToCrashStack0(fn func()) // in assembly