diff options
| author | Fedor Sergeev <fedor.sergeev@azul.com> | 2019-03-15 22:15:23 +0000 | 
|---|---|---|
| committer | Fedor Sergeev <fedor.sergeev@azul.com> | 2019-03-15 22:15:23 +0000 | 
| commit | 6a9c2f4f98817b8c4e38c7d1fde00a8837694bce (patch) | |
| tree | 94cf3e440c3805278f195df166df8ed38b3e0114 /llvm/lib/IR/PassTimingInfo.cpp | |
| parent | 3739a208757308b59e84fbba755e875059583995 (diff) | |
| download | bcm5719-llvm-6a9c2f4f98817b8c4e38c7d1fde00a8837694bce.tar.gz bcm5719-llvm-6a9c2f4f98817b8c4e38c7d1fde00a8837694bce.zip  | |
[TimePasses] allow -time-passes reporting into a custom stream
TimePassesHandler object (implementation of time-passes for new pass manager)
gains ability to report into a stream customizable per-instance (per pipeline).
Intended use is to specify separate time-passes output stream per each compilation,
setting up TimePasses member of StandardInstrumentation during PassBuilder setup.
That allows to get independent non-overlapping pass-times reports for parallel
independent compilations (in JIT-like setups).
By default it still puts timing reports into the info-output-file stream
(created by CreateInfoOutputFile every time report is requested).
Unit-test added for non-default case, and it also allowed to discover that print() does not work
as declared - it did not reset the timers, leading to yet another report being printed into the default stream.
Fixed print() to actually reset timers according to what was declared in print's comments before.
Reviewed By: philip.pfaffe
Differential Revision: https://reviews.llvm.org/D59366
llvm-svn: 356305
Diffstat (limited to 'llvm/lib/IR/PassTimingInfo.cpp')
| -rw-r--r-- | llvm/lib/IR/PassTimingInfo.cpp | 11 | 
1 files changed, 10 insertions, 1 deletions
diff --git a/llvm/lib/IR/PassTimingInfo.cpp b/llvm/lib/IR/PassTimingInfo.cpp index 57efdca423f..dcbfff1a161 100644 --- a/llvm/lib/IR/PassTimingInfo.cpp +++ b/llvm/lib/IR/PassTimingInfo.cpp @@ -181,7 +181,16 @@ Timer &TimePassesHandler::getPassTimer(StringRef PassID) {  TimePassesHandler::TimePassesHandler(bool Enabled)      : TG("pass", "... Pass execution timing report ..."), Enabled(Enabled) {} -void TimePassesHandler::print() { TG.print(*CreateInfoOutputFile()); } +void TimePassesHandler::setOutStream(raw_ostream &Out) { +  OutStream = &Out; +} + +void TimePassesHandler::print() { +  if (!Enabled) +    return; +  TG.print(OutStream ? *OutStream : *CreateInfoOutputFile()); +  TG.clear(); +}  LLVM_DUMP_METHOD void TimePassesHandler::dump() const {    dbgs() << "Dumping timers for " << getTypeName<TimePassesHandler>()  | 

