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

  /external/llvm/lib/CodeGen/
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();
SplitKit.h 71 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);
StackColoring.cpp 99 BitVector LiveIn;
225 for (unsigned i=0; i < BlockInfo.LiveIn.size(); ++i)
226 DEBUG(dbgs()<<BlockInfo.LiveIn.test(i)<<" ");
342 LocalLiveOut |= I->second.LiveIn;
367 if (LocalLiveIn.test(BlockInfo.LiveIn)) {
369 BlockInfo.LiveIn |= LocalLiveIn;
431 BitVector Alive = BlockLiveness[MBB].LiveIn;

Completed in 154 milliseconds