Lines Matching refs:MyTimer
191 const Timer *MyTimer = I.second.get(); in dump() local
192 if (!MyTimer || MyTimer->isRunning()) in dump()
193 dbgs() << "\tTimer " << MyTimer << " for pass " << I.first.first << "(" in dump()
198 const Timer *MyTimer = I.second.get(); in dump() local
199 if (!MyTimer || (MyTimer->hasTriggered() && !MyTimer->isRunning())) in dump()
200 dbgs() << "\tTimer " << MyTimer << " for pass " << I.first.first << "(" in dump()
206 Timer &MyTimer = getPassTimer(PassID); in startTimer() local
207 TimerStack.push_back(&MyTimer); in startTimer()
208 if (!MyTimer.isRunning()) in startTimer()
209 MyTimer.startTimer(); in startTimer()
214 Timer *MyTimer = TimerStack.pop_back_val(); in stopTimer() local
215 assert(MyTimer && "timer should be present"); in stopTimer()
216 if (MyTimer->isRunning()) in stopTimer()
217 MyTimer->stopTimer(); in stopTimer()