Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for I64Load32U (0.22 sec)

  1. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (Move [5] dst src mem) =>
    	(I64Store8 [4] dst (I64Load8U [4] src mem)
    		(I64Store32 dst (I64Load32U src mem) mem))
    (Move [6] dst src mem) =>
    	(I64Store16 [4] dst (I64Load16U [4] src mem)
    		(I64Store32 dst (I64Load32U src mem) mem))
    (Move [7] dst src mem) =>
    	(I64Store32 [3] dst (I64Load32U [3] src mem)
    		(I64Store32 dst (I64Load32U src mem) mem))
    (Move [s] dst src mem) && s > 8 && s < 16 =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/compile/internal/ssa/_gen/WasmOps.go

    		{name: "I64Load16S", asm: "I64Load16S", argLength: 2, reg: gpload, aux: "Int64", typ: "Int16"},  // read signed 16-bit integer from address arg0+aux, arg1=mem
    		{name: "I64Load32U", asm: "I64Load32U", argLength: 2, reg: gpload, aux: "Int64", typ: "UInt32"}, // read unsigned 32-bit integer from address arg0+aux, arg1=mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  4. src/runtime/asm_wasm.s

    	Get CTXT; \
    	I32WrapI64; \
    	I64Load $0; \
    	CALL; \
    	\
    	I64Load32U stackRetOffset+28(FP); \
    	Set R0; \
    	\
    	MOVD stackArgsType+0(FP), RET0; \
    	\
    	I64Load stackArgs+16(FP); \
    	Get R0; \
    	I64Add; \
    	Set RET1; \
    	\
    	Get SP; \
    	I64ExtendI32U; \
    	Get R0; \
    	I64Add; \
    	Set RET2; \
    	\
    	I64Load32U stackArgsSize+24(FP); \
    	Get R0; \
    	I64Sub; \
    	Set RET3; \
    	\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:26:51 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteWasm.go

    		v2.AddArg2(src, mem)
    		v1.AddArg3(dst, v2, mem)
    		v.AddArg3(dst, v0, v1)
    		return true
    	}
    	// match: (Move [7] dst src mem)
    	// result: (I64Store32 [3] dst (I64Load32U [3] src mem) (I64Store32 dst (I64Load32U src mem) mem))
    	for {
    		if auxIntToInt64(v.AuxInt) != 7 {
    			break
    		}
    		dst := v_0
    		src := v_1
    		mem := v_2
    		v.reset(OpWasmI64Store32)
    		v.AuxInt = int64ToAuxInt(3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/opGen.go

    			},
    			outputs: []outputInfo{
    				{0, 65535}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15
    			},
    		},
    	},
    	{
    		name:    "I64Load32U",
    		auxType: auxInt64,
    		argLen:  2,
    		asm:     wasm.AI64Load32U,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 1407374883618815}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 SP SB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top