Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for shiftIsBounded (0.45 sec)

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

    				continue
    			}
    			v.reset(OpRotateLeft16)
    			v.AddArg2(x, y)
    			return true
    		}
    		break
    	}
    	// match: (Add16 left:(Lsh16x32 x y) right:(Rsh16Ux32 x (Sub32 (Const32 [16]) y)))
    	// cond: (shiftIsBounded(left) || shiftIsBounded(right)) && canRotate(config, 16)
    	// result: (RotateLeft16 x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM64.go

    	// match: (Lsh16x16 <t> x y)
    	// cond: shiftIsBounded(v)
    	// result: (SLL <t> x y)
    	for {
    		t := v.Type
    		x := v_0
    		y := v_1
    		if !(shiftIsBounded(v)) {
    			break
    		}
    		v.reset(OpARM64SLL)
    		v.Type = t
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (Lsh16x16 <t> x y)
    	// cond: !shiftIsBounded(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
Back to top