Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for isPowerOfTwo64 (0.2 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (MUL x (MOVDconst [1])) => x
    (MUL x (MOVDconst [c])) && isPowerOfTwo64(c) => (SLLconst [log64(c)] x)
    (MUL x (MOVDconst [c])) && isPowerOfTwo64(c-1) && c >= 3 => (ADDshiftLL x x [log64(c-1)])
    (MUL x (MOVDconst [c])) && isPowerOfTwo64(c+1) && c >= 7 => (ADDshiftLL (NEG <x.Type> x) x [log64(c+1)])
    (MUL x (MOVDconst [c])) && c%3 == 0 && isPowerOfTwo64(c/3) => (SLLconst [log64(c/3)] (ADDshiftLL <x.Type> x x [1]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Mul16 <t> n (Const16 [c])) && isPowerOfTwo16(c) => (Lsh16x64 <t> n (Const64 <typ.UInt64> [log16(c)]))
    (Mul32 <t> n (Const32 [c])) && isPowerOfTwo32(c) => (Lsh32x64 <t> n (Const64 <typ.UInt64> [log32(c)]))
    (Mul64 <t> n (Const64 [c])) && isPowerOfTwo64(c) => (Lsh64x64 <t> n (Const64 <typ.UInt64> [log64(c)]))
    (Mul8  <t> n (Const8  [c])) && t.IsSigned() && isPowerOfTwo8(-c)  => (Neg8  (Lsh8x64  <t> n (Const64 <typ.UInt64> [log8(-c)])))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (DIVVU x (MOVVconst [c]))
    	// cond: isPowerOfTwo64(c)
    	// result: (SRLVconst [log64(c)] x)
    	for {
    		x := v_0
    		if v_1.Op != OpLOONG64MOVVconst {
    			break
    		}
    		c := auxIntToInt64(v_1.AuxInt)
    		if !(isPowerOfTwo64(c)) {
    			break
    		}
    		v.reset(OpLOONG64SRLVconst)
    		v.AuxInt = int64ToAuxInt(log64(c))
    		v.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteMIPS.go

    		}
    		break
    	}
    	// match: (MUL (MOVWconst [c]) x )
    	// cond: isPowerOfTwo64(int64(uint32(c)))
    	// result: (SLLconst [int32(log2uint32(int64(c)))] x)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpMIPSMOVWconst {
    				continue
    			}
    			c := auxIntToInt32(v_0.AuxInt)
    			x := v_1
    			if !(isPowerOfTwo64(int64(uint32(c)))) {
    				continue
    			}
    			v.reset(OpMIPSSLLconst)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    	}
    	// match: (Select0 (DIVVU x (MOVVconst [c])))
    	// cond: isPowerOfTwo64(c)
    	// result: (ANDconst [c-1] x)
    	for {
    		if v_0.Op != OpMIPS64DIVVU {
    			break
    		}
    		_ = v_0.Args[1]
    		x := v_0.Args[0]
    		v_0_1 := v_0.Args[1]
    		if v_0_1.Op != OpMIPS64MOVVconst {
    			break
    		}
    		c := auxIntToInt64(v_0_1.AuxInt)
    		if !(isPowerOfTwo64(c)) {
    			break
    		}
    		v.reset(OpMIPS64ANDconst)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
Back to top