Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DInterferenceCache.cpp157 ArrayRef<SlotIndex> RegMaskSlots; in update() local
189 RegMaskSlots = LIS->getRegMaskSlotsInBlock(MBBNum); in update()
192 for (unsigned i = 0, e = RegMaskSlots.size(); in update()
193 i != e && RegMaskSlots[i] < Limit; ++i) in update()
196 BI->First = RegMaskSlots[i]; in update()
249 for (unsigned i = RegMaskSlots.size(); in update()
250 i && RegMaskSlots[i-1].getDeadSlot() > Limit; --i) in update()
254 BI->Last = RegMaskSlots[i-1].getDeadSlot(); in update()
H A DLiveIntervals.cpp108 RegMaskSlots.clear(); in releaseMemory()
164 for (SlotIndex Idx : RegMaskSlots) in print()
216 RMB.first = RegMaskSlots.size(); in computeRegMasks()
220 RegMaskSlots.push_back(Indexes->getMBBStartIdx(&MBB)); in computeRegMasks()
229 RegMaskSlots.push_back(Indexes->getMBBStartIdx(&MBB)); in computeRegMasks()
237 RegMaskSlots.push_back(Indexes->getInstructionIndex(MI).getRegSlot()); in computeRegMasks()
247 RegMaskSlots.push_back( in computeRegMasks()
253 RMB.second = RegMaskSlots.size() - RMB.first; in computeRegMasks()
1437 llvm::lower_bound(LIS.RegMaskSlots, OldIdx); in updateRegMaskSlots()
1438 assert(RI != LIS.RegMaskSlots.end() && *RI == OldIdx.getRegSlot() && in updateRegMaskSlots()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DLiveIntervals.h70 SmallVector<SlotIndex, 8> RegMaskSlots; variable
257 RegMaskBlocks.push_back(std::make_pair(RegMaskSlots.size(), 0)); in insertMBBInMaps()
345 ArrayRef<SlotIndex> getRegMaskSlots() const { return RegMaskSlots; } in getRegMaskSlots()