Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for I64Shl (0.17 sec)

  1. src/cmd/compile/internal/ssa/rewriteWasm.go

    	// match: (Lsh64x64 x y)
    	// cond: shiftIsBounded(v)
    	// result: (I64Shl x y)
    	for {
    		x := v_0
    		y := v_1
    		if !(shiftIsBounded(v)) {
    			break
    		}
    		v.reset(OpWasmI64Shl)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (Lsh64x64 x (I64Const [c]))
    	// cond: uint64(c) < 64
    	// result: (I64Shl x (I64Const [c]))
    	for {
    		x := v_0
    		if v_1.Op != OpWasmI64Const {
    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