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

  /external/llvm/lib/CodeGen/
LiveRangeCalc.cpp 35 LiveIn.clear();
107 // Transfer information from the LiveIn vector to the live ranges.
110 for (SmallVectorImpl<LiveInBlock>::iterator I = LiveIn.begin(),
111 E = LiveIn.end(); I != E; ++I) {
131 LiveIn.clear();
242 LiveIn.clear();
267 // Multiple values were found, so transfer the work list to the LiveIn array
269 LiveIn.reserve(WorkList.size());
275 LiveIn.back().Kill = Kill;
294 for (SmallVectorImpl<LiveInBlock>::iterator I = LiveIn.begin()
    [all...]
LiveRangeCalc.h 98 /// LiveIn - Work list of blocks where the live-in value has yet to be
102 SmallVector<LiveInBlock, 16> LiveIn;
111 /// are added to the LiveIn array, and the function returns false.
120 /// blocks in LiveIn. Create PHI-def values as required to preserve SSA form.
126 /// Add liveness as specified in the LiveIn vector.
227 LiveIn.push_back(LiveInBlock(LI, DomNode, Kill));
VirtRegMap.cpp 237 SmallVector<MachineBasicBlock*, 16> LiveIn;
253 if (!Indexes->findLiveInMBBs(I->start, I->end, LiveIn))
255 for (unsigned i = 0, e = LiveIn.size(); i != e; ++i)
256 if (!LiveIn[i]->isLiveIn(PhysReg))
257 LiveIn[i]->addLiveIn(PhysReg);
258 LiveIn.clear();
StackColoring.cpp 100 BitVector LiveIn;
226 for (unsigned i=0; i < BlockInfo.LiveIn.size(); ++i)
227 DEBUG(dbgs()<<BlockInfo.LiveIn.test(i)<<" ");
343 LocalLiveOut |= I->second.LiveIn;
368 if (LocalLiveIn.test(BlockInfo.LiveIn)) {
370 BlockInfo.LiveIn |= LocalLiveIn;
433 for (int pos = MBBLiveness.LiveIn.find_first(); pos != -1;
434 pos = MBBLiveness.LiveIn.find_next(pos)) {
SplitKit.h 72 bool LiveIn; ///< Current reg is live in.
MachineCSE.cpp 570 // livein list.
572 unsigned LiveIn = PhysDefs.pop_back_val();
573 if (!MBB->isLiveIn(LiveIn))
574 MBB->addLiveIn(LiveIn);
RegAllocGreedy.cpp 770 BC.Entry = BI.LiveIn ? SpillPlacement::PrefReg : SpillPlacement::DontCare;
781 if (BI.LiveIn) {
    [all...]
SplitKit.cpp 213 BI.LiveIn = LVI->start <= Start;
216 if (!BI.LiveIn) {
243 BI.LiveIn = false;
    [all...]
MachineBasicBlock.cpp 353 bool LiveIn = isLiveIn(PhysReg);
359 if (LiveIn)
372 if (!LiveIn)
    [all...]

Completed in 133 milliseconds