Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for debugPinnerV1 (0.18 sec)

  1. src/runtime/asm_arm64.s

    	SUB	$16, RSP
    	MOVD	R0, 8(RSP) // arg
    	MOVD	$0, 0(RSP) // dummy LR
    	BL	runtime·newproc(SB)
    	ADD	$16, RSP
    
    	// start this M
    	BL	runtime·mstart(SB)
    
    	// Prevent dead-code elimination of debugCallV2 and debugPinnerV1, which are
    	// intended to be called by debuggers.
    	MOVD	$runtime·debugPinnerV1<ABIInternal>(SB), R0
    	MOVD	$runtime·debugCallV2<ABIInternal>(SB), R0
    
    	MOVD	$0, R0
    	MOVD	R0, (R0)	// boom
    	UNDEF
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. src/runtime/asm_ppc64x.s

    	MOVDU	R0, -8(R1)
    	MOVDU	R0, -8(R1)
    	MOVDU	R0, -8(R1)
    	BL	runtime·newproc(SB)
    	ADD	$(8+FIXED_FRAME), R1
    
    	// start this M
    	BL	runtime·mstart(SB)
    	// Prevent dead-code elimination of debugCallV2 and debugPinnerV1, which are
    	// intended to be called by debuggers.
    #ifdef GOARCH_ppc64le
    	MOVD	$runtime·debugPinnerV1<ABIInternal>(SB), R31
    	MOVD	$runtime·debugCallV2<ABIInternal>(SB), R31
    #endif
    	MOVD	R0, 0(R0)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
Back to top