Searched refs:OffsetA (Results 1 - 11 of 11) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiInstrInfo.cpp104 int64_t OffsetA = 0, OffsetB = 0; local
106 if (getMemOperandWithOffsetWidth(MIa, BaseOpA, OffsetA, WidthA, TRI) &&
109 int LowOffset = std::min(OffsetA, OffsetB);
110 int HighOffset = std::max(OffsetA, OffsetB);
111 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfo.cpp601 int64_t OffsetA = 0, OffsetB = 0; local
603 if (getMemOperandWithOffsetWidth(MIa, BaseOpA, OffsetA, WidthA, TRI) &&
606 int LowOffset = std::min(OffsetA, OffsetB);
607 int HighOffset = std::max(OffsetA, OffsetB);
608 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp342 APInt OffsetA(PtrBitWidth, 0);
344 PtrA = PtrA->stripAndAccumulateInBoundsConstantOffsets(DL, OffsetA);
356 assert(OffsetA.getMinSignedBits() <= NewPtrBitWidth &&
359 OffsetA = OffsetA.sextOrTrunc(NewPtrBitWidth);
363 APInt OffsetDelta = OffsetB - OffsetA;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineInstr.cpp1229 int64_t OffsetA = MMOa->getOffset(); local
1231 int64_t MinOffset = std::min(OffsetA, OffsetB);
1255 int64_t MaxOffset = std::max(OffsetA, OffsetB);
1256 int64_t LowWidth = (MinOffset == OffsetA) ? WidthA : WidthB;
1266 assert((OffsetA >= 0) && "Negative MachineMemOperand offset");
1269 int64_t OverlapA = KnownWidthA ? WidthA + OffsetA - MinOffset
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.cpp1804 int OffsetA = MMOa->getOffset(), OffsetB = MMOb->getOffset(); local
1806 int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB;
1807 int HighOffset = OffsetA < OffsetB ? OffsetB : OffsetA;
1808 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp1194 APInt OffsetA(IdxWidth, 0), OffsetB(IdxWidth, 0);
1195 PtrA = PtrA->stripAndAccumulateInBoundsConstantOffsets(DL, OffsetA);
1207 OffsetA = OffsetA.sextOrTrunc(IdxWidth);
1212 // OffsetDelta = OffsetB - OffsetA;
1213 const SCEV *OffsetSCEVA = SE.getConstant(OffsetA);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DMetadataLoader.cpp1535 unsigned OffsetA = 0; local
1538 OffsetA = 2;
1557 Record[7 + OffsetA], // scopeLine
1558 getDITypeRefOrNull(Record[8 + OffsetA]), // containingType
1559 Record[10 + OffsetA], // virtualIndex
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp936 int64_t OffsetA = 0, OffsetB = 0; local
951 if (getMemOperandWithOffsetWidth(MIa, BaseOpA, OffsetA, WidthA, TRI) &&
954 int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB;
955 int HighOffset = OffsetA < OffsetB ? OffsetB : OffsetA;
956 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.cpp1910 int OffsetA = isPostIncrement(MIa) ? 0 : OffA.getImm(); local
1915 if (OffsetA > OffsetB) {
1916 uint64_t OffDiff = (uint64_t)((int64_t)OffsetA - (int64_t)OffsetB);
1919 if (OffsetA < OffsetB) {
1920 uint64_t OffDiff = (uint64_t)((int64_t)OffsetB - (int64_t)OffsetA);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp4300 int64_t OffsetA = 0, OffsetB = 0;
4302 if (getMemOperandWithOffsetWidth(MIa, BaseOpA, OffsetA, WidthA, TRI) &&
4305 int LowOffset = std::min(OffsetA, OffsetB);
4306 int HighOffset = std::max(OffsetA, OffsetB);
4307 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInstrInfo.cpp2520 static bool offsetsDoNotOverlap(int WidthA, int OffsetA, argument
2522 int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB;
2523 int HighOffset = OffsetA < OffsetB ? OffsetB : OffsetA;
2524 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;

Completed in 153 milliseconds