Lines Matching full:bswap
1279 /// capable of providing pieces of a bswap. The subexpression provides pieces
1280 /// of a bswap if it is proven that each of the non-zero bytes in the output of
1284 /// of the bswap result and that all other bytes are zero. This expression is
1304 // If this is an or instruction, it may be an inner node of the bswap.
1375 // the input value to the bswap. Some observations: 1) if more than one byte
1393 // together, which isn't a bswap (unless it's an or of the same bits).
1400 /// MatchBSwap - Given an OR instruction, check to see if this is a bswap idiom.
1401 /// If so, insert the new bswap intrinsic and return it.
1407 return 0; // Can only bswap pairs of bytes. Can't do vectors.
1414 // Try to find all the pieces corresponding to the bswap.
1428 Function *F = Intrinsic::getDeclaration(M, Intrinsic::bswap, ITy);
1831 // (A | B) | C and A | (B | C) -> bswap if possible.
1832 // (A >> B) | (C << D) and (A << B) | (B >> C) -> bswap if possible.
1837 if (Instruction *BSwap = MatchBSwap(I))
1838 return BSwap;