Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for reflectcallmove (0.13 sec)

  1. src/runtime/asm_ppc64x.s

    	SUB	R6, R4;				\
    	BL	callRet<>(SB);			\
    	RET
    
    // callRet copies return values back at the end of call*. This is a
    // separate function so it can allocate stack space for the arguments
    // to reflectcallmove. It does not follow the Go ABI; it expects its
    // arguments in registers.
    TEXT callRet<>(SB), NOSPLIT, $40-0
    	NO_LOCAL_POINTERS
    	MOVD	R7, FIXED_FRAME+0(R1)
    	MOVD	R3, FIXED_FRAME+8(R1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  2. src/runtime/asm_arm64.s

    	SUB	R6, R4;				\
    	BL	callRet<>(SB);			\
    	RET
    
    // callRet copies return values back at the end of call*. This is a
    // separate function so it can allocate stack space for the arguments
    // to reflectcallmove. It does not follow the Go ABI; it expects its
    // arguments in registers.
    TEXT callRet<>(SB), NOSPLIT, $48-0
    	NO_LOCAL_POINTERS
    	STP	(R7, R3), 8(RSP)
    	STP	(R5, R4), 24(RSP)
    	MOVD	R20, 40(RSP)
    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_amd64.s

    	SUBQ	BX, CX;				\
    	CALL	callRet<>(SB);			\
    	RET
    
    // callRet copies return values back at the end of call*. This is a
    // separate function so it can allocate stack space for the arguments
    // to reflectcallmove. It does not follow the Go ABI; it expects its
    // arguments in registers.
    TEXT callRet<>(SB), NOSPLIT, $40-0
    	NO_LOCAL_POINTERS
    	MOVQ	DX, 0(SP)
    	MOVQ	DI, 8(SP)
    	MOVQ	SI, 16(SP)
    	MOVQ	CX, 24(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