Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isUint64PowerOfTwo (0.2 sec)

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

    ((NE|EQ) (TESTLconst [c] x)) && isUint32PowerOfTwo(int64(c))
        => ((ULT|UGE) (BTLconst [int8(log32(c))] x))
    ((NE|EQ) (TESTQconst [c] x)) && isUint64PowerOfTwo(int64(c))
        => ((ULT|UGE) (BTQconst [int8(log32(c))] x))
    ((NE|EQ) (TESTQ (MOVQconst [c]) x)) && isUint64PowerOfTwo(c)
        => ((ULT|UGE) (BTQconst [int8(log64(c))] x))
    (SET(NE|EQ) (TESTL (SHLL (MOVLconst [1]) x) y)) => (SET(B|AE)  (BTL x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		break
    	}
    	// match: (ANDQ (MOVQconst [c]) x)
    	// cond: isUint64PowerOfTwo(^c) && uint64(^c) >= 1<<31
    	// result: (BTRQconst [int8(log64(^c))] x)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpAMD64MOVQconst {
    				continue
    			}
    			c := auxIntToInt64(v_0.AuxInt)
    			x := v_1
    			if !(isUint64PowerOfTwo(^c) && uint64(^c) >= 1<<31) {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    }
    func isPowerOfTwo32(n int32) bool {
    	return n > 0 && n&(n-1) == 0
    }
    func isPowerOfTwo64(n int64) bool {
    	return n > 0 && n&(n-1) == 0
    }
    
    // isUint64PowerOfTwo reports whether uint64(n) is a power of 2.
    func isUint64PowerOfTwo(in int64) bool {
    	n := uint64(in)
    	return n > 0 && n&(n-1) == 0
    }
    
    // isUint32PowerOfTwo reports whether uint32(n) is a power of 2.
    func isUint32PowerOfTwo(in int64) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top