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 73 bool LiveOut; ///< Current reg is live out.
LiveIntervalAnalysis.cpp 326 SmallPtrSet<MachineBasicBlock*, 16> LiveOut;
384 if (!LiveOut.insert(*PI))
401 if (!LiveOut.insert(*PI))
    [all...]
StackColoring.cpp 102 BitVector LiveOut;
230 DEBUG(dbgs()<<"LIVEOUT: {");
231 for (unsigned i=0; i < BlockInfo.LiveOut.size(); ++i)
232 DEBUG(dbgs()<<BlockInfo.LiveOut.test(i)<<" ");
333 LocalLiveIn |= I->second.LiveOut;
377 if (LocalLiveOut.test(BlockInfo.LiveOut)) {
379 BlockInfo.LiveOut |= LocalLiveOut;
437 for (int pos = MBBLiveness.LiveOut.find_first(); pos != -1;
438 pos = MBBLiveness.LiveOut.find_next(pos)) {

Completed in 335 milliseconds