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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DFileWriter.cpp39 const uint16_t Swapped = support::endian::byte_swap(U, ByteOrder);
40 OS.write(reinterpret_cast<const char *>(&Swapped), sizeof(Swapped));
44 const uint32_t Swapped = support::endian::byte_swap(U, ByteOrder);
45 OS.write(reinterpret_cast<const char *>(&Swapped), sizeof(Swapped));
49 const uint64_t Swapped = support::endian::byte_swap(U, ByteOrder);
50 OS.write(reinterpret_cast<const char *>(&Swapped), sizeof(Swapped));
54 const uint32_t Swapped
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenPGO.cpp734 uint64_t Swapped = endian::byte_swap<uint64_t, little>(Working);
735 MD5.update(llvm::makeArrayRef((uint8_t *)&Swapped, sizeof(Swapped)));
760 uint64_t Swapped = endian::byte_swap<uint64_t, little>(Working);
761 MD5.update(llvm::makeArrayRef((uint8_t *)&Swapped, sizeof(Swapped)));
H A DTargetInfo.cpp9641 /// cached encoding is 'Swapped' out, as it may be incorrect, and...
9664 std::string Swapped; // A temporary place holder for a Recursive encoding
9780 E.Swapped.swap(E.Str); // swap out the Recursive
9805 if (E.Swapped.empty())
9809 E.Swapped.swap(E.Str);
9810 E.Swapped.clear();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopRerollPass.cpp1354 bool Swapped = false, SomeOpMatched = false; local
1378 if (BaseInst->getOperand(Swapped ? unsigned(!j) : j) != Op2) {
1384 if (!Swapped && BaseInst->isCommutative() && !SomeOpMatched &&
1386 Swapped = true;
H A DLoopUnswitch.cpp920 bool Swapped = false; local
927 Swapped = true;
938 if (Swapped)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackend.cpp400 uint32_t Swapped = (Value & 0xFFFF0000) >> 16; local
401 Swapped |= (Value & 0x0000FFFF) << 16;
402 return Swapped;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1607 bool Swapped = false; local
1616 Swapped = false;
1623 Swapped = false;
1632 Swapped = true;
1639 Swapped = true;
1676 if (IsNUW && !GEP2 && !Swapped && GEP1->isInBounds() &&
1689 if (Swapped)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCStreamer.cpp136 uint64_t Swapped = support::endian::byte_swap( local
139 emitBytes(StringRef(reinterpret_cast<char *>(&Swapped) + Index, Size));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp14314 bool Swapped = false;
14317 Swapped = true;
14394 if (Swapped)
14445 if (Swapped)
14475 X1 = (AM == ISD::PRE_DEC && !Swapped) ? -1 : 1;
14476 Y1 = (AM == ISD::PRE_DEC && Swapped) ? -1 : 1;

Completed in 270 milliseconds