Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for badsystemstack (0.42 sec)

  1. src/runtime/stubs.go

    //
    //	... set up y ...
    //	systemstack(func() {
    //		x = bigcall(y)
    //	})
    //	... use x ...
    //
    //go:noescape
    func systemstack(fn func())
    
    //go:nosplit
    //go:nowritebarrierrec
    func badsystemstack() {
    	writeErrStr("fatal: systemstack called from unexpected goroutine")
    }
    
    // memclrNoHeapPointers clears n bytes starting at ptr.
    //
    // Usually you should use typedmemclr. memclrNoHeapPointers should be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/operand_test.go

    	{"LR", "R30"},
    	{"(LR)", "(R30)"},
    	{"R0", "R0"},
    	{"R10", "R10"},
    	{"R11", "R11"},
    	{"R18_PLATFORM", "R18"},
    	{"$4503601774854144.0", "$(4503601774854144.0)"},
    	{"$runtime·badsystemstack(SB)", "$runtime.badsystemstack(SB)"},
    	{"ZR", "ZR"},
    	{"(ZR)", "(ZR)"},
    	{"(R29, RSP)", "(R29, RSP)"},
    	{"[):[o-FP", ""}, // Issue 12469 - asm hung parsing the o-FP range on non ARM platforms.
    }
    
    var mips64OperandTests = []operandTest{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
Back to top