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
99 LiveIntervals();
100 virtual ~LiveIntervals();
112 return const_cast<LiveIntervals*>(this)->getInterval(Reg);
265 /// handleMove - call this method to notify LiveIntervals that
/external/llvm/lib/CodeGen/
H A DLiveIntervalAnalysis.cpp44 char LiveIntervals::ID = 0;
45 char &llvm::LiveIntervalsID = LiveIntervals::ID;
46 INITIALIZE_PASS_BEGIN(LiveIntervals, "liveintervals",
52 INITIALIZE_PASS_END(LiveIntervals, "liveintervals",
63 void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const {
80 LiveIntervals::LiveIntervals() : MachineFunctionPass(ID), function in class:LiveIntervals
85 LiveIntervals::~LiveIntervals() {
89 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 92 milliseconds