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

/external/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp242 // Check whether (or Op (and X InsertMask)) is effectively an insertion
243 // of X into bits InsertMask of some Y != Op. Return true if so and
245 bool detectOrAndInsertion(SDValue &Op, uint64_t InsertMask);
591 uint64_t InsertMask) {
605 if (InsertMask & AndMask)
611 if (Used != (AndMask | InsertMask)) {
614 if (Used != (AndMask | InsertMask | KnownZero.getZExtValue()))
590 detectOrAndInsertion(SDValue &Op, uint64_t InsertMask) argument
/external/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp410 unsigned InsertMask = RKZ.getZExtValue(); local
412 if ((TargetMask | InsertMask) == 0xFFFFFFFF) {
417 InsertMask = ~InsertMask;
428 std::swap(TargetMask, InsertMask);
436 std::swap(TargetMask, InsertMask);
441 if (isRunOfOnes(InsertMask, MB, ME)) {
454 // otherwise there would not be any bits set in InsertMask.

Completed in 84 milliseconds