HomeSort by: relevance | last modified time | path
    Searched defs:Swapped (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.cpp 404 uint32_t Swapped = (Value & 0xFFFF0000) >> 16;
405 Swapped |= (Value & 0x0000FFFF) << 16;
406 return Swapped;
510 // but with 16-bit halfwords swapped.
761 // swapped.
792 // swapped.
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 1102 const bool Swapped = Off.isNegative();
1104 if (Swapped) {
1128 AR.swap(Swapped);
1544 const bool Swapped = V1 > V2;
1545 if (Swapped)
1558 Result.swap(Swapped);
1581 Entry.Result.swap(Swapped);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopRerollPass.cpp 1369 bool Swapped = false, SomeOpMatched = false;
1393 if (BaseInst->getOperand(Swapped ? unsigned(!j) : j) != Op2) {
1398 // the swapped match.
1399 if (!Swapped && BaseInst->isCommutative() && !SomeOpMatched &&
1401 Swapped = true;
LoopUnswitch.cpp 999 bool Swapped = false;
1043 Swapped = true;
1055 if (Swapped)
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCStreamer.cpp 136 uint64_t Swapped = support::endian::byte_swap(
139 emitBytes(StringRef(reinterpret_cast<char *>(&Swapped) + Index, Size));
149 const APInt Swapped = ShouldSwap ? Value.byteSwap() : Value;
153 StoreIntToMemory(Swapped, reinterpret_cast<uint8_t *>(Tmp.data()), Size);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 1639 bool Swapped = false;
1643 Swapped = true;
1691 if (IsNUW && !GEP2 && !Swapped && GEP1->isInBounds() &&
1704 if (Swapped)
InstCombineSelect.cpp 719 /// There are 8 commuted/swapped variants of this pattern.
1131 bool Swapped = false;
1134 Swapped = true;
1147 return replaceOperand(Sel, Swapped ? 2 : 1, V);
1169 return replaceOperand(Sel, Swapped ? 2 : 1, V);
1367 // original comparison to one with swapped predicate, reuse the constant,
1427 Pred = ICmpInst::getSwappedPredicate(Pred); // Yes, swapped.
2988 // Swap the metadata if the operands are swapped.

Completed in 57 milliseconds