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

  /external/llvm/lib/CodeGen/
LiveRangeCalc.h 43 /// Seen - Bit vector of active entries in LiveOut, also used as a visited
56 /// LiveOut - Map each basic block where a live range is live out to the
63 /// 2. LiveOut[MBB].second.getNode() == MBB
65 /// 3. forall P in preds(MBB): LiveOut[P] == LiveOut[MBB]
73 LiveOutMap LiveOut;
212 LiveOut[MBB] = LiveOutPair(VNI, (MachineDomTreeNode *)0);
SplitKit.h 72 bool LiveOut; ///< Current reg is live out.
LiveIntervalAnalysis.cpp 315 SmallPtrSet<MachineBasicBlock*, 16> LiveOut;
373 if (!LiveOut.insert(*PI))
390 if (!LiveOut.insert(*PI))
    [all...]
StackColoring.cpp 101 BitVector LiveOut;
229 DEBUG(dbgs()<<"LIVEOUT: {");
230 for (unsigned i=0; i < BlockInfo.LiveOut.size(); ++i)
231 DEBUG(dbgs()<<BlockInfo.LiveOut.test(i)<<" ");
332 LocalLiveIn |= I->second.LiveOut;
376 if (LocalLiveOut.test(BlockInfo.LiveOut)) {
378 BlockInfo.LiveOut |= LocalLiveOut;
432 Alive |= BlockLiveness[MBB].LiveOut;

Completed in 6011 milliseconds