Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for I64Store8 (0.23 sec)

  1. src/internal/bytealg/equal_wasm.s

    	I64Load a+0(FP)
    	I64Load b+8(FP)
    	I64Load size+16(FP)
    	Call memeqbody<>(SB)
    	I64Store8 ret+24(FP)
    	RET
    
    // memequal_varlen(a, b unsafe.Pointer) bool
    TEXT runtime·memequal_varlen(SB), NOSPLIT, $0-17
    	Get SP
    	I64Load a+0(FP)
    	I64Load b+8(FP)
    	I64Load 8(CTXT) // compiler stores size at offset 8 in the closure
    	Call memeqbody<>(SB)
    	I64Store8 ret+16(FP)
    	RET
    
    // params: a, b, len
    // ret: 0/1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 00:56:36 UTC 2019
    - 1.1K 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. test/codegen/strings.go

    	//   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)
  5. src/cmd/compile/internal/ssa/_gen/WasmOps.go

    		{name: "I64Load", asm: "I64Load", argLength: 2, reg: gpload, aux: "Int64", typ: "UInt64"},       // read 64-bit integer from address arg0+aux, arg1=mem
    		{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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteWasm.go

    	}
    	return false
    }
    func rewriteValueWasm_OpWasmI64Store8(v *Value) bool {
    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (I64Store8 [off] (I64AddConst [off2] ptr) val mem)
    	// cond: isU32Bit(off+off2)
    	// result: (I64Store8 [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)
  7. 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:    "I64Store8",
    		auxType: auxInt64,
    		argLen:  3,
    		asm:     wasm.AI64Store8,
    		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