Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for I64Store32 (0.31 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. test/codegen/strings.go

    	//     13620 = 0x3534
    	// amd64:`MOVL\t\$858927408`,`MOVW\t\$13620, 4\(`
    	//   386:`MOVL\t\$858927408`,`MOVW\t\$13620, 4\(`
    	// arm64:`MOVD\t\$858927408`,`MOVD\t\$13620`
    	//  wasm:`I64Const\t\$858927408`,`I64Store32\t\$0`,`I64Const\t\$13620`,`I64Store16\t\$4`
    	bsink = []byte("012345")
    
    	// 3978425819141910832 = 0x3736353433323130
    	// 7306073769690871863 = 0x6564636261393837
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 26 17:17:28 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/WasmOps.go

    		{name: "I64Store16", asm: "I64Store16", argLength: 3, reg: gpstore, aux: "Int64", typ: "Mem"},   // store 16-bit integer arg1 at address arg0+aux, arg2=mem, returns mem
    		{name: "I64Store32", asm: "I64Store32", argLength: 3, reg: gpstore, aux: "Int64", typ: "Mem"},   // store 32-bit integer arg1 at address arg0+aux, arg2=mem, returns 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)
  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)
    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

    				{0, 1407374883618815}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 SP SB
    			},
    		},
    	},
    	{
    		name:    "I64Store32",
    		auxType: auxInt64,
    		argLen:  3,
    		asm:     wasm.AI64Store32,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{1, 281474976776191},  // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 SP
    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