summaryrefslogtreecommitdiff
path: root/llvm/lib/Analysis/ImportedFunctionsInliningStatistics.cpp
AgeCommit message (Collapse)Author
2024-11-05[Analysis] Remove unused includes (NFC) (#114936)Kazu Hirata
Identified with misc-include-cleaner.
2024-06-21[llvm] format and terminate namespaces with closing comment (#94917)Mohammed Keyvanzadeh
Namespaces are terminated with a closing comment in the majority of the codebase so do the same here for consistency. Also format code within some namespaces to make clang-format happy.
2024-06-14[llvm] Use llvm::unique (NFC) (#95628)Kazu Hirata
2022-11-24[Inliner] Move cl::opt inside llvm::Fangrui Song
2021-04-19[Analysis] ImportedFunctionsInliningStatistics.h - add <memory> and remove ↵Simon Pilgrim
unused <string> include. NFCI. Move <string> include to ImportedFunctionsInliningStatistics.cpp and add missing <memory> include as we have explicit uses of std::unique_ptr in the header.
2021-01-20Reland "[NPM][Inliner] Factor ImportedFunctionStats in the InlineAdvisor"Mircea Trofin
This reverts commit d97f776be5f8cd3cd446fe73827cd355f6bab4e1. The original problem was due to build failures in shared lib builds. D95079 moved ImportedFunctionsInliningStatistics under Analysis, unblocking this.
2021-01-20[NFC] Move ImportedFunctionsInliningStatistics to AnalysisMircea Trofin
This is related to D94982. We want to call these APIs from the Analysis component, so we can't leave them under Transforms. Differential Revision: https://reviews.llvm.org/D95079