Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for POP_REGS_HOST_TO_ABI0 (0.32 sec)

  1. src/runtime/sys_windows_amd64.s

    	ADJSP	$16
    	MOVQ	CX, AX
    	MOVQ	DX, BX
    	// Calling ABIInternal because TLS might be nil.
    	CALL	runtime·sigtrampgo<ABIInternal>(SB)
    	// Return value is already stored in AX.
    
    	ADJSP	$-16
    
    	POP_REGS_HOST_TO_ABI0()
    	RET
    
    // Trampoline to resume execution from exception handler.
    // This is part of the control flow guard workaround.
    // It switches stacks and jumps to the continuation address.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. src/runtime/cgo/asm_amd64.s

    	MOVQ	CX, 0x10(SP)	/* ctxt */
    #else
    	MOVQ	CX, 0x0(SP)	/* fn */
    	MOVQ	DX, 0x8(SP)	/* arg */
    	// Skip n in R8.
    	MOVQ	R9, 0x10(SP)	/* ctxt */
    #endif
    
    	CALL	runtime·cgocallback(SB)
    
    	ADJSP	$-0x18
    	POP_REGS_HOST_TO_ABI0()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/runtime/sys_darwin_amd64.s

    	ADJSP   $24
    
    	// Call into the Go signal handler
    	MOVQ	DI, AX	// sig
    	MOVQ	SI, BX	// info
    	MOVQ	DX, CX	// ctx
    	CALL	·sigtrampgo<ABIInternal>(SB)
    
    	ADJSP	$-24
    
    	POP_REGS_HOST_TO_ABI0()
    	RET
    
    // Called using C ABI.
    TEXT runtime·sigprofNonGoWrapper<>(SB),NOSPLIT|NOFRAME,$0
    	// Transition from C ABI to Go ABI.
    	PUSH_REGS_HOST_TO_ABI0()
    
    	// Call into the Go signal handler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  4. src/runtime/race_amd64.s

    	POPQ	R12
    	POPQ	R12
    	// All registers are smashed after Go code, reload.
    	get_tls(R12)
    	MOVQ	g(R12), R13
    	MOVQ	g_m(R13), R13
    	MOVQ	m_curg(R13), R14
    	MOVQ	R14, g(R12)	// g = m->curg
    ret:
    	POP_REGS_HOST_TO_ABI0()
    	RET
    
    noswitch:
    	// already on g0
    	PUSHQ	RARG1	// func arg
    	PUSHQ	RARG0	// func arg
    	CALL	runtime·racecallback(SB)
    	POPQ	R12
    	POPQ	R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    	MOVQ	BX, SP
    	JMP	restore
    
    nocgo:
    	ADJSP	$16
    	MOVQ	$0x800000, 0(SP)		// stacksize
    	MOVQ	$_rt0_amd64_lib_go(SB), AX
    	MOVQ	AX, 8(SP)			// fn
    	CALL	runtime·newosproc0(SB)
    	ADJSP	$-16
    
    restore:
    	POP_REGS_HOST_TO_ABI0()
    	RET
    
    // _rt0_amd64_lib_go initializes the Go runtime.
    // This is started in a separate thread by _rt0_amd64_lib.
    TEXT _rt0_amd64_lib_go(SB),NOSPLIT,$0
    	MOVQ	_rt0_amd64_lib_argc<>(SB), DI
    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