Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for debugCall32768 (0.18 sec)

  1. src/runtime/debugcall.go

    		case "debugCall32",
    			"debugCall64",
    			"debugCall128",
    			"debugCall256",
    			"debugCall512",
    			"debugCall1024",
    			"debugCall2048",
    			"debugCall4096",
    			"debugCall8192",
    			"debugCall16384",
    			"debugCall32768",
    			"debugCall65536":
    			// These functions are allowed so that the debugger can initiate multiple function calls.
    			// See: https://golang.org/cl/161137/
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/runtime/asm_arm64.s

    	DEBUG_CALL_DISPATCH(debugCall2048<>, 2048)
    	DEBUG_CALL_DISPATCH(debugCall4096<>, 4096)
    	DEBUG_CALL_DISPATCH(debugCall8192<>, 8192)
    	DEBUG_CALL_DISPATCH(debugCall16384<>, 16384)
    	DEBUG_CALL_DISPATCH(debugCall32768<>, 32768)
    	DEBUG_CALL_DISPATCH(debugCall65536<>, 65536)
    	// The frame size is too large. Report the error.
    	MOVD	$debugCallFrameTooLarge<>(SB), R0
    	MOVD	R0, 8(RSP)
    	MOVD	$20, R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  3. src/runtime/asm_ppc64x.s

    	DEBUG_CALL_DISPATCH(debugCall2048<>, 2048)
    	DEBUG_CALL_DISPATCH(debugCall4096<>, 4096)
    	DEBUG_CALL_DISPATCH(debugCall8192<>, 8192)
    	DEBUG_CALL_DISPATCH(debugCall16384<>, 16384)
    	DEBUG_CALL_DISPATCH(debugCall32768<>, 32768)
    	DEBUG_CALL_DISPATCH(debugCall65536<>, 65536)
    	// The frame size is too large. Report the error.
    	MOVD	$debugCallFrameTooLarge<>(SB), R22
    	MOVD	R22, 32(R1)
    	MOVD	$20, R22
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  4. src/runtime/asm_amd64.s

    	DEBUG_CALL_DISPATCH(debugCall2048<>, 2048)
    	DEBUG_CALL_DISPATCH(debugCall4096<>, 4096)
    	DEBUG_CALL_DISPATCH(debugCall8192<>, 8192)
    	DEBUG_CALL_DISPATCH(debugCall16384<>, 16384)
    	DEBUG_CALL_DISPATCH(debugCall32768<>, 32768)
    	DEBUG_CALL_DISPATCH(debugCall65536<>, 65536)
    	// The frame size is too large. Report the error.
    	MOVQ	$debugCallFrameTooLarge<>(SB), AX
    	MOVQ	AX, 0(SP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top