Searched refs:Swapped (Results 1 - 6 of 6) sorted by relevance

/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackend.cpp298 uint32_t Swapped = (Value & 0xFFFF0000) >> 16; local
299 Swapped |= (Value & 0x0000FFFF) << 16;
300 return Swapped;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1445 bool Swapped = false; local
1454 Swapped = false;
1461 Swapped = false;
1470 Swapped = true;
1477 Swapped = true;
1499 if (Swapped)
/external/llvm/lib/Transforms/Scalar/
H A DLoopRerollPass.cpp1183 bool Swapped = false, SomeOpMatched = false; local
1207 if (BaseInst->getOperand(Swapped ? unsigned(!j) : j) != Op2) {
1213 if (!Swapped && BaseInst->isCommutative() && !SomeOpMatched &&
1215 Swapped = true;
/external/clang/lib/CodeGen/
H A DCodeGenPGO.cpp628 uint64_t Swapped = endian::byte_swap<uint64_t, little>(Working);
629 MD5.update(llvm::makeArrayRef((uint8_t *)&Swapped, sizeof(Swapped)));
H A DTargetInfo.cpp6394 /// cached encoding is 'Swapped' out, as it may be incorrect, and...
6417 std::string Swapped; // A temporary place holder for a Recursive encoding
6526 E.Swapped.swap(E.Str); // swap out the Recursive
6551 if (E.Swapped.empty())
6555 E.Swapped.swap(E.Str);
6556 E.Swapped.clear();
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp8641 bool Swapped = false;
8644 Swapped = true;
8709 if (Swapped)
8759 if (Swapped)
8789 X1 = (AM == ISD::PRE_DEC && !Swapped) ? -1 : 1;
8790 Y1 = (AM == ISD::PRE_DEC && Swapped) ? -1 : 1;

Completed in 569 milliseconds