Home
last modified time | relevance | path

Searched refs:TimerGroup (Results 1 – 23 of 23) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DTimer.cpp80 return new TimerGroup("misc", "Miscellaneous Ungrouped Timers"); in call()
84 static ManagedStatic<TimerGroup, CreateDefaultTimerGroup> DefaultTimerGroup;
85 static TimerGroup *getDefaultTimerGroup() { return &*DefaultTimerGroup; } in getDefaultTimerGroup()
95 void Timer::init(StringRef Name, StringRef Description, TimerGroup &tg) { in init()
184 StringMap<std::pair<TimerGroup*, Name2TimerMap> > Map;
187 for (StringMap<std::pair<TimerGroup*, Name2TimerMap> >::iterator in ~Name2PairMap()
196 std::pair<TimerGroup*, Name2TimerMap> &GroupEntry = Map[GroupName]; in get()
199 GroupEntry.first = new TimerGroup(GroupName, GroupDescription); in get()
225 static TimerGroup *TimerGroupList = nullptr;
227 TimerGroup::TimerGroup(StringRef Name, StringRef Description) in TimerGroup() function in TimerGroup
[all …]
DStatistic.cpp120 TimerGroup::ConstructTimerLists(); in StatisticInfo()
223 TimerGroup::printAllJSONValues(OS, delim); in PrintStatisticsJSON()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DTimer.cpp76 static TimerGroup *DefaultTimerGroup = nullptr;
77 static TimerGroup *getDefaultTimerGroup() { in getDefaultTimerGroup()
78 TimerGroup *tmp = DefaultTimerGroup; in getDefaultTimerGroup()
85 tmp = new TimerGroup("misc", "Miscellaneous Ungrouped Timers"); in getDefaultTimerGroup()
101 void Timer::init(StringRef Name, StringRef Description, TimerGroup &tg) { in init()
190 StringMap<std::pair<TimerGroup*, Name2TimerMap> > Map;
193 for (StringMap<std::pair<TimerGroup*, Name2TimerMap> >::iterator in ~Name2PairMap()
202 std::pair<TimerGroup*, Name2TimerMap> &GroupEntry = Map[GroupName]; in get()
205 GroupEntry.first = new TimerGroup(GroupName, GroupDescription); in get()
231 static TimerGroup *TimerGroupList = nullptr;
[all …]
/external/swiftshader/third_party/LLVM/lib/Support/
DTimer.cpp81 static TimerGroup *DefaultTimerGroup = 0;
82 static TimerGroup *getDefaultTimerGroup() { in getDefaultTimerGroup()
83 TimerGroup *tmp = DefaultTimerGroup; in getDefaultTimerGroup()
90 tmp = new TimerGroup("Miscellaneous Ungrouped Timers"); in getDefaultTimerGroup()
111 void Timer::init(StringRef N, TimerGroup &tg) { in init()
202 StringMap<std::pair<TimerGroup*, Name2TimerMap> > Map;
205 for (StringMap<std::pair<TimerGroup*, Name2TimerMap> >::iterator in ~Name2PairMap()
213 std::pair<TimerGroup*, Name2TimerMap> &GroupEntry = Map[GroupName]; in get()
216 GroupEntry.first = new TimerGroup(GroupName); in get()
253 static TimerGroup *TimerGroupList = 0;
[all …]
/external/llvm/lib/Support/
DTimer.cpp77 static TimerGroup *DefaultTimerGroup = nullptr;
78 static TimerGroup *getDefaultTimerGroup() { in getDefaultTimerGroup()
79 TimerGroup *tmp = DefaultTimerGroup; in getDefaultTimerGroup()
86 tmp = new TimerGroup("Miscellaneous Ungrouped Timers"); in getDefaultTimerGroup()
102 void Timer::init(StringRef N, TimerGroup &tg) { in init()
188 StringMap<std::pair<TimerGroup*, Name2TimerMap> > Map;
191 for (StringMap<std::pair<TimerGroup*, Name2TimerMap> >::iterator in ~Name2PairMap()
199 std::pair<TimerGroup*, Name2TimerMap> &GroupEntry = Map[GroupName]; in get()
202 GroupEntry.first = new TimerGroup(GroupName); in get()
239 static TimerGroup *TimerGroupList = nullptr;
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DTimer.h28 class TimerGroup; variable
88 TimerGroup *TG; // The TimerGroup this Timer is in.
93 Timer(StringRef N, TimerGroup &tg) : TG(0) { init(N, tg); } in Timer()
106 void init(StringRef N, TimerGroup &tg);
122 friend class TimerGroup;
165 class TimerGroup {
170 TimerGroup **Prev, *Next; // Doubly linked list of TimerGroup's.
171 TimerGroup(const TimerGroup &TG); // DO NOT IMPLEMENT
172 void operator=(const TimerGroup &TG); // DO NOT IMPLEMENT
174 explicit TimerGroup(StringRef name);
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DTimer.h24 class TimerGroup; variable
84 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in.
92 Timer(StringRef Name, StringRef Description, TimerGroup &tg) { in Timer()
107 void init(StringRef Name, StringRef Description, TimerGroup &tg);
134 friend class TimerGroup;
171 class TimerGroup {
191 TimerGroup **Prev; ///< Pointer to Next field of previous timergroup in list.
192 TimerGroup *Next; ///< Pointer to next timergroup in list.
193 TimerGroup(const TimerGroup &TG) = delete;
194 void operator=(const TimerGroup &TG) = delete;
[all …]
/external/llvm/include/llvm/Support/
DTimer.h23 class TimerGroup; variable
84 TimerGroup *TG; // The TimerGroup this Timer is in.
89 Timer(StringRef N, TimerGroup &tg) : TG(nullptr) { init(N, tg); } in Timer()
102 void init(StringRef N, TimerGroup &tg);
128 friend class TimerGroup;
169 class TimerGroup {
174 TimerGroup **Prev, *Next; // Doubly linked list of TimerGroup's.
175 TimerGroup(const TimerGroup &TG) = delete;
176 void operator=(const TimerGroup &TG) = delete;
179 explicit TimerGroup(StringRef name);
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DTimer.h23 class TimerGroup; variable
83 TimerGroup *TG = nullptr; ///< The TimerGroup this Timer is in.
91 Timer(StringRef Name, StringRef Description, TimerGroup &tg) { in Timer()
106 void init(StringRef Name, StringRef Description, TimerGroup &tg);
133 friend class TimerGroup;
170 class TimerGroup {
190 TimerGroup **Prev; ///< Pointer to Next field of previous timergroup in list.
191 TimerGroup *Next; ///< Pointer to next timergroup in list.
192 TimerGroup(const TimerGroup &TG) = delete;
193 void operator=(const TimerGroup &TG) = delete;
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/utils/yaml-bench/
DYAMLBench.cpp146 static void benchmark(llvm::TimerGroup &Group, llvm::StringRef Name, in benchmark()
223 llvm::TimerGroup Group("yaml", "YAML parser benchmark"); in main()
226 llvm::TimerGroup Group("yaml", "YAML parser benchmark"); in main()
/external/llvm/utils/yaml-bench/
DYAMLBench.cpp146 static void benchmark( llvm::TimerGroup &Group in benchmark()
221 llvm::TimerGroup Group("YAML parser benchmark"); in main()
224 llvm::TimerGroup Group("YAML parser benchmark"); in main()
/external/clang/tools/driver/
Dcc1_main.cpp120 llvm::TimerGroup::printAll(llvm::errs()); in cc1_main()
Dcc1as_main.cpp507 TimerGroup::printAll(errs()); in cc1as_main()
Ddriver.cpp499 llvm::TimerGroup::printAll(llvm::errs()); in main()
/external/clang/include/clang/Frontend/
DCompilerInstance.h33 class TimerGroup; variable
109 std::unique_ptr<llvm::TimerGroup> FrontendTimerGroup;
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/
Dtoc-load-sched-bug.ll137 …class.llvm::TimeRecord", %"class.std::basic_string", i8, %"class.llvm::TimerGroup"*, %"class.llvm:…
139 …:TimerGroup" = type { %"class.std::basic_string", %"class.llvm::Timer"*, %"class.std::vector.103",…
/external/llvm/test/CodeGen/PowerPC/
Dtoc-load-sched-bug.ll137 …class.llvm::TimeRecord", %"class.std::basic_string", i8, %"class.llvm::TimerGroup"*, %"class.llvm:…
139 …:TimerGroup" = type { %"class.std::basic_string", %"class.llvm::Timer"*, %"class.std::vector.103",…
/external/llvm/lib/Target/Hexagon/
DRDFGraph.h786 TimerGroup TimeG;
DHexagonGenInsert.cpp1477 TimerGroup __G("hexinsert"); in runOnMachineFunction()
/external/llvm/lib/IR/
DLegacyPassManager.cpp454 TimerGroup TG;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DLegacyPassManager.cpp509 TimerGroup TG;
/external/swiftshader/third_party/LLVM/lib/VMCore/
DPassManager.cpp469 TimerGroup TG;
/external/clang/lib/Frontend/
DCompilerInstance.cpp517 FrontendTimerGroup.reset(new llvm::TimerGroup("Clang front-end time report")); in createFrontendTimer()