HomeSort by: relevance | last modified time | path
    Searched refs:OffsetA (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
LanaiInstrInfo.cpp 104 int64_t OffsetA = 0, OffsetB = 0;
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;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
LoadStoreVectorizer.cpp 333 APInt OffsetA(PtrBitWidth, 0);
335 PtrA = PtrA->stripAndAccumulateInBoundsConstantOffsets(DL, OffsetA);
347 assert(OffsetA.getMinSignedBits() <= NewPtrBitWidth &&
350 OffsetA = OffsetA.sextOrTrunc(NewPtrBitWidth);
354 APInt OffsetDelta = OffsetB - OffsetA;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
LoopAccessAnalysis.cpp 1147 APInt OffsetA(IdxWidth, 0), OffsetB(IdxWidth, 0);
1148 Value *PtrA1 = PtrA->stripAndAccumulateInBoundsConstantOffsets(DL, OffsetA);
1162 OffsetA = OffsetA.sextOrTrunc(IdxWidth);
1165 OffsetB -= OffsetA;
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVInstrInfo.cpp 937 int64_t OffsetA = 0, OffsetB = 0;
939 if (getMemOperandWithOffsetWidth(MIa, BaseOpA, OffsetA, WidthA, TRI) &&
942 int LowOffset = std::min(OffsetA, OffsetB);
943 int HighOffset = std::max(OffsetA, OffsetB);
944 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineInstr.cpp 1277 int64_t OffsetA = MMOa->getOffset();
1279 int64_t MinOffset = std::min(OffsetA, OffsetB);
1303 int64_t MaxOffset = std::max(OffsetA, OffsetB);
1304 int64_t LowWidth = (MinOffset == OffsetA) ? WidthA : WidthB;
1314 assert((OffsetA >= 0) && "Negative MachineMemOperand offset");
1318 KnownWidthA ? WidthA + OffsetA - MinOffset : MemoryLocation::UnknownSize;
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZInstrInfo.cpp 1986 int OffsetA = MMOa->getOffset(), OffsetB = MMOb->getOffset();
1988 int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB;
1989 int HighOffset = OffsetA < OffsetB ? OffsetB : OffsetA;
1990 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
MetadataLoader.cpp 1688 unsigned OffsetA = 0;
1691 OffsetA = 2;
1710 Record[7 + OffsetA], // scopeLine
1711 getDITypeRefOrNull(Record[8 + OffsetA]), // containingType
1712 Record[10 + OffsetA], // virtualIndex
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonInstrInfo.cpp 1938 int OffsetA = isPostIncrement(MIa) ? 0 : OffA.getImm();
1943 if (OffsetA > OffsetB) {
1944 uint64_t OffDiff = (uint64_t)((int64_t)OffsetA - (int64_t)OffsetB);
1947 if (OffsetA < OffsetB) {
1948 uint64_t OffDiff = (uint64_t)((int64_t)OffsetB - (int64_t)OffsetA);
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCInstrInfo.cpp 5486 int64_t OffsetA = 0, OffsetB = 0;
5488 if (getMemOperandWithOffsetWidth(MIa, BaseOpA, OffsetA, WidthA, TRI) &&
5491 int LowOffset = std::min(OffsetA, OffsetB);
5492 int HighOffset = std::max(OffsetA, OffsetB);
5493 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64InstrInfo.cpp 1057 int64_t OffsetA = 0, OffsetB = 0;
1075 if (getMemOperandWithOffsetWidth(MIa, BaseOpA, OffsetA, OffsetAIsScalable,
1081 int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB;
1082 int HighOffset = OffsetA < OffsetB ? OffsetB : OffsetA;
1083 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIInstrInfo.cpp 2937 static bool offsetsDoNotOverlap(int WidthA, int OffsetA,
2939 int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB;
2940 int HighOffset = OffsetA < OffsetB ? OffsetB : OffsetA;
2941 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;

Completed in 54 milliseconds