Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for I32WrapI64 (0.18 sec)

  1. src/runtime/asm_wasm.s

    	MOVW stackArgsSize+24(FP), R0; \
    	\
    	Get R0; \
    	I64Eqz; \
    	Not; \
    	If; \
    		Get SP; \
    		I64Load stackArgs+16(FP); \
    		I32WrapI64; \
    		I64Load stackArgsSize+24(FP); \
    		I32WrapI64; \
    		MemoryCopy; \
    	End; \
    	\
    	MOVD f+8(FP), CTXT; \
    	Get CTXT; \
    	I32WrapI64; \
    	I64Load $0; \
    	CALL; \
    	\
    	I64Load32U stackRetOffset+28(FP); \
    	Set R0; \
    	\
    	MOVD stackArgsType+0(FP), RET0; \
    	\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:26:51 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. test/codegen/comparisons.go

    	// ppc64x:"ANDCC",-"CMPW"
    	// wasm:"I64Eqz",-"I32Eqz",-"I64ExtendI32U",-"I32WrapI64"
    	if a&63 == 0 {
    		return 1
    	}
    
    	// ppc64x:"ANDCC",-"CMP"
    	// wasm:"I64Eqz",-"I32Eqz",-"I64ExtendI32U",-"I32WrapI64"
    	if d&255 == 0 {
    		return 1
    	}
    
    	// ppc64x:"ANDCC",-"CMP"
    	// wasm:"I64Eqz",-"I32Eqz",-"I64ExtendI32U",-"I32WrapI64"
    	if d&e == 0 {
    		return 1
    	}
    	// ppc64x:"ORCC",-"CMP"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/wasm/wasmobj.go

    	s.Size = pc + 1
    
    	if needMoreStack {
    		p := pMorestack
    
    		if framesize <= abi.StackSmall {
    			// small stack: SP <= stackguard
    			// Get SP
    			// Get g
    			// I32WrapI64
    			// I32Load $stackguard0
    			// I32GtU
    
    			p = appendp(p, AGet, regAddr(REG_SP))
    			p = appendp(p, AGet, regAddr(REGG))
    			p = appendp(p, AI32WrapI64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
Back to top