Searched defs:LiveIntervals (Results 1 - 3 of 3) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DLiveIntervalAnalysis.h49 class LiveIntervals : public MachineFunctionPass { class in namespace:llvm
106 LiveIntervals();
107 virtual ~LiveIntervals();
119 return const_cast<LiveIntervals*>(this)->getInterval(Reg);
257 /// handleMove - call this method to notify LiveIntervals that
/external/llvm/lib/CodeGen/
H A DLiveIntervalAnalysis.cpp48 char LiveIntervals::ID = 0;
49 char &llvm::LiveIntervalsID = LiveIntervals::ID;
50 INITIALIZE_PASS_BEGIN(LiveIntervals, "liveintervals",
56 INITIALIZE_PASS_END(LiveIntervals, "liveintervals",
59 void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const {
73 LiveIntervals::LiveIntervals() : MachineFunctionPass(ID), function in class:LiveIntervals
78 LiveIntervals::~LiveIntervals() {
82 void LiveIntervals
[all...]
H A DStrongPHIElimination.cpp147 LiveIntervals *LI;
182 MIIndexCompare(LiveIntervals *LiveIntervals) : LI(LiveIntervals) { } argument
188 LiveIntervals *LI;
201 INITIALIZE_PASS_DEPENDENCY(LiveIntervals)
212 AU.addRequired<LiveIntervals>();
213 AU.addPreserved<LiveIntervals>();
237 LI = &getAnalysis<LiveIntervals>();
727 // never rely on LiveIntervals bein
[all...]

Completed in 215 milliseconds