Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for I64Store16 (0.27 sec)

  1. test/codegen/strings.go

    	// amd64:`MOVW\t\$12592, \(`,`MOVB\t\$50, 2\(`
    	//   386:`MOVW\t\$12592, \(`,`MOVB\t\$50, 2\(`
    	//   arm:`MOVW\t\$48`,`MOVW\t\$49`,`MOVW\t\$50`
    	// arm64:`MOVD\t\$12592`,`MOVD\t\$50`
    	//  wasm:`I64Const\t\$12592`,`I64Store16\t\$0`,`I64Const\t\$50`,`I64Store8\t\$2`
    	// mips64:`MOVV\t\$48`,`MOVV\t\$49`,`MOVV\t\$50`
    	bsink = []byte("012")
    
    	// 858927408 = 0x33323130
    	//     13620 = 0x3534
    	// amd64:`MOVL\t\$858927408`,`MOVW\t\$13620, 4\(`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 26 17:17:28 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/Wasm.rules

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

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

    	}
    	return false
    }
    func rewriteValueWasm_OpWasmI64Store16(v *Value) bool {
    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (I64Store16 [off] (I64AddConst [off2] ptr) val mem)
    	// cond: isU32Bit(off+off2)
    	// result: (I64Store16 [off+off2] ptr val mem)
    	for {
    		off := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpWasmI64AddConst {
    			break
    		}
    		off2 := auxIntToInt64(v_0.AuxInt)
    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:    "I64Store16",
    		auxType: auxInt64,
    		argLen:  3,
    		asm:     wasm.AI64Store16,
    		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