reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Target/Hexagon/HexagonBlockRanges.cpp
   36   IndexType S = start(), E = end(), AS = A.start(), AE = A.end();
   36   IndexType S = start(), E = end(), AS = A.start(), AE = A.end();
   48   if (start() <= A.start()) {
   48   if (start() <= A.start()) {
   50     IndexType E = (end() != IndexType::None) ? end() : start();
   51     IndexType AE = (A.end() != IndexType::None) ? A.end() : A.start();
   60   assert(end() == A.start() || overlaps(A));
   61   IndexType AS = A.start(), AE = A.end();
   62   if (AS < start() || start() == IndexType::None)
   62   if (AS < start() || start() == IndexType::None)
   94     bool Merge = MergeAdjacent && (Iter->end() == Next->start());
  115   IndexType AS = A.start(), AE = A.end();
  116   IndexType BS = B.start(), BE = B.end();
  446     if (A->start() != IndexType::Entry) {
  447       IndexType DE = IndexMap.getPrevIndex(A->start());
  455       IndexType AE = (A->end() == IndexType::None) ? A->start() : A->end();
  458       IndexType DE = IndexMap.getPrevIndex(A->start());
  465       IndexType ZE = (Z->end() == IndexType::None) ? Z->start() : Z->end();
  507   OS << '[' << IR.start() << ':' << IR.end() << (IR.TiedEnd ? '}' : ']');
lib/Target/Hexagon/HexagonBlockRanges.h
   88       return start() < A.start();
   88       return start() < A.start();
lib/Target/Hexagon/HexagonFrameLowering.cpp
 2201       if (IR.start() == IndexType::Entry)
 2244         if (!IndexType::isInstr(Range.start()) ||
 2247         MachineInstr &SI = *IM.getInstr(Range.start());