Searched refs:TiedEnd (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/Target/Hexagon/ |
D | HexagonBlockRanges.h | 79 IndexRange() : Fixed(false), TiedEnd(false) {} in IndexRange() 81 : std::pair<IndexType,IndexType>(Start, End), Fixed(F), TiedEnd(T) {} 93 bool TiedEnd; // The end is not a use, but a dead def tied to a use. member 104 void add(IndexType Start, IndexType End, bool Fixed, bool TiedEnd) { in add() 105 push_back(IndexRange(Start, End, Fixed, TiedEnd)); in add()
|
D | HexagonBlockRanges.cpp | 35 bool SbAE = (S < AE) || (S == AE && A.TiedEnd); // S-before-AE. in overlaps() 36 bool ASbE = (AS < E) || (AS == E && TiedEnd); // AS-before-E. in overlaps() 64 TiedEnd = A.TiedEnd; in merge() 67 TiedEnd |= A.TiedEnd; in merge() 454 OS << '[' << IR.start() << ':' << IR.end() << (IR.TiedEnd ? '}' : ']'); in operator <<()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonBlockRanges.h | 83 : std::pair<IndexType,IndexType>(Start, End), Fixed(F), TiedEnd(T) {} 97 bool TiedEnd = false; // The end is not a use, but a dead def tied to a use. member 108 void add(IndexType Start, IndexType End, bool Fixed, bool TiedEnd) { in add() 109 push_back(IndexRange(Start, End, Fixed, TiedEnd)); in add()
|
D | HexagonBlockRanges.cpp | 40 bool SbAE = (S < AE) || (S == AE && A.TiedEnd); // S-before-AE. in overlaps() 41 bool ASbE = (AS < E) || (AS == E && TiedEnd); // AS-before-E. in overlaps() 67 TiedEnd = A.TiedEnd; in merge() 70 TiedEnd |= A.TiedEnd; in merge() 508 OS << '[' << IR.start() << ':' << IR.end() << (IR.TiedEnd ? '}' : ']'); in operator <<()
|