1 //===- PassTimingInfo.cpp - LLVM Pass Timing Implementation ---------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file implements the LLVM Pass Timing infrastructure for both
10 // new and legacy pass managers.
12 // PassTimingInfo Class - This class is used to calculate information about the
13 // amount of time each pass takes to execute. This only happens when
14 // -time-passes is enabled on the command line.
16 //===----------------------------------------------------------------------===//
18 #include "llvm/IR/PassTimingInfo.h"
19 #include "llvm/ADT/Statistic.h"
20 #include "llvm/IR/PassInstrumentation.h"
21 #include "llvm/Pass.h"
22 #include "llvm/Support/CommandLine.h"
23 #include "llvm/Support/Debug.h"
24 #include "llvm/Support/FormatVariadic.h"
25 #include "llvm/Support/ManagedStatic.h"
26 #include "llvm/Support/Mutex.h"
27 #include "llvm/Support/TypeName.h"
28 #include "llvm/Support/raw_ostream.h"
33 #define DEBUG_TYPE "time-passes"
37 bool TimePassesIsEnabled
= false;
38 bool TimePassesPerRun
= false;
40 static cl::opt
<bool, true> EnableTiming(
41 "time-passes", cl::location(TimePassesIsEnabled
), cl::Hidden
,
42 cl::desc("Time each pass, printing elapsed time for each on exit"));
44 static cl::opt
<bool, true> EnableTimingPerRun(
45 "time-passes-per-run", cl::location(TimePassesPerRun
), cl::Hidden
,
46 cl::desc("Time each pass run, printing elapsed time for each run on exit"),
47 cl::callback([](const bool &) { TimePassesIsEnabled
= true; }));
52 //===----------------------------------------------------------------------===//
53 // Legacy pass manager's PassTimingInfo implementation
55 /// Provides an interface for collecting pass timing information.
57 /// It was intended to be generic but now we decided to split
58 /// interfaces completely. This is now exclusively for legacy-pass-manager use.
59 class PassTimingInfo
{
61 using PassInstanceID
= void *;
64 StringMap
<unsigned> PassIDCountMap
; ///< Map that counts instances of passes
65 DenseMap
<PassInstanceID
, std::unique_ptr
<Timer
>> TimingData
; ///< timers for pass instances
69 /// Default constructor for yet-inactive timeinfo.
70 /// Use \p init() to activate it.
73 /// Print out timing information and release timers.
76 /// Initializes the static \p TheTimeInfo member to a non-null value when
77 /// -time-passes is enabled. Leaves it null otherwise.
79 /// This method may be called multiple times.
82 /// Prints out timing information and then resets the timers.
83 /// By default it uses the stream created by CreateInfoOutputFile().
84 void print(raw_ostream
*OutStream
= nullptr);
86 /// Returns the timer for the specified pass if it exists.
87 Timer
*getPassTimer(Pass
*, PassInstanceID
);
89 static PassTimingInfo
*TheTimeInfo
;
92 Timer
*newPassTimer(StringRef PassID
, StringRef PassDesc
);
95 static ManagedStatic
<sys::SmartMutex
<true>> TimingInfoMutex
;
97 PassTimingInfo::PassTimingInfo()
98 : TG("pass", "... Pass execution timing report ...") {}
100 PassTimingInfo::~PassTimingInfo() {
101 // Deleting the timers accumulates their info into the TG member.
102 // Then TG member is (implicitly) deleted, actually printing the report.
106 void PassTimingInfo::init() {
107 if (!TimePassesIsEnabled
|| TheTimeInfo
)
110 // Constructed the first time this is called, iff -time-passes is enabled.
111 // This guarantees that the object will be constructed after static globals,
112 // thus it will be destroyed before them.
113 static ManagedStatic
<PassTimingInfo
> TTI
;
117 /// Prints out timing information and then resets the timers.
118 void PassTimingInfo::print(raw_ostream
*OutStream
) {
119 TG
.print(OutStream
? *OutStream
: *CreateInfoOutputFile(), true);
122 Timer
*PassTimingInfo::newPassTimer(StringRef PassID
, StringRef PassDesc
) {
123 unsigned &num
= PassIDCountMap
[PassID
];
125 // Appending description with a pass-instance number for all but the first one
126 std::string PassDescNumbered
=
127 num
<= 1 ? PassDesc
.str() : formatv("{0} #{1}", PassDesc
, num
).str();
128 return new Timer(PassID
, PassDescNumbered
, TG
);
131 Timer
*PassTimingInfo::getPassTimer(Pass
*P
, PassInstanceID Pass
) {
132 if (P
->getAsPMDataManager())
136 sys::SmartScopedLock
<true> Lock(*TimingInfoMutex
);
137 std::unique_ptr
<Timer
> &T
= TimingData
[Pass
];
140 StringRef PassName
= P
->getPassName();
141 StringRef PassArgument
;
142 if (const PassInfo
*PI
= Pass::lookupPassInfo(P
->getPassID()))
143 PassArgument
= PI
->getPassArgument();
144 T
.reset(newPassTimer(PassArgument
.empty() ? PassName
: PassArgument
, PassName
));
149 PassTimingInfo
*PassTimingInfo::TheTimeInfo
;
150 } // namespace legacy
153 Timer
*getPassTimer(Pass
*P
) {
154 legacy::PassTimingInfo::init();
155 if (legacy::PassTimingInfo::TheTimeInfo
)
156 return legacy::PassTimingInfo::TheTimeInfo
->getPassTimer(P
, P
);
160 /// If timing is enabled, report the times collected up to now and then reset
162 void reportAndResetTimings(raw_ostream
*OutStream
) {
163 if (legacy::PassTimingInfo::TheTimeInfo
)
164 legacy::PassTimingInfo::TheTimeInfo
->print(OutStream
);
167 //===----------------------------------------------------------------------===//
168 // Pass timing handling for the New Pass Manager
169 //===----------------------------------------------------------------------===//
171 /// Returns the timer for the specified pass invocation of \p PassID.
172 /// Each time it creates a new timer.
173 Timer
&TimePassesHandler::getPassTimer(StringRef PassID
) {
175 TimerVector
&Timers
= TimingData
[PassID
];
176 if (Timers
.size() == 0)
177 Timers
.emplace_back(new Timer(PassID
, PassID
, TG
));
178 return *Timers
.front();
181 // Take a vector of Timers created for this \p PassID and append
182 // one more timer to it.
183 TimerVector
&Timers
= TimingData
[PassID
];
184 unsigned Count
= Timers
.size() + 1;
186 std::string FullDesc
= formatv("{0} #{1}", PassID
, Count
).str();
188 Timer
*T
= new Timer(PassID
, FullDesc
, TG
);
189 Timers
.emplace_back(T
);
190 assert(Count
== Timers
.size() && "sanity check");
195 TimePassesHandler::TimePassesHandler(bool Enabled
, bool PerRun
)
196 : TG("pass", "... Pass execution timing report ..."), Enabled(Enabled
),
199 TimePassesHandler::TimePassesHandler()
200 : TimePassesHandler(TimePassesIsEnabled
, TimePassesPerRun
) {}
202 void TimePassesHandler::setOutStream(raw_ostream
&Out
) {
206 void TimePassesHandler::print() {
209 TG
.print(OutStream
? *OutStream
: *CreateInfoOutputFile(), true);
212 LLVM_DUMP_METHOD
void TimePassesHandler::dump() const {
213 dbgs() << "Dumping timers for " << getTypeName
<TimePassesHandler
>()
214 << ":\n\tRunning:\n";
215 for (auto &I
: TimingData
) {
216 StringRef PassID
= I
.getKey();
217 const TimerVector
& MyTimers
= I
.getValue();
218 for (unsigned idx
= 0; idx
< MyTimers
.size(); idx
++) {
219 const Timer
* MyTimer
= MyTimers
[idx
].get();
220 if (MyTimer
&& MyTimer
->isRunning())
221 dbgs() << "\tTimer " << MyTimer
<< " for pass " << PassID
<< "(" << idx
<< ")\n";
224 dbgs() << "\tTriggered:\n";
225 for (auto &I
: TimingData
) {
226 StringRef PassID
= I
.getKey();
227 const TimerVector
& MyTimers
= I
.getValue();
228 for (unsigned idx
= 0; idx
< MyTimers
.size(); idx
++) {
229 const Timer
* MyTimer
= MyTimers
[idx
].get();
230 if (MyTimer
&& MyTimer
->hasTriggered() && !MyTimer
->isRunning())
231 dbgs() << "\tTimer " << MyTimer
<< " for pass " << PassID
<< "(" << idx
<< ")\n";
236 void TimePassesHandler::startTimer(StringRef PassID
) {
237 Timer
&MyTimer
= getPassTimer(PassID
);
238 TimerStack
.push_back(&MyTimer
);
239 if (!MyTimer
.isRunning())
240 MyTimer
.startTimer();
243 void TimePassesHandler::stopTimer(StringRef PassID
) {
244 assert(TimerStack
.size() > 0 && "empty stack in popTimer");
245 Timer
*MyTimer
= TimerStack
.pop_back_val();
246 assert(MyTimer
&& "timer should be present");
247 if (MyTimer
->isRunning())
248 MyTimer
->stopTimer();
251 void TimePassesHandler::runBeforePass(StringRef PassID
) {
252 if (isSpecialPass(PassID
,
253 {"PassManager", "PassAdaptor", "AnalysisManagerProxy"}))
258 LLVM_DEBUG(dbgs() << "after runBeforePass(" << PassID
<< ")\n");
262 void TimePassesHandler::runAfterPass(StringRef PassID
) {
263 if (isSpecialPass(PassID
,
264 {"PassManager", "PassAdaptor", "AnalysisManagerProxy"}))
269 LLVM_DEBUG(dbgs() << "after runAfterPass(" << PassID
<< ")\n");
273 void TimePassesHandler::registerCallbacks(PassInstrumentationCallbacks
&PIC
) {
277 PIC
.registerBeforeNonSkippedPassCallback(
278 [this](StringRef P
, Any
) { this->runBeforePass(P
); });
279 PIC
.registerAfterPassCallback(
280 [this](StringRef P
, Any
, const PreservedAnalyses
&) {
281 this->runAfterPass(P
);
283 PIC
.registerAfterPassInvalidatedCallback(
284 [this](StringRef P
, const PreservedAnalyses
&) {
285 this->runAfterPass(P
);
287 PIC
.registerBeforeAnalysisCallback(
288 [this](StringRef P
, Any
) { this->runBeforePass(P
); });
289 PIC
.registerAfterAnalysisCallback(
290 [this](StringRef P
, Any
) { this->runAfterPass(P
); });