Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sigpanic0 (0.09 sec)

  1. src/runtime/asm_amd64.s

    	RET
    
    // Initialize special registers then jump to sigpanic.
    // This function is injected from the signal handler for panicking
    // signals. It is quite painful to set X15 in the signal context,
    // so we do it here.
    TEXT ·sigpanic0(SB),NOSPLIT,$0-0
    	get_tls(R14)
    	MOVQ	g(R14), R14
    #ifndef GOOS_plan9
    	XORPS	X15, X15
    #endif
    	JMP	·sigpanic<ABIInternal>(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    		frame.varp -= goarch.PtrSize
    	}
    
    	frame.argp = frame.fp + sys.MinFrameSize
    
    	// Determine frame's 'continuation PC', where it can continue.
    	// Normally this is the return address on the stack, but if sigpanic
    	// is immediately below this function on the stack, then the frame
    	// stopped executing due to a trap, and frame.pc is probably not
    	// a safe point for looking up liveness information. In this panicking case,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top