Home
last modified time | relevance | path

Searched refs:isPowerOfTwo16 (Results 1 – 3 of 3) sorted by relevance

/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/compile/internal/ssa/gen/
H A Dgeneric.rules174 (Mul16 <t> n (Const16 [c])) && isPowerOfTwo16(c) => (Lsh16x64 <t> n (Const64 <typ.UInt64> [log16(c)…
178 (Mul16 <t> n (Const16 [c])) && t.IsSigned() && isPowerOfTwo16(-c) => (Neg16 (Lsh16x64 <t> n (Const6…
946 (Div16u n (Const16 [c])) && isPowerOfTwo16(c) => (Rsh16Ux64 n (Const64 <typ.UInt64> [log16(c)]))
953 (Div16 n (Const16 [c])) && isNonNegative(n) && isPowerOfTwo16(c) => (Rsh16Ux64 n (Const64 <typ.UInt…
1135 (Div16 <t> n (Const16 [c])) && isPowerOfTwo16(c) =>
1226 (Mod16u <t> n (Const16 [c])) && isPowerOfTwo16(c) => (And16 n (Const16 <t> [c-1]))
1233 (Mod16 <t> n (Const16 [c])) && isNonNegative(n) && isPowerOfTwo16(c) => (And16 n (Const16 <t> [c-1]…
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/compile/internal/ssa/
H A Drewrite.go471 func isPowerOfTwo16(n int16) bool { func
H A Drewritegeneric.go4396 if !(isNonNegative(n) && isPowerOfTwo16(c)) {
4454 if !(isPowerOfTwo16(c)) {
4541 if !(isPowerOfTwo16(c)) {
12073 if !(isNonNegative(n) && isPowerOfTwo16(c)) {
12160 if !(isPowerOfTwo16(c)) {
14081 if !(isPowerOfTwo16(c)) {
14104 if !(t.IsSigned() && isPowerOfTwo16(-c)) {