Searched refs:Timer (Results 1 - 25 of 44) sorted by relevance

12

/openbsd-current/gnu/llvm/lld/COFF/
H A DCOFFLinkerContext.h20 #include "lld/Common/Timer.h"
65 Timer rootTimer;
66 Timer inputFileTimer;
67 Timer ltoTimer;
68 Timer gcTimer;
69 Timer icfTimer;
72 Timer codeLayoutTimer;
73 Timer outputCommitTimer;
74 Timer totalMapTimer;
75 Timer symbolGatherTime
[all...]
H A DPDB.h21 class Timer;
/openbsd-current/gnu/llvm/lld/include/lld/Common/
H A DTimer.h1 //===- Timer.h ----------------------------------------------*- C++ -*-===//
23 class Timer;
26 explicit ScopedTimer(Timer &t);
34 Timer *t = nullptr;
37 class Timer { class in namespace:lld
39 Timer(llvm::StringRef name, Timer &parent);
42 explicit Timer(llvm::StringRef name);
53 std::vector<Timer *> children;
/openbsd-current/gnu/llvm/lldb/include/lldb/Utility/
H A DTimer.h1 //===-- Timer.h -------------------------------------------------*- C++ -*-===//
20 /// \class Timer Timer.h "lldb/Utility/Timer.h"
23 class Timer { class in namespace:lldb_private
31 friend class Timer;
43 Timer(Category &category, const char *format, ...)
51 ~Timer();
75 Timer(const Timer
[all...]
/openbsd-current/gnu/llvm/lld/Common/
H A DTimer.cpp1 //===- Timer.cpp ----------------------------------------------------------===//
9 #include "lld/Common/Timer.h"
17 ScopedTimer::ScopedTimer(Timer &t) : t(&t) {
30 Timer::Timer(llvm::StringRef name) : total(0), name(std::string(name)) {} function in class:Timer
31 Timer::Timer(llvm::StringRef name, Timer &parent) function in class:Timer
36 void Timer::print() {
50 double Timer
[all...]
/openbsd-current/gnu/llvm/lldb/source/Utility/
H A DTimer.cpp1 //===-- Timer.cpp ---------------------------------------------------------===//
8 #include "lldb/Utility/Timer.h"
29 typedef std::vector<Timer *> TimerStack;
30 static std::atomic<Timer::Category *> g_categories;
33 /// Allows llvm::Timer to emit signposts when supported.
36 std::atomic<bool> Timer::g_quiet(true);
37 std::atomic<unsigned> Timer::g_display_depth(0);
48 Timer::Category::Category(const char *cat) : m_name(cat) {
58 void Timer::SetQuiet(bool value) { g_quiet = value; }
60 Timer function in class:Timer
[all...]
/openbsd-current/gnu/llvm/llvm/include/llvm/IR/
H A DPassTimingInfo.h21 #include "llvm/Support/Timer.h"
37 Timer *getPassTimer(Pass *);
54 using TimerVector = llvm::SmallVector<std::unique_ptr<Timer>, 4>;
59 Timer *ActivePassTimer = nullptr;
62 SmallVector<Timer *, 8> AnalysisActiveTimerStack;
96 Timer &getPassTimer(StringRef PassID, bool IsPass);
/openbsd-current/gnu/llvm/llvm/include/llvm/Support/
H A DTimer.h1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===//
77 /// the Timer will print the amount of time it has captured to standard error
81 class Timer { class in namespace:llvm
88 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in.
90 Timer **Prev = nullptr; ///< Pointer to \p Next of previous timer in group.
91 Timer *Next = nullptr; ///< Next timer in the group.
93 explicit Timer(StringRef TimerName, StringRef TimerDescription) { function in class:llvm::Timer
96 Timer(StringRef TimerName, StringRef TimerDescription, TimerGroup &tg) { function in class:llvm::Timer
99 Timer(const Timer function in class:llvm::Timer
[all...]
/openbsd-current/gnu/llvm/llvm/lib/IR/
H A DPassTimingInfo.cpp65 DenseMap<PassInstanceID, std::unique_ptr<Timer>> TimingData; ///< timers for pass instances
87 Timer *getPassTimer(Pass *, PassInstanceID);
92 Timer *newPassTimer(StringRef PassID, StringRef PassDesc);
121 Timer *PassTimingInfo::newPassTimer(StringRef PassID, StringRef PassDesc) {
127 return new Timer(PassID, PassDescNumbered, TG);
130 Timer *PassTimingInfo::getPassTimer(Pass *P, PassInstanceID Pass) {
136 std::unique_ptr<Timer> &T = TimingData[Pass];
152 Timer *getPassTimer(Pass *P) {
172 Timer &TimePassesHandler::getPassTimer(StringRef PassID, bool IsPass) {
177 Timers.emplace_back(new Timer(PassI
[all...]
/openbsd-current/usr.sbin/bgpd/
H A Dtimer.c40 timer_get(struct timer_head *th, enum Timer timer)
73 timer_running(struct timer_head *th, enum Timer timer, time_t *left)
86 timer_set(struct timer_head *th, enum Timer timer, u_int offset)
113 timer_stop(struct timer_head *th, enum Timer timer)
125 timer_remove(struct timer_head *th, enum Timer timer)
H A Dsession.h165 enum Timer { enum
184 enum Timer type;
237 enum Timer type;
336 struct timer *timer_get(struct timer_head *, enum Timer);
339 int timer_running(struct timer_head *, enum Timer, time_t *);
340 void timer_set(struct timer_head *, enum Timer, u_int);
341 void timer_stop(struct timer_head *, enum Timer);
342 void timer_remove(struct timer_head *, enum Timer);
/openbsd-current/gnu/usr.bin/clang/liblldCommon/
H A DMakefile19 Timer.cpp \
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DTimer.cpp1 //===-- Timer.cpp - Interval Timing Support -------------------------------===//
13 #include "llvm/Support/Timer.h"
55 /// Allows llvm::Timer to emit signposts when supported.
129 // Timer Implementation
132 void Timer::init(StringRef TimerName, StringRef TimerDescription) {
136 void Timer::init(StringRef TimerName, StringRef TimerDescription,
138 assert(!TG && "Timer already initialized");
146 Timer::~Timer() {
190 void Timer
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerUtilWindows.cpp110 HANDLE Timer; local
111 if (!CreateTimerQueueTimer(&Timer, TimerQueue, AlarmHandler, NULL,
119 static TimerQ Timer; member in namespace:fuzzer
127 Timer.SetTimer(Options.UnitTimeoutSec / 2 + 1);
/openbsd-current/gnu/llvm/lldb/tools/debugserver/source/
H A DRNBSocket.h56 DNBTimer &Timer() { return m_timer; } function in class:RNBSocket
/openbsd-current/gnu/llvm/lldb/source/Plugins/SymbolVendor/MacOSX/
H A DSymbolVendorMacOSX.cpp24 #include "lldb/Utility/Timer.h"
100 static Timer::Category func_cat(LLVM_PRETTY_FUNCTION);
101 Timer scoped_timer(func_cat,
110 static Timer::Category func_cat2(
112 Timer scoped_timer2(
/openbsd-current/gnu/usr.bin/clang/liblldbUtility/
H A DMakefile47 Timer.cpp \
/openbsd-current/gnu/llvm/llvm/utils/yaml-bench/
H A DYAMLBench.cpp20 #include "llvm/Support/Timer.h"
147 llvm::Timer BaseLine((Name + ".loop").str(), (Description + ": Loop").str(),
157 llvm::Timer Tokenizing((Name + ".tokenizing").str(),
165 llvm::Timer Parsing((Name + ".parsing").str(),
/openbsd-current/gnu/llvm/lldb/source/Commands/
H A DCommandObjectLog.cpp22 #include "lldb/Utility/Timer.h"
460 Timer::SetDisplayDepth(UINT32_MAX);
468 Timer::SetDisplayDepth(depth);
493 Timer::DumpCategoryTimes(&result.GetOutputStream());
494 Timer::SetDisplayDepth(0);
516 Timer::DumpCategoryTimes(&result.GetOutputStream());
539 Timer::ResetCategoryTimes();
591 Timer::SetQuiet(!increment);
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp42 #include "llvm/Support/Timer.h"
115 std::unique_ptr<llvm::Timer> SyntaxCheckTimer;
116 std::unique_ptr<llvm::Timer> ExprEngineTimer;
117 std::unique_ptr<llvm::Timer> BugReporterTimer;
135 SyntaxCheckTimer = std::make_unique<llvm::Timer>(
137 ExprEngineTimer = std::make_unique<llvm::Timer>(
139 BugReporterTimer = std::make_unique<llvm::Timer>(
/openbsd-current/gnu/llvm/llvm/include/llvm/Debuginfod/
H A DDebuginfod.h32 #include "llvm/Support/Timer.h"
121 Timer UpdateTimer;
/openbsd-current/gnu/llvm/lldb/examples/python/
H A Dperformance.py61 class Timer: class in inherits:
363 with Timer() as total_time:
366 with Timer() as breakpoint_timer:
/openbsd-current/gnu/llvm/clang/include/clang/Frontend/
H A DCompilerInstance.h35 class Timer;
117 std::unique_ptr<llvm::Timer> FrontendTimer;
578 llvm::Timer &getFrontendTimer() const {
/openbsd-current/gnu/llvm/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp25 #include "llvm/Support/Timer.h"
433 TimeBucketRegion Timer; local
436 Timer.setBucket(&TimeByBucket[MC->getID()]);
443 TimeBucketRegion Timer; local
446 Timer.setBucket(&TimeByBucket[MC->getID()]);
1014 TimeBucketRegion Timer; local
1017 Timer.setBucket(&TimeByBucket[MP.second->getID()]);
1037 TimeBucketRegion Timer; local
1042 Timer.setBucket(&TimeByBucket[MP.second->getID()]);
/openbsd-current/gnu/usr.bin/clang/libLLVMSupport/
H A DMakefile.shared128 Timer.cpp \

Completed in 343 milliseconds

12