| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
| H A D | FileWriter.cpp | 38 const uint16_t Swapped = support::endian::byte_swap(U, ByteOrder); in writeU16() local 39 OS.write(reinterpret_cast<const char *>(&Swapped), sizeof(Swapped)); in writeU16() 43 const uint32_t Swapped = support::endian::byte_swap(U, ByteOrder); in writeU32() local 44 OS.write(reinterpret_cast<const char *>(&Swapped), sizeof(Swapped)); in writeU32() 48 const uint64_t Swapped = support::endian::byte_swap(U, ByteOrder); in writeU64() local 49 OS.write(reinterpret_cast<const char *>(&Swapped), sizeof(Swapped)); in writeU64() 53 const uint32_t Swapped = support::endian::byte_swap(U, ByteOrder); in fixup32() local 54 OS.pwrite(reinterpret_cast<const char *>(&Swapped), sizeof(Swapped), in fixup32()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
| H A D | XCore.cpp | 84 std::string Swapped; // A temporary place holder for a Recursive encoding member 202 E.Swapped.swap(E.Str); // swap out the Recursive in addIncomplete() 227 if (E.Swapped.empty()) in removeIncomplete() 231 E.Swapped.swap(E.Str); in removeIncomplete() 232 E.Swapped.clear(); in removeIncomplete()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenPGO.cpp | 974 uint64_t Swapped = in combine() local 976 MD5.update(llvm::ArrayRef((uint8_t *)&Swapped, sizeof(Swapped))); in combine() 1001 uint64_t Swapped = in finalize() local 1003 MD5.update(llvm::ArrayRef((uint8_t *)&Swapped, sizeof(Swapped))); in finalize()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | BasicAliasAnalysis.cpp | 1171 const bool Swapped = Off.isNegative(); in aliasGEP() local 1173 if (Swapped) { in aliasGEP() 1199 AR.swap(Swapped); in aliasGEP() 1726 const bool Swapped = V1 > V2; in aliasCheck() local 1727 if (Swapped) in aliasCheck() 1743 Result.swap(Swapped); in aliasCheck() 1766 Entry.Result.swap(Swapped); in aliasCheck()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineSelect.cpp | 301 bool Swapped = false) -> Value * { in foldSelectOpOp() argument 302 assert(!(Commute && Swapped) && in foldSelectOpOp() 304 if (!Swapped) { in foldSelectOpOp() 318 if (!Commute && !Swapped) in foldSelectOpOp() 399 bool Swapped) -> CmpInst * { in foldSelectOpOp() argument 403 ICmpInst::isRelational(*P) && Swapped); in foldSelectOpOp() 501 bool Swapped) -> Instruction * { in foldSelectIntoOp() argument 540 Value *NewSel = Builder.CreateSelect(SI.getCondition(), Swapped ? C : OOp, in foldSelectIntoOp() 541 Swapped ? OOp : C, "", &SI); in foldSelectIntoOp() 1340 bool Swapped = false; in foldSelectValueEquivalence() local [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A D | ARMAsmBackend.cpp | 395 uint32_t Swapped = (Value & 0xFFFF0000) >> 16; in swapHalfWords() local 396 Swapped |= (Value & 0x0000FFFF) << 16; in swapHalfWords() 397 return Swapped; in swapHalfWords()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | IndVarSimplify.cpp | 1470 bool Swapped = false; in canonicalizeExitCondition() local 1479 Swapped = true; in canonicalizeExitCondition() 1512 ICmp->setOperand(Swapped ? 1 : 0, LHSOp); in canonicalizeExitCondition() 1513 ICmp->setOperand(Swapped ? 0 : 1, NewRHS); in canonicalizeExitCondition()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCStreamer.cpp | 138 uint64_t Swapped = support::endian::byte_swap( in emitIntValue() local 141 emitBytes(StringRef(reinterpret_cast<char *>(&Swapped) + Index, Size)); in emitIntValue() 151 const APInt Swapped = ShouldSwap ? Value.byteSwap() : Value; in emitIntValue() local 155 StoreIntToMemory(Swapped, reinterpret_cast<uint8_t *>(Tmp.data()), Size); in emitIntValue()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/ |
| H A D | AggressiveInstCombine.cpp | 1000 void inlineCompare(Value *LHS, StringRef RHS, uint64_t N, bool Swapped); 1117 bool Swapped) { in inlineCompare() argument 1153 Value *Sub = Swapped ? B.CreateSub(VR, VL) : B.CreateSub(VL, VR); in inlineCompare()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIFoldOperands.cpp | 564 uint32_t Swapped = (static_cast<uint32_t>(Lo) << 16) | Hi; in tryFoldImmWithOpSel() local 565 if (AMDGPU::isInlinableLiteralV216(Swapped, OpType)) { in tryFoldImmWithOpSel() 567 Old.ChangeToImmediate(Swapped); in tryFoldImmWithOpSel()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonISelDAGToDAGHVX.cpp | 1434 shuffles::MaskT Swapped(SMH.Mask); in packs() local 1435 ShuffleVectorSDNode::commuteMask(Swapped); in packs() 1436 ShuffleMask SW(Swapped); in packs()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86InstrFragmentsSIMD.td | 1479 // Swapped operand version of the above.
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | DAGCombiner.cpp | 19477 bool Swapped = false; in CombineToPreIndexedLoadStore() local 19480 Swapped = true; in CombineToPreIndexedLoadStore() 19556 if (Swapped) in CombineToPreIndexedLoadStore() 19607 if (Swapped) in CombineToPreIndexedLoadStore() 19634 int X1 = (AM == ISD::PRE_DEC && !Swapped) ? -1 : 1; in CombineToPreIndexedLoadStore() 19635 int Y1 = (AM == ISD::PRE_DEC && Swapped) ? -1 : 1; in CombineToPreIndexedLoadStore()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVISelLowering.cpp | 18429 bool Swapped) { in tryFoldSelectIntoOp() argument 18470 if (Swapped) in tryFoldSelectIntoOp()
|