Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for I32WrapI64 (0.11 sec)

  1. src/runtime/memclr_wasm.s

    // func memclrNoHeapPointers(ptr unsafe.Pointer, n uintptr)
    TEXT runtime·memclrNoHeapPointers(SB), NOSPLIT, $0-16
    	MOVD ptr+0(FP), R0
    	MOVD n+8(FP), R1
    
    	Get R0
    	I32WrapI64
    	I32Const $0
    	Get R1
    	I32WrapI64
    	MemoryFill
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 27 10:37:01 UTC 2022
    - 485 bytes
    - Viewed (0)
  2. src/runtime/memmove_wasm.s

    // func memmove(to, from unsafe.Pointer, n uintptr)
    TEXT runtime·memmove(SB), NOSPLIT, $0-24
    	MOVD to+0(FP), R0
    	MOVD from+8(FP), R1
    	MOVD n+16(FP), R2
    
    	Get R0
    	I32WrapI64
    	Get R1
    	I32WrapI64
    	Get R2
    	I32WrapI64
    	MemoryCopy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 27 10:37:01 UTC 2022
    - 479 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/internal/obj/wasm/anames.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. 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