Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/GSYM/
H A DFileWriter.cpp38 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()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCodeGenPGO.cpp758 uint64_t Swapped = endian::byte_swap<uint64_t, little>(Working); in combine() local
759 MD5.update(llvm::ArrayRef((uint8_t *)&Swapped, sizeof(Swapped))); in combine()
784 uint64_t Swapped = endian::byte_swap<uint64_t, little>(Working); in finalize() local
785 MD5.update(llvm::ArrayRef((uint8_t *)&Swapped, sizeof(Swapped))); in finalize()
H A DTargetInfo.cpp10280 std::string Swapped; // A temporary place holder for a Recursive encoding member
10398 E.Swapped.swap(E.Str); // swap out the Recursive in addIncomplete()
10423 if (E.Swapped.empty()) in removeIncomplete()
10427 E.Swapped.swap(E.Str); in removeIncomplete()
10428 E.Swapped.clear(); in removeIncomplete()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp1091 const bool Swapped = Off.isNegative(); in aliasGEP() local
1093 if (Swapped) { in aliasGEP()
1119 AR.swap(Swapped); in aliasGEP()
1556 const bool Swapped = V1 > V2; in aliasCheck() local
1557 if (Swapped) in aliasCheck()
1570 Result.swap(Swapped); in aliasCheck()
1593 Entry.Result.swap(Swapped); in aliasCheck()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp320 bool Swapped = false) -> Value * { in foldSelectOpOp() argument
321 assert(!(Commute && Swapped) && in foldSelectOpOp()
323 if (!Swapped) { in foldSelectOpOp()
337 if (!Commute && !Swapped) in foldSelectOpOp()
397 bool Swapped = TPred != FPred; in foldSelectOpOp() local
399 getCommonOp(TI, FI, ICmpInst::isEquality(TPred), Swapped)) { in foldSelectOpOp()
468 bool Swapped) -> Instruction * { in foldSelectIntoOp() argument
498 Value *NewSel = Builder.CreateSelect(SI.getCondition(), Swapped ? C : OOp, in foldSelectIntoOp()
499 Swapped ? OOp : C); in foldSelectIntoOp()
1230 bool Swapped = false; in foldSelectValueEquivalence() local
[all …]
H A DInstCombineAddSub.cpp1799 bool Swapped = false; in OptimizePointerDifference() local
1803 Swapped = true; in OptimizePointerDifference()
1852 if (IsNUW && !GEP2 && !Swapped && GEP1->isInBounds() && in OptimizePointerDifference()
1865 if (Swapped) in OptimizePointerDifference()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DLoopRerollPass.cpp1364 bool Swapped = false, SomeOpMatched = false; in validate() local
1388 if (BaseInst->getOperand(Swapped ? unsigned(!j) : j) != Op2) { in validate()
1394 if (!Swapped && BaseInst->isCommutative() && !SomeOpMatched && in validate()
1396 Swapped = true; in validate()
H A DIndVarSimplify.cpp1606 bool Swapped = false; in canonicalizeExitCondition() local
1615 Swapped = true; in canonicalizeExitCondition()
1645 ICmp->setOperand(Swapped ? 1 : 0, LHSOp); in canonicalizeExitCondition()
1646 ICmp->setOperand(Swapped ? 0 : 1, NewRHS); in canonicalizeExitCondition()
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DMCStreamer.cpp139 uint64_t Swapped = support::endian::byte_swap( in emitIntValue() local
142 emitBytes(StringRef(reinterpret_cast<char *>(&Swapped) + Index, Size)); in emitIntValue()
152 const APInt Swapped = ShouldSwap ? Value.byteSwap() : Value; in emitIntValue() local
156 StoreIntToMemory(Swapped, reinterpret_cast<uint8_t *>(Tmp.data()), Size); in emitIntValue()
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackend.cpp407 uint32_t Swapped = (Value & 0xFFFF0000) >> 16; in swapHalfWords() local
408 Swapped |= (Value & 0x0000FFFF) << 16; in swapHalfWords()
409 return Swapped; in swapHalfWords()
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAGHVX.cpp1441 shuffles::MaskT Swapped(SMH.Mask); in packs() local
1442 ShuffleVectorSDNode::commuteMask(Swapped); in packs()
1443 ShuffleMask SW(Swapped); in packs()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp16889 bool Swapped = false; in CombineToPreIndexedLoadStore() local
16892 Swapped = true; in CombineToPreIndexedLoadStore()
16969 if (Swapped) in CombineToPreIndexedLoadStore()
17020 if (Swapped) in CombineToPreIndexedLoadStore()
17047 int X1 = (AM == ISD::PRE_DEC && !Swapped) ? -1 : 1; in CombineToPreIndexedLoadStore()
17048 int Y1 = (AM == ISD::PRE_DEC && Swapped) ? -1 : 1; in CombineToPreIndexedLoadStore()
/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp10031 bool Swapped) { in tryFoldSelectIntoOp() argument
10061 if (Swapped) in tryFoldSelectIntoOp()
/openbsd-src/usr.sbin/nsd/doc/
H A DChangeLog4544 - Swapped read and write ops in xfrd_handle_ipc, so that a read
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A DChangeLog-19991728 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Swapped order of
H A DChangeLog-200211692 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
/openbsd-src/gnu/usr.bin/binutils-2.17/bfd/
H A DChangeLog-02037455 * nlmcode.h (nlm_swap_auxiliary_headers_out): Swapped the order of
/openbsd-src/gnu/usr.bin/binutils/bfd/
H A DChangeLog-02037455 * nlmcode.h (nlm_swap_auxiliary_headers_out): Swapped the order of
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86InstrAVX512.td2313 // Swapped operand version of the above.
/openbsd-src/gnu/usr.bin/gcc/gcc/java/
H A DChangeLog9584 (patch_cast): Swapped two first arguments to first call to
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A DChangeLog.313443 * configure.in: (i*86-*-rtems*): Swapped elf and coff