Home
last modified time | relevance | path

Searched refs:Swapped (Results 1 – 13 of 13) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DFileWriter.cpp39 const uint16_t Swapped = support::endian::byte_swap(U, ByteOrder); in writeU16() local
40 OS.write(reinterpret_cast<const char *>(&Swapped), sizeof(Swapped)); in writeU16()
44 const uint32_t Swapped = support::endian::byte_swap(U, ByteOrder); in writeU32() local
45 OS.write(reinterpret_cast<const char *>(&Swapped), sizeof(Swapped)); in writeU32()
49 const uint64_t Swapped = support::endian::byte_swap(U, ByteOrder); in writeU64() local
50 OS.write(reinterpret_cast<const char *>(&Swapped), sizeof(Swapped)); in writeU64()
54 const uint32_t Swapped = support::endian::byte_swap(U, ByteOrder); in fixup32() local
55 OS.pwrite(reinterpret_cast<const char *>(&Swapped), sizeof(Swapped), in fixup32()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenPGO.cpp749 uint64_t Swapped = endian::byte_swap<uint64_t, little>(Working); in combine() local
750 MD5.update(llvm::makeArrayRef((uint8_t *)&Swapped, sizeof(Swapped))); in combine()
775 uint64_t Swapped = endian::byte_swap<uint64_t, little>(Working); in finalize() local
776 MD5.update(llvm::makeArrayRef((uint8_t *)&Swapped, sizeof(Swapped))); in finalize()
H A DTargetInfo.cpp9882 std::string Swapped; // A temporary place holder for a Recursive encoding member
9999 E.Swapped.swap(E.Str); // swap out the Recursive in addIncomplete()
10024 if (E.Swapped.empty()) in removeIncomplete()
10028 E.Swapped.swap(E.Str); in removeIncomplete()
10029 E.Swapped.clear(); in removeIncomplete()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp1111 const bool Swapped = Off.isNegative(); in aliasGEP() local
1113 if (Swapped) { in aliasGEP()
1137 AR.swap(Swapped); in aliasGEP()
1560 const bool Swapped = V1 > V2; in aliasCheck() local
1561 if (Swapped) in aliasCheck()
1574 Result.swap(Swapped); in aliasCheck()
1597 Entry.Result.swap(Swapped); in aliasCheck()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopRerollPass.cpp1371 bool Swapped = false, SomeOpMatched = false; in validate() local
1395 if (BaseInst->getOperand(Swapped ? unsigned(!j) : j) != Op2) { in validate()
1401 if (!Swapped && BaseInst->isCommutative() && !SomeOpMatched && in validate()
1403 Swapped = true; in validate()
H A DLoopUnswitch.cpp999 bool Swapped = false; in emitPreheaderBranchOnCondition() local
1043 Swapped = true; in emitPreheaderBranchOnCondition()
1055 if (Swapped) in emitPreheaderBranchOnCondition()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCStreamer.cpp136 uint64_t Swapped = support::endian::byte_swap( in emitIntValue() local
139 emitBytes(StringRef(reinterpret_cast<char *>(&Swapped) + Index, Size)); in emitIntValue()
149 const APInt Swapped = ShouldSwap ? Value.byteSwap() : Value; in emitIntValue() local
153 StoreIntToMemory(Swapped, reinterpret_cast<uint8_t *>(Tmp.data()), Size); in emitIntValue()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackend.cpp404 uint32_t Swapped = (Value & 0xFFFF0000) >> 16; in swapHalfWords() local
405 Swapped |= (Value & 0x0000FFFF) << 16; in swapHalfWords()
406 return Swapped; in swapHalfWords()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1660 bool Swapped = false; in OptimizePointerDifference() local
1664 Swapped = true; in OptimizePointerDifference()
1712 if (IsNUW && !GEP2 && !Swapped && GEP1->isInBounds() && in OptimizePointerDifference()
1725 if (Swapped) in OptimizePointerDifference()
H A DInstCombineSelect.cpp1131 bool Swapped = false; in foldSelectValueEquivalence() local
1134 Swapped = true; in foldSelectValueEquivalence()
1147 return replaceOperand(Sel, Swapped ? 2 : 1, V); in foldSelectValueEquivalence()
1169 return replaceOperand(Sel, Swapped ? 2 : 1, V); in foldSelectValueEquivalence()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAGHVX.cpp1282 SmallVector<int,128> Swapped(SMH.Mask.begin(), SMH.Mask.end()); in packs() local
1283 ShuffleVectorSDNode::commuteMask(Swapped); in packs()
1284 ShuffleMask SW(Swapped); in packs()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp15305 bool Swapped = false; in CombineToPreIndexedLoadStore() local
15308 Swapped = true; in CombineToPreIndexedLoadStore()
15385 if (Swapped) in CombineToPreIndexedLoadStore()
15436 if (Swapped) in CombineToPreIndexedLoadStore()
15463 int X1 = (AM == ISD::PRE_DEC && !Swapped) ? -1 : 1; in CombineToPreIndexedLoadStore()
15464 int Y1 = (AM == ISD::PRE_DEC && Swapped) ? -1 : 1; in CombineToPreIndexedLoadStore()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrAVX512.td2232 // Swapped operand version of the above.