Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for debugCallPanicked (0.17 sec)

  1. src/runtime/debugcall.go

    // license that can be found in the LICENSE file.
    
    // Though the debug call function feature is not enabled on
    // ppc64, inserted ppc64 to avoid missing Go declaration error
    // for debugCallPanicked while building runtime.test
    //go:build amd64 || arm64 || ppc64le || ppc64
    
    package runtime
    
    import (
    	"internal/abi"
    	"unsafe"
    )
    
    const (
    	debugCallSystemStack = "executing on Go runtime stack"
    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_FN(debugCall4096<>, 4096)
    DEBUG_CALL_FN(debugCall8192<>, 8192)
    DEBUG_CALL_FN(debugCall16384<>, 16384)
    DEBUG_CALL_FN(debugCall32768<>, 32768)
    DEBUG_CALL_FN(debugCall65536<>, 65536)
    
    // func debugCallPanicked(val interface{})
    TEXT runtime·debugCallPanicked(SB),NOSPLIT,$16-16
    	// Copy the panic value to the top of stack at SP+8.
    	MOVD	val_type+0(FP), R0
    	MOVD	R0, 8(RSP)
    	MOVD	val_data+8(FP), 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_FN(debugCall8192<>, 8192)
    DEBUG_CALL_FN(debugCall16384<>, 16384)
    DEBUG_CALL_FN(debugCall32768<>, 32768)
    DEBUG_CALL_FN(debugCall65536<>, 65536)
    
    #ifdef GOARCH_ppc64le
    // func debugCallPanicked(val interface{})
    TEXT runtime·debugCallPanicked(SB),NOSPLIT,$32-16
    	// Copy the panic value to the top of stack at SP+32.
    	MOVD	val_type+0(FP), R31
    	MOVD	R31, 32(R1)
    	MOVD	val_data+8(FP), R31
    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_FN(debugCall4096<>, 4096)
    DEBUG_CALL_FN(debugCall8192<>, 8192)
    DEBUG_CALL_FN(debugCall16384<>, 16384)
    DEBUG_CALL_FN(debugCall32768<>, 32768)
    DEBUG_CALL_FN(debugCall65536<>, 65536)
    
    // func debugCallPanicked(val interface{})
    TEXT runtime·debugCallPanicked(SB),NOSPLIT,$16-16
    	// Copy the panic value to the top of stack.
    	MOVQ	val_type+0(FP), AX
    	MOVQ	AX, 0(SP)
    	MOVQ	val_data+8(FP), AX
    	MOVQ	AX, 8(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