diff options
| author | Patrick Walton <pcwalton@fb.com> | 2022-11-05 01:08:57 -0700 |
|---|---|---|
| committer | khei4 <kk.asano.luxy@gmail.com> | 2023-07-16 22:56:04 +0900 |
| commit | 2d47816cbaebb3b8f400b11fa122feae00fd5c58 (patch) | |
| tree | 790c456908b74596d709a0e5fb40dc812d72fd96 /compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp | |
| parent | 55be59d2cefe33529a07b0e011384658c9240035 (diff) | |
| download | rust-2d47816cbaebb3b8f400b11fa122feae00fd5c58.tar.gz rust-2d47816cbaebb3b8f400b11fa122feae00fd5c58.zip | |
rustc_llvm: Add a `-Z print-llvm-stats` option to expose LLVM statistics.
LLVM has a neat [statistics] feature that tracks how often optimizations kick in. It's very handy for optimization work. Since we expose the LLVM pass timings, I thought it made sense to expose the LLVM statistics too. [statistics]: https://llvm.org/docs/ProgrammersManual.html#the-statistic-class-stats-option
Diffstat (limited to 'compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp')
| -rw-r--r-- | compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp b/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp index ab5fa961b95..89beb09db75 100644 --- a/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp +++ b/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp @@ -1,4 +1,5 @@ #include "LLVMWrapper.h" +#include "llvm/ADT/Statistic.h" #include "llvm/IR/DebugInfoMetadata.h" #include "llvm/IR/DiagnosticHandler.h" #include "llvm/IR/DiagnosticInfo.h" @@ -116,6 +117,11 @@ extern "C" void LLVMRustPrintPassTimings() { TimerGroup::printAll(OS); } +extern "C" void LLVMRustPrintStatistics() { + raw_fd_ostream OS(2, false); // stderr. + llvm::PrintStatistics(OS); +} + extern "C" LLVMValueRef LLVMRustGetNamedValue(LLVMModuleRef M, const char *Name, size_t NameLen) { return wrap(unwrap(M)->getNamedValue(StringRef(Name, NameLen))); |
