Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for debugCall256 (0.25 sec)

  1. src/runtime/debugcall.go

    		f := findfunc(pc)
    		if !f.valid() {
    			ret = debugCallUnknownFunc
    			return
    		}
    
    		name := funcname(f)
    
    		switch name {
    		case "debugCall32",
    			"debugCall64",
    			"debugCall128",
    			"debugCall256",
    			"debugCall512",
    			"debugCall1024",
    			"debugCall2048",
    			"debugCall4096",
    			"debugCall8192",
    			"debugCall16384",
    			"debugCall32768",
    			"debugCall65536":
    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

    	JMP	restore
    
    	MOVD	256(RSP), R0 // the argument frame size
    	DEBUG_CALL_DISPATCH(debugCall32<>, 32)
    	DEBUG_CALL_DISPATCH(debugCall64<>, 64)
    	DEBUG_CALL_DISPATCH(debugCall128<>, 128)
    	DEBUG_CALL_DISPATCH(debugCall256<>, 256)
    	DEBUG_CALL_DISPATCH(debugCall512<>, 512)
    	DEBUG_CALL_DISPATCH(debugCall1024<>, 1024)
    	DEBUG_CALL_DISPATCH(debugCall2048<>, 2048)
    	DEBUG_CALL_DISPATCH(debugCall4096<>, 4096)
    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

    	// the argument frame size
    	MOVD	128(R1), R26
    
    	DEBUG_CALL_DISPATCH(debugCall32<>, 32)
    	DEBUG_CALL_DISPATCH(debugCall64<>, 64)
    	DEBUG_CALL_DISPATCH(debugCall128<>, 128)
    	DEBUG_CALL_DISPATCH(debugCall256<>, 256)
    	DEBUG_CALL_DISPATCH(debugCall512<>, 512)
    	DEBUG_CALL_DISPATCH(debugCall1024<>, 1024)
    	DEBUG_CALL_DISPATCH(debugCall2048<>, 2048)
    	DEBUG_CALL_DISPATCH(debugCall4096<>, 4096)
    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

    	JMP	restore
    
    	MOVQ	frameSize-128(SP), AX
    	DEBUG_CALL_DISPATCH(debugCall32<>, 32)
    	DEBUG_CALL_DISPATCH(debugCall64<>, 64)
    	DEBUG_CALL_DISPATCH(debugCall128<>, 128)
    	DEBUG_CALL_DISPATCH(debugCall256<>, 256)
    	DEBUG_CALL_DISPATCH(debugCall512<>, 512)
    	DEBUG_CALL_DISPATCH(debugCall1024<>, 1024)
    	DEBUG_CALL_DISPATCH(debugCall2048<>, 2048)
    	DEBUG_CALL_DISPATCH(debugCall4096<>, 4096)
    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