Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for I64Store16 (0.07 sec)

  1. 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)
Back to top