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

  /external/swiftshader/third_party/subzero/src/
IceOperand.cpp 137 bool LiveRange::overlaps(const LiveRange &Other, bool UseTrimmed) const {
139 auto I1 = (UseTrimmed ? TrimmedBegin : Range.begin()),
140 I2 = (UseTrimmed ? Other.TrimmedBegin : Other.Range.begin());
156 bool LiveRange::overlapsInst(InstNumberT OtherBegin, bool UseTrimmed) const {
158 for (auto I = (UseTrimmed ? TrimmedBegin : Range.begin()), E = Range.end();
IceOperand.h 653 bool overlaps(const LiveRange &Other, bool UseTrimmed = false) const;
654 bool overlapsInst(InstNumberT OtherBegin, bool UseTrimmed = false) const;
810 constexpr bool UseTrimmed = true;
811 return Live.overlaps(Other->Live, UseTrimmed);
814 constexpr bool UseTrimmed = true;
815 return Live.overlapsInst(Other->Live.getStart(), UseTrimmed);
    [all...]
IceRegAlloc.cpp 39 constexpr bool UseTrimmed = true;
42 if (Item->getLiveRange().overlapsInst(FirstDef->getNumber(), UseTrimmed))
45 if (Item->getLiveRange().overlapsInst(Def->getNumber(), UseTrimmed))
    [all...]

Completed in 1238 milliseconds