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

  /external/llvm/lib/Analysis/
TypeBasedAliasAnalysis.cpp 546 uint64_t OffsetA = TagA.getOffset(), OffsetB = TagB.getOffset();
550 return OffsetA == OffsetB;
553 // Follow the edge with the correct offset, OffsetA will be adjusted to
555 T = T.getParent(OffsetA);
560 // Reset OffsetA and climb the type DAG from base type of B to see if we reach
562 OffsetA = TagA.getOffset();
566 return OffsetA == OffsetB;
  /external/llvm/lib/Target/AArch64/
AArch64InstrInfo.cpp 620 int OffsetA = 0, OffsetB = 0;
635 if (getMemOpBaseRegImmOfsWidth(MIa, BaseRegA, OffsetA, WidthA, TRI) &&
638 int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB;
639 int HighOffset = OffsetA < OffsetB ? OffsetB : OffsetA;
640 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
    [all...]