HomeSort by relevance Sort by last modified time
    Searched full: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 645 bool overlaps(const LiveRange &Other, bool UseTrimmed = false) const;
646 bool overlapsInst(InstNumberT OtherBegin, bool UseTrimmed = false) const;
802 constexpr bool UseTrimmed = true;
803 return Live.overlaps(Other->Live, UseTrimmed);
806 constexpr bool UseTrimmed = true;
807 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 210 milliseconds