HomeSort by relevance Sort by last modified time
    Searched refs:InsertMask (Results 1 - 5 of 5) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 385 unsigned InsertMask = RKZ.getZExtValue();
387 if ((TargetMask | InsertMask) == 0xFFFFFFFF) {
392 InsertMask = ~InsertMask;
403 std::swap(TargetMask, InsertMask);
411 std::swap(TargetMask, InsertMask);
416 if (InsertMask && isRunOfOnes(InsertMask, MB, ME)) {
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 269 // Check whether (or Op (and X InsertMask)) is effectively an insertion
270 // of X into bits InsertMask of some Y != Op. Return true if so and
272 bool detectOrAndInsertion(SDValue &Op, uint64_t InsertMask) const;
694 uint64_t InsertMask) const {
707 if (InsertMask & AndMask)
713 if (Used != (AndMask | InsertMask)) {
716 if (Used != (AndMask | InsertMask | KnownZero.getZExtValue()))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 270 // 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;
711 uint64_t InsertMask) const {
724 if (InsertMask & AndMask)
730 if (Used != (AndMask | InsertMask)) {
733 if (Used != (AndMask | InsertMask | Known.Zero.getZExtValue()))
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 523 unsigned InsertMask = RKZ.getZExtValue();
525 if ((TargetMask | InsertMask) == 0xFFFFFFFF) {
530 InsertMask = ~InsertMask;
541 std::swap(TargetMask, InsertMask);
549 std::swap(TargetMask, InsertMask);
554 if (isRunOfOnes(InsertMask, MB, ME)) {
568 bool CanFoldMask = InsertMask == MKO.getZExtValue();
574 // otherwise there would not be any bits set in InsertMask.
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 695 unsigned InsertMask = RKnown.Zero.getZExtValue();
697 if ((TargetMask | InsertMask) == 0xFFFFFFFF) {
702 InsertMask = ~InsertMask;
713 std::swap(TargetMask, InsertMask);
721 std::swap(TargetMask, InsertMask);
726 if (isRunOfOnes(InsertMask, MB, ME)) {
738 bool CanFoldMask = InsertMask == MKnown.One.getZExtValue();
744 // otherwise there would not be any bits set in InsertMask.
    [all...]

Completed in 1344 milliseconds