Home
last modified time | relevance | path

Searched refs:RegMaskSlots (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DInterferenceCache.cpp161 ArrayRef<SlotIndex> RegMaskSlots; in update() local
193 RegMaskSlots = LIS->getRegMaskSlotsInBlock(MBBNum); in update()
196 for (unsigned i = 0, e = RegMaskSlots.size(); in update()
197 i != e && RegMaskSlots[i] < Limit; ++i) in update()
200 BI->First = RegMaskSlots[i]; in update()
253 for (unsigned i = RegMaskSlots.size(); in update()
254 i && RegMaskSlots[i-1].getDeadSlot() > Limit; --i) in update()
258 BI->Last = RegMaskSlots[i-1].getDeadSlot(); in update()
DLiveIntervals.cpp113 RegMaskSlots.clear(); in releaseMemory()
170 for (SlotIndex Idx : RegMaskSlots) in print()
222 RMB.first = RegMaskSlots.size(); in computeRegMasks()
226 RegMaskSlots.push_back(Indexes->getMBBStartIdx(&MBB)); in computeRegMasks()
234 RegMaskSlots.push_back(Indexes->getInstructionIndex(MI).getRegSlot()); in computeRegMasks()
244 RegMaskSlots.push_back( in computeRegMasks()
250 RMB.second = RegMaskSlots.size() - RMB.first; in computeRegMasks()
1398 llvm::lower_bound(LIS.RegMaskSlots, OldIdx); in updateRegMaskSlots()
1399 assert(RI != LIS.RegMaskSlots.end() && *RI == OldIdx.getRegSlot() && in updateRegMaskSlots()
1402 assert((RI == LIS.RegMaskSlots.begin() || in updateRegMaskSlots()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DLiveIntervals.h72 SmallVector<SlotIndex, 8> RegMaskSlots; variable
263 RegMaskBlocks.push_back(std::make_pair(RegMaskSlots.size(), 0)); in insertMBBInMaps()
351 ArrayRef<SlotIndex> getRegMaskSlots() const { return RegMaskSlots; } in getRegMaskSlots()