[TimePasses] allow -time-passes reporting into a custom stream
authorFedor Sergeev <fedor.sergeev@azul.com>
Fri, 15 Mar 2019 22:15:23 +0000 (22:15 +0000)
committerFedor Sergeev <fedor.sergeev@azul.com>
Fri, 15 Mar 2019 22:15:23 +0000 (22:15 +0000)
commit6a9c2f4f98817b8c4e38c7d1fde00a8837694bce
tree94cf3e440c3805278f195df166df8ed38b3e0114
parent3739a208757308b59e84fbba755e875059583995
[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
llvm/include/llvm/IR/PassTimingInfo.h
llvm/include/llvm/Passes/StandardInstrumentations.h
llvm/lib/IR/PassTimingInfo.cpp
llvm/test/Other/time-passes.ll
llvm/unittests/IR/CMakeLists.txt
llvm/unittests/IR/TimePassesTest.cpp [new file with mode: 0644]