Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Prog64 (0.08 sec)

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

    ((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))
    (SET(NE|EQ) (TESTQ (SHLQ (MOVQconst [1]) x) y)) => (SET(B|AE)  (BTQ x y))
    (SET(NE|EQ) (TESTLconst [c] x)) && isUint32PowerOfTwo(int64(c))
    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/rewrite.go

    	return int64(bits.Len8(uint8(n))) - 1
    }
    func log16(n int16) int64 {
    	return int64(bits.Len16(uint16(n))) - 1
    }
    func log32(n int32) int64 {
    	return int64(bits.Len32(uint32(n))) - 1
    }
    func log64(n int64) int64 {
    	return int64(bits.Len64(uint64(n))) - 1
    }
    
    // log2uint32 returns logarithm in base 2 of uint32(n), with log2(0) = -1.
    // Rounds down.
    func log2uint32(n int64) int64 {
    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