How to understand systemstack

I read runtime code, but i can’t understand the following code
// switch to g0
MOVQ DX, g(CX)
MOVQ (g_sched+gobuf_sp)(DX), BX
// make it look like mstart called systemstack on g0, to stop traceback
SUBQ $8, BX
MOVQ $runtime·mstart(SB), DX
MOVQ DX, 0(BX)
MOVQ BX, SP

what dose move runtime·mstart to statck means,could someone help me

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.