Searched refs:InsertMask (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp270 // Check whether (or Op (and X InsertMask)) is effectively an insertion
271 // of X into bits InsertMask of some Y != Op. Return true if so and
273 bool detectOrAndInsertion(SDValue &Op, uint64_t InsertMask) const;
722 uint64_t InsertMask) const {
735 if (InsertMask & AndMask)
741 if (Used != (AndMask | InsertMask)) {
743 if (Used != (AndMask | InsertMask | Known.Zero.getZExtValue()))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp724 unsigned InsertMask = RKnown.Zero.getZExtValue(); local
726 if ((TargetMask | InsertMask) == 0xFFFFFFFF) {
731 InsertMask = ~InsertMask;
742 std::swap(TargetMask, InsertMask);
750 std::swap(TargetMask, InsertMask);
755 if (isRunOfOnes(InsertMask, MB, ME)) {
766 bool CanFoldMask = InsertMask == MKnown.One.getZExtValue();
772 // otherwise there would not be any bits set in InsertMask.

Completed in 98 milliseconds