HomeSort by relevance Sort by last modified time
    Searched refs:OffsetA (Results 1 - 8 of 8) sorted by null

  /external/llvm/lib/Analysis/
TypeBasedAliasAnalysis.cpp 545 uint64_t OffsetA = TagA.getOffset(), OffsetB = TagB.getOffset();
549 return OffsetA == OffsetB;
552 // Follow the edge with the correct offset, OffsetA will be adjusted to
554 T = T.getParent(OffsetA);
559 // Reset OffsetA and climb the type DAG from base type of B to see if we reach
561 OffsetA = TagA.getOffset();
565 return OffsetA == OffsetB;
LoopAccessAnalysis.cpp     [all...]
  /external/llvm/lib/Target/Lanai/
LanaiInstrInfo.cpp 106 int64_t OffsetA = 0, OffsetB = 0;
108 if (getMemOpBaseRegImmOfsWidth(MIa, BaseRegA, OffsetA, WidthA, TRI) &&
111 int LowOffset = std::min(OffsetA, OffsetB);
112 int HighOffset = std::max(OffsetA, OffsetB);
113 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
  /external/swiftshader/third_party/subzero/src/
IceOperand.cpp 48 RelocOffsetT OffsetA = A.Offset;
53 OffsetA += A.OffsetExpr[i]->getOffset();
65 return OffsetA == OffsetB;
  /external/llvm/lib/Transforms/Vectorize/
LoadStoreVectorizer.cpp 248 APInt OffsetA(PtrBitWidth, 0), OffsetB(PtrBitWidth, 0);
249 PtrA = PtrA->stripAndAccumulateInBoundsConstantOffsets(DL, OffsetA);
252 APInt OffsetDelta = OffsetB - OffsetA;
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64InstrInfo.cpp 661 int64_t OffsetA = 0, OffsetB = 0;
676 if (getMemOpBaseRegImmOfsWidth(MIa, BaseRegA, OffsetA, WidthA, TRI) &&
679 int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB;
680 int HighOffset = OffsetA < OffsetB ? OffsetB : OffsetA;
681 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
    [all...]
  /external/llvm/lib/Target/AMDGPU/
SIInstrInfo.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonInstrInfo.cpp     [all...]

Completed in 168 milliseconds