HomeSort by relevance Sort by last modified time
    Searched defs:PSetID (Results 1 - 4 of 4) sorted by null

  /external/llvm/include/llvm/CodeGen/
RegisterPressure.h 94 uint16_t PSetID; // ID+1. 0=Invalid.
97 PressureChange(): PSetID(0), UnitInc(0) {}
98 PressureChange(unsigned id): PSetID(id+1), UnitInc(0) {
99 assert(id < UINT16_MAX && "PSetID overflow.");
102 bool isValid() const { return PSetID > 0; }
106 return PSetID - 1;
108 // If PSetID is invalid, return UINT16_MAX to give it lowest priority.
109 unsigned getPSetOrMax() const { return (PSetID - 1) & UINT16_MAX; }
116 return PSetID == RHS.PSetID && UnitInc == RHS.UnitInc
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
RegisterPressure.h 105 uint16_t PSetID = 0; // ID+1. 0=Invalid.
110 PressureChange(unsigned id): PSetID(id + 1) {
111 assert(id < std::numeric_limits<uint16_t>::max() && "PSetID overflow.");
114 bool isValid() const { return PSetID > 0; }
118 return PSetID - 1;
121 // If PSetID is invalid, return UINT16_MAX to give it lowest priority.
123 return (PSetID - 1) & std::numeric_limits<uint16_t>::max();
131 return PSetID == RHS.PSetID && UnitInc == RHS.UnitInc;
139 /// List of PressureChanges in order of increasing, unique PSetID
    [all...]
  /external/llvm/lib/CodeGen/
RegisterClassInfo.cpp 161 const int *PSetID = TRI->getRegClassPressureSets(*RI);
162 for (; *PSetID != -1; ++PSetID) {
163 if ((unsigned)*PSetID == Idx)
166 if (*PSetID == -1)
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
RegisterClassInfo.cpp 172 const int *PSetID = TRI->getRegClassPressureSets(C);
173 for (; *PSetID != -1; ++PSetID) {
174 if ((unsigned)*PSetID == Idx)
177 if (*PSetID == -1)

Completed in 393 milliseconds