Home
last modified time | relevance | path

Searched refs:timerGroup (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp724 timerGroup.reset(new llvm::TimerGroup("clang", "Clang time report")); in createFrontendTimer()
725 FrontendTimer.reset(new llvm::Timer("frontend", "Front end", *timerGroup)); in createFrontendTimer()
1744 if (timerGroup) in createASTReader()
1746 "Reading modules", *timerGroup); in createASTReader()
1776 if (timerGroup) in loadModuleFile()
1778 *timerGroup); in loadModuleFile()
1779 llvm::TimeRegion TimeLoading(timerGroup ? &Timer : nullptr); in loadModuleFile()
1910 if (timerGroup) in findOrCompileModuleAndReadAST()
1912 *timerGroup); in findOrCompileModuleAndReadAST()
1913 llvm::TimeRegion TimeLoading(timerGroup ? &Timer : nullptr); in findOrCompileModuleAndReadAST()
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DCompilerInstance.h128 std::unique_ptr<llvm::TimerGroup> timerGroup; variable
618 llvm::TimerGroup &getTimerGroup() const { return *timerGroup; } in getTimerGroup()