HomeSort by relevance Sort by last modified time
    Searched defs:LiveIn (Results 1 - 6 of 6) 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.
118 /// blocks in LiveIn. Create PHI-def values as required to preserve SSA form.
124 /// Add liveness as specified in the LiveIn vector.
222 LiveIn.push_back(LiveInBlock(LR, DomNode, Kill));
SplitKit.h 72 bool LiveIn; ///< Current reg is live in.
VirtRegMap.cpp 241 SmallVector<MachineBasicBlock*, 16> LiveIn;
257 if (!Indexes->findLiveInMBBs(I->start, I->end, LiveIn))
259 for (unsigned i = 0, e = LiveIn.size(); i != e; ++i)
260 if (!LiveIn[i]->isLiveIn(PhysReg))
261 LiveIn[i]->addLiveIn(PhysReg);
262 LiveIn.clear();
MachineCSE.cpp 578 // livein list.
580 unsigned LiveIn = PhysDefs.pop_back_val();
581 if (!MBB->isLiveIn(LiveIn))
582 MBB->addLiveIn(LiveIn);
MachineBasicBlock.cpp 359 bool LiveIn = isLiveIn(PhysReg);
365 if (LiveIn)
378 if (!LiveIn)
    [all...]
StackColoring.cpp 102 BitVector LiveIn;
217 for (unsigned i=0; i < BlockInfo.LiveIn.size(); ++i)
218 DEBUG(dbgs()<<BlockInfo.LiveIn.test(i)<<" ");
327 LocalLiveOut |= I->second.LiveIn;
352 if (LocalLiveIn.test(BlockInfo.LiveIn)) {
354 BlockInfo.LiveIn |= LocalLiveIn;
410 for (int pos = MBBLiveness.LiveIn.find_first(); pos != -1;
411 pos = MBBLiveness.LiveIn.find_next(pos)) {

Completed in 68 milliseconds