1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // This header file defines the set of trace_event macros without specifying
6 // how the events actually get collected and stored. If you need to expose trace
7 // events to some other universe, you can copy-and-paste this file as well as
8 // trace_event.h, modifying the macros contained there as necessary for the
9 // target platform. The end result is that multiple libraries can funnel events
10 // through to a shared trace event collector.
12 // Trace events are for tracking application performance and resource usage.
13 // Macros are provided to track:
14 // Begin and end of function calls
17 // Events are issued against categories. Whereas LOG's
18 // categories are statically defined, TRACE categories are created
19 // implicitly with a string. For example:
20 // TRACE_EVENT_INSTANT0("MY_SUBSYSTEM", "SomeImportantEvent",
21 // TRACE_EVENT_SCOPE_THREAD)
23 // It is often the case that one trace may belong in multiple categories at the
24 // same time. The first argument to the trace can be a comma-separated list of
25 // categories, forming a category group, like:
27 // TRACE_EVENT_INSTANT0("input,views", "OnMouseOver", TRACE_EVENT_SCOPE_THREAD)
29 // We can enable/disable tracing of OnMouseOver by enabling/disabling either
32 // Events can be INSTANT, or can be pairs of BEGIN and END in the same scope:
33 // TRACE_EVENT_BEGIN0("MY_SUBSYSTEM", "SomethingCostly")
34 // doSomethingCostly()
35 // TRACE_EVENT_END0("MY_SUBSYSTEM", "SomethingCostly")
36 // Note: our tools can't always determine the correct BEGIN/END pairs unless
37 // these are used in the same scope. Use ASYNC_BEGIN/ASYNC_END macros if you
38 // need them to be in separate scopes.
40 // A common use case is to trace entire function scopes. This
41 // issues a trace BEGIN and END automatically:
42 // void doSomethingCostly() {
43 // TRACE_EVENT0("MY_SUBSYSTEM", "doSomethingCostly");
47 // Additional parameters can be associated with an event:
48 // void doSomethingCostly2(int howMuch) {
49 // TRACE_EVENT1("MY_SUBSYSTEM", "doSomethingCostly",
50 // "howMuch", howMuch);
54 // The trace system will automatically add to this information the
55 // current process id, thread id, and a timestamp in microseconds.
57 // To trace an asynchronous procedure such as an IPC send/receive, use
58 // ASYNC_BEGIN and ASYNC_END:
59 // [single threaded sender code]
60 // static int send_count = 0;
62 // TRACE_EVENT_ASYNC_BEGIN0("ipc", "message", send_count);
63 // Send(new MyMessage(send_count));
65 // void OnMyMessage(send_count) {
66 // TRACE_EVENT_ASYNC_END0("ipc", "message", send_count);
68 // The third parameter is a unique ID to match ASYNC_BEGIN/ASYNC_END pairs.
69 // ASYNC_BEGIN and ASYNC_END can occur on any thread of any traced process.
70 // Pointers can be used for the ID parameter, and they will be mangled
71 // internally so that the same pointer on two different processes will not
72 // match. For example:
73 // class MyTracedClass {
76 // TRACE_EVENT_ASYNC_BEGIN0("category", "MyTracedClass", this);
79 // TRACE_EVENT_ASYNC_END0("category", "MyTracedClass", this);
83 // Trace event also supports counters, which is a way to track a quantity
84 // as it varies over time. Counters are created with the following macro:
85 // TRACE_COUNTER1("MY_SUBSYSTEM", "myCounter", g_myCounterValue);
87 // Counters are process-specific. The macro itself can be issued from any
90 // Sometimes, you want to track two counters at once. You can do this with two
92 // TRACE_COUNTER1("MY_SUBSYSTEM", "myCounter0", g_myCounterValue[0]);
93 // TRACE_COUNTER1("MY_SUBSYSTEM", "myCounter1", g_myCounterValue[1]);
94 // Or you can do it with a combined macro:
95 // TRACE_COUNTER2("MY_SUBSYSTEM", "myCounter",
96 // "bytesPinned", g_myCounterValue[0],
97 // "bytesAllocated", g_myCounterValue[1]);
98 // This indicates to the tracing UI that these counters should be displayed
99 // in a single graph, as a summed area chart.
101 // Since counters are in a global namespace, you may want to disambiguate with a
102 // unique ID, by using the TRACE_COUNTER_ID* variations.
104 // By default, trace collection is compiled in, but turned off at runtime.
105 // Collecting trace data is the responsibility of the embedding
106 // application. In Chrome's case, navigating to about:tracing will turn on
107 // tracing and display data collected across all active processes.
110 // Memory scoping note:
111 // Tracing copies the pointers, not the string content, of the strings passed
112 // in for category_group, name, and arg_names. Thus, the following code will
114 // char* str = strdup("importantName");
115 // TRACE_EVENT_INSTANT0("SUBSYSTEM", str); // BAD!
116 // free(str); // Trace system now has dangling pointer
118 // To avoid this issue with the |name| and |arg_name| parameters, use the
119 // TRACE_EVENT_COPY_XXX overloads of the macros at additional runtime overhead.
120 // Notes: The category must always be in a long-lived char* (i.e. static const).
121 // The |arg_values|, when used, are always deep copied with the _COPY
124 // When are string argument values copied:
125 // const char* arg_values are only referenced by default:
126 // TRACE_EVENT1("category", "name",
127 // "arg1", "literal string is only referenced");
128 // Use TRACE_STR_COPY to force copying of a const char*:
129 // TRACE_EVENT1("category", "name",
130 // "arg1", TRACE_STR_COPY("string will be copied"));
131 // std::string arg_values are always copied:
132 // TRACE_EVENT1("category", "name",
133 // "arg1", std::string("string will be copied"));
136 // Convertable notes:
137 // Converting a large data type to a string can be costly. To help with this,
138 // the trace framework provides an interface ConvertableToTraceFormat. If you
139 // inherit from it and implement the AppendAsTraceFormat method the trace
140 // framework will call back to your object to convert a trace output time. This
141 // means, if the category for the event is disabled, the conversion will not
144 // class MyData : public base::trace_event::ConvertableToTraceFormat {
147 // void AppendAsTraceFormat(std::string* out) const override {
148 // out->append("{\"foo\":1}");
151 // ~MyData() override {}
152 // DISALLOW_COPY_AND_ASSIGN(MyData);
155 // TRACE_EVENT1("foo", "bar", "data",
156 // scoped_refptr<ConvertableToTraceFormat>(new MyData()));
158 // The trace framework will take ownership if the passed pointer and it will
159 // be free'd when the trace buffer is flushed.
161 // Note, we only do the conversion when the buffer is flushed, so the provided
162 // data object should not be modified after it's passed to the trace framework.
166 // A thread safe singleton and mutex are used for thread safety. Category
167 // enabled flags are used to limit the performance impact when the system
170 // TRACE_EVENT macros first cache a pointer to a category. The categories are
171 // statically allocated and safe at all times, even after exit. Fetching a
172 // category is protected by the TraceLog::lock_. Multiple threads initializing
173 // the static variable is safe, as they will be serialized by the lock and
174 // multiple calls will return the same pointer to the category.
176 // Then the category_group_enabled flag is checked. This is a unsigned char, and
177 // not intended to be multithread safe. It optimizes access to AddTraceEvent
178 // which is threadsafe internally via TraceLog::lock_. The enabled flag may
179 // cause some threads to incorrectly call or skip calling AddTraceEvent near
180 // the time of the system being enabled or disabled. This is acceptable as
181 // we tolerate some data loss while the system is being enabled/disabled and
182 // because AddTraceEvent is threadsafe internally and checks the enabled state
185 // Without the use of these static category pointers and enabled flags all
186 // trace points would carry a significant performance cost of acquiring a lock
187 // and resolving the category.
189 #ifndef BASE_TRACE_EVENT_TRACE_EVENT_H_
190 #define BASE_TRACE_EVENT_TRACE_EVENT_H_
194 #include "base/atomicops.h"
195 #include "base/time/time.h"
196 #include "base/trace_event/trace_event_impl.h"
197 #include "base/trace_event/trace_event_memory.h"
198 #include "base/trace_event/trace_event_system_stats_monitor.h"
199 #include "build/build_config.h"
201 // By default, const char* argument values are assumed to have long-lived scope
202 // and will not be copied. Use this macro to force a const char* to be copied.
203 #define TRACE_STR_COPY(str) \
204 trace_event_internal::TraceStringWithCopy(str)
206 // This will mark the trace event as disabled by default. The user will need
207 // to explicitly enable the event.
208 #define TRACE_DISABLED_BY_DEFAULT(name) "disabled-by-default-" name
210 // By default, uint64 ID argument values are not mangled with the Process ID in
211 // TRACE_EVENT_ASYNC macros. Use this macro to force Process ID mangling.
212 #define TRACE_ID_MANGLE(id) \
213 trace_event_internal::TraceID::ForceMangle(id)
215 // By default, pointers are mangled with the Process ID in TRACE_EVENT_ASYNC
216 // macros. Use this macro to prevent Process ID mangling.
217 #define TRACE_ID_DONT_MANGLE(id) \
218 trace_event_internal::TraceID::DontMangle(id)
220 // Records a pair of begin and end events called "name" for the current
221 // scope, with 0, 1 or 2 associated arguments. If the category is not
222 // enabled, then this does nothing.
223 // - category and name strings must have application lifetime (statics or
224 // literals). They may not include " chars.
225 #define TRACE_EVENT0(category_group, name) \
226 INTERNAL_TRACE_MEMORY(category_group, name) \
227 INTERNAL_TRACE_EVENT_ADD_SCOPED(category_group, name)
228 #define TRACE_EVENT1(category_group, name, arg1_name, arg1_val) \
229 INTERNAL_TRACE_MEMORY(category_group, name) \
230 INTERNAL_TRACE_EVENT_ADD_SCOPED(category_group, name, arg1_name, arg1_val)
231 #define TRACE_EVENT2( \
232 category_group, name, arg1_name, arg1_val, arg2_name, arg2_val) \
233 INTERNAL_TRACE_MEMORY(category_group, name) \
234 INTERNAL_TRACE_EVENT_ADD_SCOPED( \
235 category_group, name, arg1_name, arg1_val, arg2_name, arg2_val)
237 // Records events like TRACE_EVENT2 but uses |memory_tag| for memory tracing.
238 // Use this where |name| is too generic to accurately aggregate allocations.
239 #define TRACE_EVENT_WITH_MEMORY_TAG2( \
240 category, name, memory_tag, arg1_name, arg1_val, arg2_name, arg2_val) \
241 INTERNAL_TRACE_MEMORY(category, memory_tag) \
242 INTERNAL_TRACE_EVENT_ADD_SCOPED( \
243 category, name, arg1_name, arg1_val, arg2_name, arg2_val)
245 // UNSHIPPED_TRACE_EVENT* are like TRACE_EVENT* except that they are not
246 // included in official builds.
249 #undef TRACING_IS_OFFICIAL_BUILD
250 #define TRACING_IS_OFFICIAL_BUILD 1
251 #elif !defined(TRACING_IS_OFFICIAL_BUILD)
252 #define TRACING_IS_OFFICIAL_BUILD 0
255 #if TRACING_IS_OFFICIAL_BUILD
256 #define UNSHIPPED_TRACE_EVENT0(category_group, name) (void)0
257 #define UNSHIPPED_TRACE_EVENT1(category_group, name, arg1_name, arg1_val) \
259 #define UNSHIPPED_TRACE_EVENT2(category_group, name, arg1_name, arg1_val, \
260 arg2_name, arg2_val) (void)0
261 #define UNSHIPPED_TRACE_EVENT_INSTANT0(category_group, name, scope) (void)0
262 #define UNSHIPPED_TRACE_EVENT_INSTANT1(category_group, name, scope, \
263 arg1_name, arg1_val) (void)0
264 #define UNSHIPPED_TRACE_EVENT_INSTANT2(category_group, name, scope, \
265 arg1_name, arg1_val, \
266 arg2_name, arg2_val) (void)0
268 #define UNSHIPPED_TRACE_EVENT0(category_group, name) \
269 TRACE_EVENT0(category_group, name)
270 #define UNSHIPPED_TRACE_EVENT1(category_group, name, arg1_name, arg1_val) \
271 TRACE_EVENT1(category_group, name, arg1_name, arg1_val)
272 #define UNSHIPPED_TRACE_EVENT2(category_group, name, arg1_name, arg1_val, \
273 arg2_name, arg2_val) \
274 TRACE_EVENT2(category_group, name, arg1_name, arg1_val, arg2_name, arg2_val)
275 #define UNSHIPPED_TRACE_EVENT_INSTANT0(category_group, name, scope) \
276 TRACE_EVENT_INSTANT0(category_group, name, scope)
277 #define UNSHIPPED_TRACE_EVENT_INSTANT1(category_group, name, scope, \
278 arg1_name, arg1_val) \
279 TRACE_EVENT_INSTANT1(category_group, name, scope, arg1_name, arg1_val)
280 #define UNSHIPPED_TRACE_EVENT_INSTANT2(category_group, name, scope, \
281 arg1_name, arg1_val, \
282 arg2_name, arg2_val) \
283 TRACE_EVENT_INSTANT2(category_group, name, scope, arg1_name, arg1_val, \
287 // Records a single event called "name" immediately, with 0, 1 or 2
288 // associated arguments. If the category is not enabled, then this
290 // - category and name strings must have application lifetime (statics or
291 // literals). They may not include " chars.
292 #define TRACE_EVENT_INSTANT0(category_group, name, scope) \
293 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_INSTANT, \
294 category_group, name, TRACE_EVENT_FLAG_NONE | scope)
295 #define TRACE_EVENT_INSTANT1(category_group, name, scope, arg1_name, arg1_val) \
296 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_INSTANT, \
297 category_group, name, TRACE_EVENT_FLAG_NONE | scope, \
299 #define TRACE_EVENT_INSTANT2(category_group, name, scope, arg1_name, arg1_val, \
300 arg2_name, arg2_val) \
301 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_INSTANT, \
302 category_group, name, TRACE_EVENT_FLAG_NONE | scope, \
303 arg1_name, arg1_val, arg2_name, arg2_val)
304 #define TRACE_EVENT_COPY_INSTANT0(category_group, name, scope) \
305 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_INSTANT, \
306 category_group, name, TRACE_EVENT_FLAG_COPY | scope)
307 #define TRACE_EVENT_COPY_INSTANT1(category_group, name, scope, \
308 arg1_name, arg1_val) \
309 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_INSTANT, \
310 category_group, name, TRACE_EVENT_FLAG_COPY | scope, arg1_name, \
312 #define TRACE_EVENT_COPY_INSTANT2(category_group, name, scope, \
313 arg1_name, arg1_val, \
314 arg2_name, arg2_val) \
315 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_INSTANT, \
316 category_group, name, TRACE_EVENT_FLAG_COPY | scope, \
317 arg1_name, arg1_val, arg2_name, arg2_val)
319 // Sets the current sample state to the given category and name (both must be
320 // constant strings). These states are intended for a sampling profiler.
321 // Implementation note: we store category and name together because we don't
322 // want the inconsistency/expense of storing two pointers.
323 // |thread_bucket| is [0..2] and is used to statically isolate samples in one
324 // thread from others.
325 #define TRACE_EVENT_SET_SAMPLING_STATE_FOR_BUCKET( \
326 bucket_number, category, name) \
327 trace_event_internal:: \
328 TraceEventSamplingStateScope<bucket_number>::Set(category "\0" name)
330 // Returns a current sampling state of the given bucket.
331 #define TRACE_EVENT_GET_SAMPLING_STATE_FOR_BUCKET(bucket_number) \
332 trace_event_internal::TraceEventSamplingStateScope<bucket_number>::Current()
334 // Creates a scope of a sampling state of the given bucket.
336 // { // The sampling state is set within this scope.
337 // TRACE_EVENT_SAMPLING_STATE_SCOPE_FOR_BUCKET(0, "category", "name");
340 #define TRACE_EVENT_SCOPED_SAMPLING_STATE_FOR_BUCKET( \
341 bucket_number, category, name) \
342 trace_event_internal::TraceEventSamplingStateScope<bucket_number> \
343 traceEventSamplingScope(category "\0" name);
345 // Syntactic sugars for the sampling tracing in the main thread.
346 #define TRACE_EVENT_SCOPED_SAMPLING_STATE(category, name) \
347 TRACE_EVENT_SCOPED_SAMPLING_STATE_FOR_BUCKET(0, category, name)
348 #define TRACE_EVENT_GET_SAMPLING_STATE() \
349 TRACE_EVENT_GET_SAMPLING_STATE_FOR_BUCKET(0)
350 #define TRACE_EVENT_SET_SAMPLING_STATE(category, name) \
351 TRACE_EVENT_SET_SAMPLING_STATE_FOR_BUCKET(0, category, name)
354 // Records a single BEGIN event called "name" immediately, with 0, 1 or 2
355 // associated arguments. If the category is not enabled, then this
357 // - category and name strings must have application lifetime (statics or
358 // literals). They may not include " chars.
359 #define TRACE_EVENT_BEGIN0(category_group, name) \
360 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_BEGIN, \
361 category_group, name, TRACE_EVENT_FLAG_NONE)
362 #define TRACE_EVENT_BEGIN1(category_group, name, arg1_name, arg1_val) \
363 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_BEGIN, \
364 category_group, name, TRACE_EVENT_FLAG_NONE, arg1_name, arg1_val)
365 #define TRACE_EVENT_BEGIN2(category_group, name, arg1_name, arg1_val, \
366 arg2_name, arg2_val) \
367 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_BEGIN, \
368 category_group, name, TRACE_EVENT_FLAG_NONE, arg1_name, arg1_val, \
370 #define TRACE_EVENT_COPY_BEGIN0(category_group, name) \
371 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_BEGIN, \
372 category_group, name, TRACE_EVENT_FLAG_COPY)
373 #define TRACE_EVENT_COPY_BEGIN1(category_group, name, arg1_name, arg1_val) \
374 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_BEGIN, \
375 category_group, name, TRACE_EVENT_FLAG_COPY, arg1_name, arg1_val)
376 #define TRACE_EVENT_COPY_BEGIN2(category_group, name, arg1_name, arg1_val, \
377 arg2_name, arg2_val) \
378 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_BEGIN, \
379 category_group, name, TRACE_EVENT_FLAG_COPY, arg1_name, arg1_val, \
382 // Similar to TRACE_EVENT_BEGINx but with a custom |at| timestamp provided.
383 // - |id| is used to match the _BEGIN event with the _END event.
384 // Events are considered to match if their category_group, name and id values
385 // all match. |id| must either be a pointer or an integer value up to 64 bits.
386 // If it's a pointer, the bits will be xored with a hash of the process ID so
387 // that the same pointer on two different processes will not collide.
388 #define TRACE_EVENT_BEGIN_WITH_ID_TID_AND_TIMESTAMP0(category_group, \
389 name, id, thread_id, timestamp) \
390 INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP( \
391 TRACE_EVENT_PHASE_ASYNC_BEGIN, category_group, name, id, thread_id, \
392 timestamp, TRACE_EVENT_FLAG_NONE)
393 #define TRACE_EVENT_COPY_BEGIN_WITH_ID_TID_AND_TIMESTAMP0( \
394 category_group, name, id, thread_id, timestamp) \
395 INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP( \
396 TRACE_EVENT_PHASE_ASYNC_BEGIN, category_group, name, id, thread_id, \
397 timestamp, TRACE_EVENT_FLAG_COPY)
398 #define TRACE_EVENT_COPY_BEGIN_WITH_ID_TID_AND_TIMESTAMP1( \
399 category_group, name, id, thread_id, timestamp, arg1_name, arg1_val) \
400 INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP( \
401 TRACE_EVENT_PHASE_ASYNC_BEGIN, category_group, name, id, thread_id, \
402 timestamp, TRACE_EVENT_FLAG_COPY, arg1_name, arg1_val)
404 // Records a single END event for "name" immediately. If the category
405 // is not enabled, then this does nothing.
406 // - category and name strings must have application lifetime (statics or
407 // literals). They may not include " chars.
408 #define TRACE_EVENT_END0(category_group, name) \
409 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_END, \
410 category_group, name, TRACE_EVENT_FLAG_NONE)
411 #define TRACE_EVENT_END1(category_group, name, arg1_name, arg1_val) \
412 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_END, \
413 category_group, name, TRACE_EVENT_FLAG_NONE, arg1_name, arg1_val)
414 #define TRACE_EVENT_END2(category_group, name, arg1_name, arg1_val, \
415 arg2_name, arg2_val) \
416 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_END, \
417 category_group, name, TRACE_EVENT_FLAG_NONE, arg1_name, arg1_val, \
419 #define TRACE_EVENT_COPY_END0(category_group, name) \
420 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_END, \
421 category_group, name, TRACE_EVENT_FLAG_COPY)
422 #define TRACE_EVENT_COPY_END1(category_group, name, arg1_name, arg1_val) \
423 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_END, \
424 category_group, name, TRACE_EVENT_FLAG_COPY, arg1_name, arg1_val)
425 #define TRACE_EVENT_COPY_END2(category_group, name, arg1_name, arg1_val, \
426 arg2_name, arg2_val) \
427 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_END, \
428 category_group, name, TRACE_EVENT_FLAG_COPY, arg1_name, arg1_val, \
431 // Similar to TRACE_EVENT_ENDx but with a custom |at| timestamp provided.
432 // - |id| is used to match the _BEGIN event with the _END event.
433 // Events are considered to match if their category_group, name and id values
434 // all match. |id| must either be a pointer or an integer value up to 64 bits.
435 // If it's a pointer, the bits will be xored with a hash of the process ID so
436 // that the same pointer on two different processes will not collide.
437 #define TRACE_EVENT_END_WITH_ID_TID_AND_TIMESTAMP0(category_group, \
438 name, id, thread_id, timestamp) \
439 INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP( \
440 TRACE_EVENT_PHASE_ASYNC_END, category_group, name, id, thread_id, \
441 timestamp, TRACE_EVENT_FLAG_NONE)
442 #define TRACE_EVENT_COPY_END_WITH_ID_TID_AND_TIMESTAMP0( \
443 category_group, name, id, thread_id, timestamp) \
444 INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP( \
445 TRACE_EVENT_PHASE_ASYNC_END, category_group, name, id, thread_id, \
446 timestamp, TRACE_EVENT_FLAG_COPY)
447 #define TRACE_EVENT_COPY_END_WITH_ID_TID_AND_TIMESTAMP1( \
448 category_group, name, id, thread_id, timestamp, arg1_name, arg1_val) \
449 INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP( \
450 TRACE_EVENT_PHASE_ASYNC_END, category_group, name, id, thread_id, \
451 timestamp, TRACE_EVENT_FLAG_COPY, arg1_name, arg1_val)
453 // Records the value of a counter called "name" immediately. Value
454 // must be representable as a 32 bit integer.
455 // - category and name strings must have application lifetime (statics or
456 // literals). They may not include " chars.
457 #define TRACE_COUNTER1(category_group, name, value) \
458 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_COUNTER, \
459 category_group, name, TRACE_EVENT_FLAG_NONE, \
460 "value", static_cast<int>(value))
461 #define TRACE_COPY_COUNTER1(category_group, name, value) \
462 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_COUNTER, \
463 category_group, name, TRACE_EVENT_FLAG_COPY, \
464 "value", static_cast<int>(value))
466 // Records the values of a multi-parted counter called "name" immediately.
467 // The UI will treat value1 and value2 as parts of a whole, displaying their
468 // values as a stacked-bar chart.
469 // - category and name strings must have application lifetime (statics or
470 // literals). They may not include " chars.
471 #define TRACE_COUNTER2(category_group, name, value1_name, value1_val, \
472 value2_name, value2_val) \
473 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_COUNTER, \
474 category_group, name, TRACE_EVENT_FLAG_NONE, \
475 value1_name, static_cast<int>(value1_val), \
476 value2_name, static_cast<int>(value2_val))
477 #define TRACE_COPY_COUNTER2(category_group, name, value1_name, value1_val, \
478 value2_name, value2_val) \
479 INTERNAL_TRACE_EVENT_ADD(TRACE_EVENT_PHASE_COUNTER, \
480 category_group, name, TRACE_EVENT_FLAG_COPY, \
481 value1_name, static_cast<int>(value1_val), \
482 value2_name, static_cast<int>(value2_val))
484 // Records the value of a counter called "name" immediately. Value
485 // must be representable as a 32 bit integer.
486 // - category and name strings must have application lifetime (statics or
487 // literals). They may not include " chars.
488 // - |id| is used to disambiguate counters with the same name. It must either
489 // be a pointer or an integer value up to 64 bits. If it's a pointer, the bits
490 // will be xored with a hash of the process ID so that the same pointer on
491 // two different processes will not collide.
492 #define TRACE_COUNTER_ID1(category_group, name, id, value) \
493 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_COUNTER, \
494 category_group, name, id, TRACE_EVENT_FLAG_NONE, \
495 "value", static_cast<int>(value))
496 #define TRACE_COPY_COUNTER_ID1(category_group, name, id, value) \
497 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_COUNTER, \
498 category_group, name, id, TRACE_EVENT_FLAG_COPY, \
499 "value", static_cast<int>(value))
501 // Records the values of a multi-parted counter called "name" immediately.
502 // The UI will treat value1 and value2 as parts of a whole, displaying their
503 // values as a stacked-bar chart.
504 // - category and name strings must have application lifetime (statics or
505 // literals). They may not include " chars.
506 // - |id| is used to disambiguate counters with the same name. It must either
507 // be a pointer or an integer value up to 64 bits. If it's a pointer, the bits
508 // will be xored with a hash of the process ID so that the same pointer on
509 // two different processes will not collide.
510 #define TRACE_COUNTER_ID2(category_group, name, id, value1_name, value1_val, \
511 value2_name, value2_val) \
512 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_COUNTER, \
513 category_group, name, id, TRACE_EVENT_FLAG_NONE, \
514 value1_name, static_cast<int>(value1_val), \
515 value2_name, static_cast<int>(value2_val))
516 #define TRACE_COPY_COUNTER_ID2(category_group, name, id, value1_name, \
517 value1_val, value2_name, value2_val) \
518 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_COUNTER, \
519 category_group, name, id, TRACE_EVENT_FLAG_COPY, \
520 value1_name, static_cast<int>(value1_val), \
521 value2_name, static_cast<int>(value2_val))
523 // TRACE_EVENT_SAMPLE_* events are injected by the sampling profiler.
524 #define TRACE_EVENT_SAMPLE_WITH_TID_AND_TIMESTAMP0(category_group, name, \
525 thread_id, timestamp) \
526 INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP( \
527 TRACE_EVENT_PHASE_SAMPLE, category_group, name, 0, thread_id, timestamp, \
528 TRACE_EVENT_FLAG_NONE)
530 #define TRACE_EVENT_SAMPLE_WITH_TID_AND_TIMESTAMP1( \
531 category_group, name, thread_id, timestamp, arg1_name, arg1_val) \
532 INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP( \
533 TRACE_EVENT_PHASE_SAMPLE, category_group, name, 0, thread_id, timestamp, \
534 TRACE_EVENT_FLAG_NONE, arg1_name, arg1_val)
536 #define TRACE_EVENT_SAMPLE_WITH_TID_AND_TIMESTAMP2(category_group, name, \
537 thread_id, timestamp, \
538 arg1_name, arg1_val, \
539 arg2_name, arg2_val) \
540 INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP( \
541 TRACE_EVENT_PHASE_SAMPLE, category_group, name, 0, thread_id, timestamp, \
542 TRACE_EVENT_FLAG_NONE, arg1_name, arg1_val, arg2_name, arg2_val)
544 // ASYNC_STEP_* APIs should be only used by legacy code. New code should
545 // consider using NESTABLE_ASYNC_* APIs to describe substeps within an async
547 // Records a single ASYNC_BEGIN event called "name" immediately, with 0, 1 or 2
548 // associated arguments. If the category is not enabled, then this
550 // - category and name strings must have application lifetime (statics or
551 // literals). They may not include " chars.
552 // - |id| is used to match the ASYNC_BEGIN event with the ASYNC_END event. ASYNC
553 // events are considered to match if their category_group, name and id values
554 // all match. |id| must either be a pointer or an integer value up to 64 bits.
555 // If it's a pointer, the bits will be xored with a hash of the process ID so
556 // that the same pointer on two different processes will not collide.
558 // An asynchronous operation can consist of multiple phases. The first phase is
559 // defined by the ASYNC_BEGIN calls. Additional phases can be defined using the
560 // ASYNC_STEP_INTO or ASYNC_STEP_PAST macros. The ASYNC_STEP_INTO macro will
561 // annotate the block following the call. The ASYNC_STEP_PAST macro will
562 // annotate the block prior to the call. Note that any particular event must use
563 // only STEP_INTO or STEP_PAST macros; they can not mix and match. When the
564 // operation completes, call ASYNC_END.
566 // An ASYNC trace typically occurs on a single thread (if not, they will only be
567 // drawn on the thread defined in the ASYNC_BEGIN event), but all events in that
568 // operation must use the same |name| and |id|. Each step can have its own
570 #define TRACE_EVENT_ASYNC_BEGIN0(category_group, name, id) \
571 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_BEGIN, \
572 category_group, name, id, TRACE_EVENT_FLAG_NONE)
573 #define TRACE_EVENT_ASYNC_BEGIN1(category_group, name, id, arg1_name, \
575 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_BEGIN, \
576 category_group, name, id, TRACE_EVENT_FLAG_NONE, arg1_name, arg1_val)
577 #define TRACE_EVENT_ASYNC_BEGIN2(category_group, name, id, arg1_name, \
578 arg1_val, arg2_name, arg2_val) \
579 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_BEGIN, \
580 category_group, name, id, TRACE_EVENT_FLAG_NONE, \
581 arg1_name, arg1_val, arg2_name, arg2_val)
582 #define TRACE_EVENT_COPY_ASYNC_BEGIN0(category_group, name, id) \
583 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_BEGIN, \
584 category_group, name, id, TRACE_EVENT_FLAG_COPY)
585 #define TRACE_EVENT_COPY_ASYNC_BEGIN1(category_group, name, id, arg1_name, \
587 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_BEGIN, \
588 category_group, name, id, TRACE_EVENT_FLAG_COPY, \
590 #define TRACE_EVENT_COPY_ASYNC_BEGIN2(category_group, name, id, arg1_name, \
591 arg1_val, arg2_name, arg2_val) \
592 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_BEGIN, \
593 category_group, name, id, TRACE_EVENT_FLAG_COPY, \
594 arg1_name, arg1_val, arg2_name, arg2_val)
596 // Similar to TRACE_EVENT_ASYNC_BEGINx but with a custom |at| timestamp
598 #define TRACE_EVENT_ASYNC_BEGIN_WITH_TIMESTAMP0(category_group, \
599 name, id, timestamp) \
600 INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP( \
601 TRACE_EVENT_PHASE_ASYNC_BEGIN, category_group, name, id, \
602 static_cast<int>(base::PlatformThread::CurrentId()), \
603 timestamp, TRACE_EVENT_FLAG_NONE)
604 #define TRACE_EVENT_COPY_ASYNC_BEGIN_WITH_TIMESTAMP0(category_group, \
605 name, id, timestamp) \
606 INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP( \
607 TRACE_EVENT_PHASE_ASYNC_BEGIN, category_group, name, id, \
608 static_cast<int>(base::PlatformThread::CurrentId()), \
609 timestamp, TRACE_EVENT_FLAG_COPY)
611 // Records a single ASYNC_STEP_INTO event for |step| immediately. If the
612 // category is not enabled, then this does nothing. The |name| and |id| must
613 // match the ASYNC_BEGIN event above. The |step| param identifies this step
614 // within the async event. This should be called at the beginning of the next
615 // phase of an asynchronous operation. The ASYNC_BEGIN event must not have any
616 // ASYNC_STEP_PAST events.
617 #define TRACE_EVENT_ASYNC_STEP_INTO0(category_group, name, id, step) \
618 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_STEP_INTO, \
619 category_group, name, id, TRACE_EVENT_FLAG_NONE, "step", step)
620 #define TRACE_EVENT_ASYNC_STEP_INTO1(category_group, name, id, step, \
621 arg1_name, arg1_val) \
622 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_STEP_INTO, \
623 category_group, name, id, TRACE_EVENT_FLAG_NONE, "step", step, \
626 // Similar to TRACE_EVENT_ASYNC_STEP_INTOx but with a custom |at| timestamp
628 #define TRACE_EVENT_ASYNC_STEP_INTO_WITH_TIMESTAMP0(category_group, name, \
629 id, step, timestamp) \
630 INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP( \
631 TRACE_EVENT_PHASE_ASYNC_STEP_INTO, category_group, name, id, \
632 static_cast<int>(base::PlatformThread::CurrentId()), \
633 timestamp, TRACE_EVENT_FLAG_NONE, "step", step)
635 // Records a single ASYNC_STEP_PAST event for |step| immediately. If the
636 // category is not enabled, then this does nothing. The |name| and |id| must
637 // match the ASYNC_BEGIN event above. The |step| param identifies this step
638 // within the async event. This should be called at the beginning of the next
639 // phase of an asynchronous operation. The ASYNC_BEGIN event must not have any
640 // ASYNC_STEP_INTO events.
641 #define TRACE_EVENT_ASYNC_STEP_PAST0(category_group, name, id, step) \
642 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_STEP_PAST, \
643 category_group, name, id, TRACE_EVENT_FLAG_NONE, "step", step)
644 #define TRACE_EVENT_ASYNC_STEP_PAST1(category_group, name, id, step, \
645 arg1_name, arg1_val) \
646 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_STEP_PAST, \
647 category_group, name, id, TRACE_EVENT_FLAG_NONE, "step", step, \
650 // Records a single ASYNC_END event for "name" immediately. If the category
651 // is not enabled, then this does nothing.
652 #define TRACE_EVENT_ASYNC_END0(category_group, name, id) \
653 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_END, \
654 category_group, name, id, TRACE_EVENT_FLAG_NONE)
655 #define TRACE_EVENT_ASYNC_END1(category_group, name, id, arg1_name, arg1_val) \
656 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_END, \
657 category_group, name, id, TRACE_EVENT_FLAG_NONE, arg1_name, arg1_val)
658 #define TRACE_EVENT_ASYNC_END2(category_group, name, id, arg1_name, arg1_val, \
659 arg2_name, arg2_val) \
660 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_END, \
661 category_group, name, id, TRACE_EVENT_FLAG_NONE, \
662 arg1_name, arg1_val, arg2_name, arg2_val)
663 #define TRACE_EVENT_COPY_ASYNC_END0(category_group, name, id) \
664 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_END, \
665 category_group, name, id, TRACE_EVENT_FLAG_COPY)
666 #define TRACE_EVENT_COPY_ASYNC_END1(category_group, name, id, arg1_name, \
668 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_END, \
669 category_group, name, id, TRACE_EVENT_FLAG_COPY, \
671 #define TRACE_EVENT_COPY_ASYNC_END2(category_group, name, id, arg1_name, \
672 arg1_val, arg2_name, arg2_val) \
673 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_ASYNC_END, \
674 category_group, name, id, TRACE_EVENT_FLAG_COPY, \
675 arg1_name, arg1_val, arg2_name, arg2_val)
677 // Similar to TRACE_EVENT_ASYNC_ENDx but with a custom |at| timestamp provided.
678 #define TRACE_EVENT_ASYNC_END_WITH_TIMESTAMP0(category_group, \
679 name, id, timestamp) \
680 INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP( \
681 TRACE_EVENT_PHASE_ASYNC_END, category_group, name, id, \
682 static_cast<int>(base::PlatformThread::CurrentId()), \
683 timestamp, TRACE_EVENT_FLAG_NONE)
685 // NESTABLE_ASYNC_* APIs are used to describe an async operation, which can
686 // be nested within a NESTABLE_ASYNC event and/or have inner NESTABLE_ASYNC
688 // - category and name strings must have application lifetime (statics or
689 // literals). They may not include " chars.
690 // - A pair of NESTABLE_ASYNC_BEGIN event and NESTABLE_ASYNC_END event is
691 // considered as a match if their category_group, name and id all match.
692 // - |id| must either be a pointer or an integer value up to 64 bits.
693 // If it's a pointer, the bits will be xored with a hash of the process ID so
694 // that the same pointer on two different processes will not collide.
695 // - |id| is used to match a child NESTABLE_ASYNC event with its parent
696 // NESTABLE_ASYNC event. Therefore, events in the same nested event tree must
697 // be logged using the same id and category_group.
699 // Unmatched NESTABLE_ASYNC_END event will be parsed as an event that starts
700 // at the first NESTABLE_ASYNC event of that id, and unmatched
701 // NESTABLE_ASYNC_BEGIN event will be parsed as an event that ends at the last
702 // NESTABLE_ASYNC event of that id. Corresponding warning messages for
703 // unmatched events will be shown in the analysis view.
705 // Records a single NESTABLE_ASYNC_BEGIN event called "name" immediately, with 2
706 // associated arguments. If the category is not enabled, then this does nothing.
707 #define TRACE_EVENT_NESTABLE_ASYNC_BEGIN2(category_group, name, id, arg1_name, \
708 arg1_val, arg2_name, arg2_val) \
709 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_NESTABLE_ASYNC_BEGIN, \
710 category_group, name, id, TRACE_EVENT_FLAG_NONE, arg1_name, arg1_val, \
712 // Records a single NESTABLE_ASYNC_END event called "name" immediately, with 2
713 // associated arguments. If the category is not enabled, then this does nothing.
714 #define TRACE_EVENT_NESTABLE_ASYNC_END2(category_group, name, id, arg1_name, \
715 arg1_val, arg2_name, arg2_val) \
716 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_NESTABLE_ASYNC_END, \
717 category_group, name, id, TRACE_EVENT_FLAG_NONE, arg1_name, arg1_val, \
719 // Records a single NESTABLE_ASYNC_INSTANT event called "name" immediately,
720 // with 2 associated arguments. If the category is not enabled, then this
722 #define TRACE_EVENT_NESTABLE_ASYNC_INSTANT2(category_group, name, id, \
723 arg1_name, arg1_val, arg2_name, arg2_val) \
724 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_NESTABLE_ASYNC_INSTANT, \
725 category_group, name, id, TRACE_EVENT_FLAG_NONE, arg1_name, arg1_val, \
728 // Records a single FLOW_BEGIN event called "name" immediately, with 0, 1 or 2
729 // associated arguments. If the category is not enabled, then this
731 // - category and name strings must have application lifetime (statics or
732 // literals). They may not include " chars.
733 // - |id| is used to match the FLOW_BEGIN event with the FLOW_END event. FLOW
734 // events are considered to match if their category_group, name and id values
735 // all match. |id| must either be a pointer or an integer value up to 64 bits.
736 // If it's a pointer, the bits will be xored with a hash of the process ID so
737 // that the same pointer on two different processes will not collide.
738 // FLOW events are different from ASYNC events in how they are drawn by the
739 // tracing UI. A FLOW defines asynchronous data flow, such as posting a task
740 // (FLOW_BEGIN) and later executing that task (FLOW_END). Expect FLOWs to be
741 // drawn as lines or arrows from FLOW_BEGIN scopes to FLOW_END scopes. Similar
742 // to ASYNC, a FLOW can consist of multiple phases. The first phase is defined
743 // by the FLOW_BEGIN calls. Additional phases can be defined using the FLOW_STEP
744 // macros. When the operation completes, call FLOW_END. An async operation can
745 // span threads and processes, but all events in that operation must use the
746 // same |name| and |id|. Each event can have its own args.
747 #define TRACE_EVENT_FLOW_BEGIN0(category_group, name, id) \
748 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_FLOW_BEGIN, \
749 category_group, name, id, TRACE_EVENT_FLAG_NONE)
750 #define TRACE_EVENT_FLOW_BEGIN1(category_group, name, id, arg1_name, arg1_val) \
751 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_FLOW_BEGIN, \
752 category_group, name, id, TRACE_EVENT_FLAG_NONE, arg1_name, arg1_val)
753 #define TRACE_EVENT_FLOW_BEGIN2(category_group, name, id, arg1_name, arg1_val, \
754 arg2_name, arg2_val) \
755 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_FLOW_BEGIN, \
756 category_group, name, id, TRACE_EVENT_FLAG_NONE, \
757 arg1_name, arg1_val, arg2_name, arg2_val)
758 #define TRACE_EVENT_COPY_FLOW_BEGIN0(category_group, name, id) \
759 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_FLOW_BEGIN, \
760 category_group, name, id, TRACE_EVENT_FLAG_COPY)
761 #define TRACE_EVENT_COPY_FLOW_BEGIN1(category_group, name, id, arg1_name, \
763 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_FLOW_BEGIN, \
764 category_group, name, id, TRACE_EVENT_FLAG_COPY, \
766 #define TRACE_EVENT_COPY_FLOW_BEGIN2(category_group, name, id, arg1_name, \
767 arg1_val, arg2_name, arg2_val) \
768 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_FLOW_BEGIN, \
769 category_group, name, id, TRACE_EVENT_FLAG_COPY, \
770 arg1_name, arg1_val, arg2_name, arg2_val)
772 // Records a single FLOW_STEP event for |step| immediately. If the category
773 // is not enabled, then this does nothing. The |name| and |id| must match the
774 // FLOW_BEGIN event above. The |step| param identifies this step within the
775 // async event. This should be called at the beginning of the next phase of an
776 // asynchronous operation.
777 #define TRACE_EVENT_FLOW_STEP0(category_group, name, id, step) \
778 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_FLOW_STEP, \
779 category_group, name, id, TRACE_EVENT_FLAG_NONE, "step", step)
780 #define TRACE_EVENT_FLOW_STEP1(category_group, name, id, step, \
781 arg1_name, arg1_val) \
782 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_FLOW_STEP, \
783 category_group, name, id, TRACE_EVENT_FLAG_NONE, "step", step, \
785 #define TRACE_EVENT_COPY_FLOW_STEP0(category_group, name, id, step) \
786 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_FLOW_STEP, \
787 category_group, name, id, TRACE_EVENT_FLAG_COPY, "step", step)
788 #define TRACE_EVENT_COPY_FLOW_STEP1(category_group, name, id, step, \
789 arg1_name, arg1_val) \
790 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_FLOW_STEP, \
791 category_group, name, id, TRACE_EVENT_FLAG_COPY, "step", step, \
794 // Records a single FLOW_END event for "name" immediately. If the category
795 // is not enabled, then this does nothing.
796 #define TRACE_EVENT_FLOW_END0(category_group, name, id) \
797 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_FLOW_END, \
798 category_group, name, id, TRACE_EVENT_FLAG_NONE)
799 #define TRACE_EVENT_FLOW_END1(category_group, name, id, arg1_name, arg1_val) \
800 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_FLOW_END, \
801 category_group, name, id, TRACE_EVENT_FLAG_NONE, arg1_name, arg1_val)
802 #define TRACE_EVENT_FLOW_END2(category_group, name, id, arg1_name, arg1_val, \
803 arg2_name, arg2_val) \
804 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_FLOW_END, \
805 category_group, name, id, TRACE_EVENT_FLAG_NONE, \
806 arg1_name, arg1_val, arg2_name, arg2_val)
807 #define TRACE_EVENT_COPY_FLOW_END0(category_group, name, id) \
808 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_FLOW_END, \
809 category_group, name, id, TRACE_EVENT_FLAG_COPY)
810 #define TRACE_EVENT_COPY_FLOW_END1(category_group, name, id, arg1_name, \
812 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_FLOW_END, \
813 category_group, name, id, TRACE_EVENT_FLAG_COPY, \
815 #define TRACE_EVENT_COPY_FLOW_END2(category_group, name, id, arg1_name, \
816 arg1_val, arg2_name, arg2_val) \
817 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_FLOW_END, \
818 category_group, name, id, TRACE_EVENT_FLAG_COPY, \
819 arg1_name, arg1_val, arg2_name, arg2_val)
821 // Macros to track the life time and value of arbitrary client objects.
822 // See also TraceTrackableObject.
823 #define TRACE_EVENT_OBJECT_CREATED_WITH_ID(category_group, name, id) \
824 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_CREATE_OBJECT, \
825 category_group, name, TRACE_ID_DONT_MANGLE(id), TRACE_EVENT_FLAG_NONE)
827 #define TRACE_EVENT_OBJECT_SNAPSHOT_WITH_ID(category_group, name, id, snapshot) \
828 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_SNAPSHOT_OBJECT, \
829 category_group, name, TRACE_ID_DONT_MANGLE(id), TRACE_EVENT_FLAG_NONE,\
830 "snapshot", snapshot)
832 #define TRACE_EVENT_OBJECT_DELETED_WITH_ID(category_group, name, id) \
833 INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_DELETE_OBJECT, \
834 category_group, name, TRACE_ID_DONT_MANGLE(id), TRACE_EVENT_FLAG_NONE)
836 #define INTERNAL_TRACE_EVENT_CATEGORY_GROUP_ENABLED_FOR_RECORDING_MODE() \
837 UNLIKELY(*INTERNAL_TRACE_EVENT_UID(category_group_enabled) & \
838 (base::trace_event::TraceLog::ENABLED_FOR_RECORDING | \
839 base::trace_event::TraceLog::ENABLED_FOR_EVENT_CALLBACK | \
840 base::trace_event::TraceLog::ENABLED_FOR_ETW_EXPORT))
842 // Macro to efficiently determine if a given category group is enabled.
843 #define TRACE_EVENT_CATEGORY_GROUP_ENABLED(category_group, ret) \
845 INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group); \
846 if (INTERNAL_TRACE_EVENT_CATEGORY_GROUP_ENABLED_FOR_RECORDING_MODE()) { \
853 // Macro to efficiently determine, through polling, if a new trace has begun.
854 #define TRACE_EVENT_IS_NEW_TRACE(ret) \
856 static int INTERNAL_TRACE_EVENT_UID(lastRecordingNumber) = 0; \
857 int num_traces_recorded = TRACE_EVENT_API_GET_NUM_TRACES_RECORDED(); \
858 if (num_traces_recorded != -1 && \
859 num_traces_recorded != \
860 INTERNAL_TRACE_EVENT_UID(lastRecordingNumber)) { \
861 INTERNAL_TRACE_EVENT_UID(lastRecordingNumber) = \
862 num_traces_recorded; \
869 ////////////////////////////////////////////////////////////////////////////////
870 // Implementation specific tracing API definitions.
872 // Get a pointer to the enabled state of the given trace category. Only
873 // long-lived literal strings should be given as the category group. The
874 // returned pointer can be held permanently in a local static for example. If
875 // the unsigned char is non-zero, tracing is enabled. If tracing is enabled,
876 // TRACE_EVENT_API_ADD_TRACE_EVENT can be called. It's OK if tracing is disabled
877 // between the load of the tracing state and the call to
878 // TRACE_EVENT_API_ADD_TRACE_EVENT, because this flag only provides an early out
879 // for best performance when tracing is disabled.
880 // const unsigned char*
881 // TRACE_EVENT_API_GET_CATEGORY_GROUP_ENABLED(const char* category_group)
882 #define TRACE_EVENT_API_GET_CATEGORY_GROUP_ENABLED \
883 base::trace_event::TraceLog::GetCategoryGroupEnabled
885 // Get the number of times traces have been recorded. This is used to implement
886 // the TRACE_EVENT_IS_NEW_TRACE facility.
887 // unsigned int TRACE_EVENT_API_GET_NUM_TRACES_RECORDED()
888 #define TRACE_EVENT_API_GET_NUM_TRACES_RECORDED \
889 base::trace_event::TraceLog::GetInstance()->GetNumTracesRecorded
891 // Add a trace event to the platform tracing system.
892 // base::trace_event::TraceEventHandle TRACE_EVENT_API_ADD_TRACE_EVENT(
894 // const unsigned char* category_group_enabled,
896 // unsigned long long id,
898 // const char** arg_names,
899 // const unsigned char* arg_types,
900 // const unsigned long long* arg_values,
901 // unsigned char flags)
902 #define TRACE_EVENT_API_ADD_TRACE_EVENT \
903 base::trace_event::TraceLog::GetInstance()->AddTraceEvent
905 // Add a trace event to the platform tracing system.
906 // base::trace_event::TraceEventHandle
907 // TRACE_EVENT_API_ADD_TRACE_EVENT_WITH_TIMESTAMP(
909 // const unsigned char* category_group_enabled,
911 // unsigned long long id,
913 // const TimeTicks& timestamp,
915 // const char** arg_names,
916 // const unsigned char* arg_types,
917 // const unsigned long long* arg_values,
918 // unsigned char flags)
919 #define TRACE_EVENT_API_ADD_TRACE_EVENT_WITH_THREAD_ID_AND_TIMESTAMP \
920 base::trace_event::TraceLog::GetInstance() \
921 ->AddTraceEventWithThreadIdAndTimestamp
923 // Set the duration field of a COMPLETE trace event.
924 // void TRACE_EVENT_API_UPDATE_TRACE_EVENT_DURATION(
925 // const unsigned char* category_group_enabled,
927 // base::trace_event::TraceEventHandle id)
928 #define TRACE_EVENT_API_UPDATE_TRACE_EVENT_DURATION \
929 base::trace_event::TraceLog::GetInstance()->UpdateTraceEventDuration
931 // Defines atomic operations used internally by the tracing system.
932 #define TRACE_EVENT_API_ATOMIC_WORD base::subtle::AtomicWord
933 #define TRACE_EVENT_API_ATOMIC_LOAD(var) base::subtle::NoBarrier_Load(&(var))
934 #define TRACE_EVENT_API_ATOMIC_STORE(var, value) \
935 base::subtle::NoBarrier_Store(&(var), (value))
937 // Defines visibility for classes in trace_event.h
938 #define TRACE_EVENT_API_CLASS_EXPORT BASE_EXPORT
940 // The thread buckets for the sampling profiler.
941 TRACE_EVENT_API_CLASS_EXPORT
extern \
942 TRACE_EVENT_API_ATOMIC_WORD g_trace_state
[3];
944 #define TRACE_EVENT_API_THREAD_BUCKET(thread_bucket) \
945 g_trace_state[thread_bucket]
947 ////////////////////////////////////////////////////////////////////////////////
949 // Implementation detail: trace event macros create temporary variables
950 // to keep instrumentation overhead low. These macros give each temporary
951 // variable a unique name based on the line number to prevent name collisions.
952 #define INTERNAL_TRACE_EVENT_UID3(a,b) \
953 trace_event_unique_##a##b
954 #define INTERNAL_TRACE_EVENT_UID2(a,b) \
955 INTERNAL_TRACE_EVENT_UID3(a,b)
956 #define INTERNAL_TRACE_EVENT_UID(name_prefix) \
957 INTERNAL_TRACE_EVENT_UID2(name_prefix, __LINE__)
959 // Implementation detail: internal macro to create static category.
960 // No barriers are needed, because this code is designed to operate safely
961 // even when the unsigned char* points to garbage data (which may be the case
962 // on processors without cache coherency).
963 #define INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO_CUSTOM_VARIABLES( \
964 category_group, atomic, category_group_enabled) \
965 category_group_enabled = \
966 reinterpret_cast<const unsigned char*>(TRACE_EVENT_API_ATOMIC_LOAD( \
968 if (UNLIKELY(!category_group_enabled)) { \
969 category_group_enabled = \
970 TRACE_EVENT_API_GET_CATEGORY_GROUP_ENABLED(category_group); \
971 TRACE_EVENT_API_ATOMIC_STORE(atomic, \
972 reinterpret_cast<TRACE_EVENT_API_ATOMIC_WORD>( \
973 category_group_enabled)); \
976 #define INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group) \
977 static TRACE_EVENT_API_ATOMIC_WORD INTERNAL_TRACE_EVENT_UID(atomic) = 0; \
978 const unsigned char* INTERNAL_TRACE_EVENT_UID(category_group_enabled); \
979 INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO_CUSTOM_VARIABLES(category_group, \
980 INTERNAL_TRACE_EVENT_UID(atomic), \
981 INTERNAL_TRACE_EVENT_UID(category_group_enabled));
983 // Implementation detail: internal macro to create static category and add
984 // event if the category is enabled.
985 #define INTERNAL_TRACE_EVENT_ADD(phase, category_group, name, flags, ...) \
987 INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group); \
988 if (INTERNAL_TRACE_EVENT_CATEGORY_GROUP_ENABLED_FOR_RECORDING_MODE()) { \
989 trace_event_internal::AddTraceEvent( \
990 phase, INTERNAL_TRACE_EVENT_UID(category_group_enabled), name, \
991 trace_event_internal::kNoEventId, flags, ##__VA_ARGS__); \
995 // Implementation detail: internal macro to create static category and add begin
996 // event if the category is enabled. Also adds the end event when the scope
998 #define INTERNAL_TRACE_EVENT_ADD_SCOPED(category_group, name, ...) \
999 INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group); \
1000 trace_event_internal::ScopedTracer INTERNAL_TRACE_EVENT_UID(tracer); \
1001 if (INTERNAL_TRACE_EVENT_CATEGORY_GROUP_ENABLED_FOR_RECORDING_MODE()) { \
1002 base::trace_event::TraceEventHandle h = \
1003 trace_event_internal::AddTraceEvent( \
1004 TRACE_EVENT_PHASE_COMPLETE, \
1005 INTERNAL_TRACE_EVENT_UID(category_group_enabled), name, \
1006 trace_event_internal::kNoEventId, TRACE_EVENT_FLAG_NONE, \
1008 INTERNAL_TRACE_EVENT_UID(tracer).Initialize( \
1009 INTERNAL_TRACE_EVENT_UID(category_group_enabled), name, h); \
1012 // Implementation detail: internal macro to create static category and add
1013 // event if the category is enabled.
1014 #define INTERNAL_TRACE_EVENT_ADD_WITH_ID(phase, category_group, name, id, \
1017 INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group); \
1018 if (INTERNAL_TRACE_EVENT_CATEGORY_GROUP_ENABLED_FOR_RECORDING_MODE()) { \
1019 unsigned char trace_event_flags = flags | TRACE_EVENT_FLAG_HAS_ID; \
1020 trace_event_internal::TraceID trace_event_trace_id( \
1021 id, &trace_event_flags); \
1022 trace_event_internal::AddTraceEvent( \
1023 phase, INTERNAL_TRACE_EVENT_UID(category_group_enabled), \
1024 name, trace_event_trace_id.data(), trace_event_flags, \
1029 // Implementation detail: internal macro to create static category and add
1030 // event if the category is enabled.
1031 #define INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP(phase, \
1032 category_group, name, id, thread_id, timestamp, flags, ...) \
1034 INTERNAL_TRACE_EVENT_GET_CATEGORY_INFO(category_group); \
1035 if (INTERNAL_TRACE_EVENT_CATEGORY_GROUP_ENABLED_FOR_RECORDING_MODE()) { \
1036 unsigned char trace_event_flags = flags | TRACE_EVENT_FLAG_HAS_ID; \
1037 trace_event_internal::TraceID trace_event_trace_id( \
1038 id, &trace_event_flags); \
1039 trace_event_internal::AddTraceEventWithThreadIdAndTimestamp( \
1040 phase, INTERNAL_TRACE_EVENT_UID(category_group_enabled), \
1041 name, trace_event_trace_id.data(), \
1042 thread_id, base::TimeTicks::FromInternalValue(timestamp), \
1043 trace_event_flags | TRACE_EVENT_FLAG_EXPLICIT_TIMESTAMP, \
1048 // Notes regarding the following definitions:
1049 // New values can be added and propagated to third party libraries, but existing
1050 // definitions must never be changed, because third party libraries may use old
1053 // Phase indicates the nature of an event entry. E.g. part of a begin/end pair.
1054 #define TRACE_EVENT_PHASE_BEGIN ('B')
1055 #define TRACE_EVENT_PHASE_END ('E')
1056 #define TRACE_EVENT_PHASE_COMPLETE ('X')
1057 #define TRACE_EVENT_PHASE_INSTANT ('I')
1058 #define TRACE_EVENT_PHASE_ASYNC_BEGIN ('S')
1059 #define TRACE_EVENT_PHASE_ASYNC_STEP_INTO ('T')
1060 #define TRACE_EVENT_PHASE_ASYNC_STEP_PAST ('p')
1061 #define TRACE_EVENT_PHASE_ASYNC_END ('F')
1062 #define TRACE_EVENT_PHASE_NESTABLE_ASYNC_BEGIN ('b')
1063 #define TRACE_EVENT_PHASE_NESTABLE_ASYNC_END ('e')
1064 #define TRACE_EVENT_PHASE_NESTABLE_ASYNC_INSTANT ('n')
1065 #define TRACE_EVENT_PHASE_FLOW_BEGIN ('s')
1066 #define TRACE_EVENT_PHASE_FLOW_STEP ('t')
1067 #define TRACE_EVENT_PHASE_FLOW_END ('f')
1068 #define TRACE_EVENT_PHASE_METADATA ('M')
1069 #define TRACE_EVENT_PHASE_COUNTER ('C')
1070 #define TRACE_EVENT_PHASE_SAMPLE ('P')
1071 #define TRACE_EVENT_PHASE_CREATE_OBJECT ('N')
1072 #define TRACE_EVENT_PHASE_SNAPSHOT_OBJECT ('O')
1073 #define TRACE_EVENT_PHASE_DELETE_OBJECT ('D')
1074 #define TRACE_EVENT_PHASE_MEMORY_DUMP ('v')
1076 // Flags for changing the behavior of TRACE_EVENT_API_ADD_TRACE_EVENT.
1077 #define TRACE_EVENT_FLAG_NONE (static_cast<unsigned char>(0))
1078 #define TRACE_EVENT_FLAG_COPY (static_cast<unsigned char>(1 << 0))
1079 #define TRACE_EVENT_FLAG_HAS_ID (static_cast<unsigned char>(1 << 1))
1080 #define TRACE_EVENT_FLAG_MANGLE_ID (static_cast<unsigned char>(1 << 2))
1081 #define TRACE_EVENT_FLAG_SCOPE_OFFSET (static_cast<unsigned char>(1 << 3))
1082 #define TRACE_EVENT_FLAG_SCOPE_EXTRA (static_cast<unsigned char>(1 << 4))
1083 #define TRACE_EVENT_FLAG_EXPLICIT_TIMESTAMP (static_cast<unsigned char>(1 << 5))
1085 #define TRACE_EVENT_FLAG_SCOPE_MASK (static_cast<unsigned char>( \
1086 TRACE_EVENT_FLAG_SCOPE_OFFSET | TRACE_EVENT_FLAG_SCOPE_EXTRA))
1088 // Type values for identifying types in the TraceValue union.
1089 #define TRACE_VALUE_TYPE_BOOL (static_cast<unsigned char>(1))
1090 #define TRACE_VALUE_TYPE_UINT (static_cast<unsigned char>(2))
1091 #define TRACE_VALUE_TYPE_INT (static_cast<unsigned char>(3))
1092 #define TRACE_VALUE_TYPE_DOUBLE (static_cast<unsigned char>(4))
1093 #define TRACE_VALUE_TYPE_POINTER (static_cast<unsigned char>(5))
1094 #define TRACE_VALUE_TYPE_STRING (static_cast<unsigned char>(6))
1095 #define TRACE_VALUE_TYPE_COPY_STRING (static_cast<unsigned char>(7))
1096 #define TRACE_VALUE_TYPE_CONVERTABLE (static_cast<unsigned char>(8))
1098 // Enum reflecting the scope of an INSTANT event. Must fit within
1099 // TRACE_EVENT_FLAG_SCOPE_MASK.
1100 #define TRACE_EVENT_SCOPE_GLOBAL (static_cast<unsigned char>(0 << 3))
1101 #define TRACE_EVENT_SCOPE_PROCESS (static_cast<unsigned char>(1 << 3))
1102 #define TRACE_EVENT_SCOPE_THREAD (static_cast<unsigned char>(2 << 3))
1104 #define TRACE_EVENT_SCOPE_NAME_GLOBAL ('g')
1105 #define TRACE_EVENT_SCOPE_NAME_PROCESS ('p')
1106 #define TRACE_EVENT_SCOPE_NAME_THREAD ('t')
1108 namespace trace_event_internal
{
1110 // Specify these values when the corresponding argument of AddTraceEvent is not
1112 const int kZeroNumArgs
= 0;
1113 const unsigned long long kNoEventId
= 0;
1115 // TraceID encapsulates an ID that can either be an integer or pointer. Pointers
1116 // are by default mangled with the Process ID so that they are unlikely to
1117 // collide when the same pointer is used on different processes.
1122 explicit DontMangle(const void* id
)
1123 : data_(static_cast<unsigned long long>(
1124 reinterpret_cast<uintptr_t>(id
))) {}
1125 explicit DontMangle(unsigned long long id
) : data_(id
) {}
1126 explicit DontMangle(unsigned long id
) : data_(id
) {}
1127 explicit DontMangle(unsigned int id
) : data_(id
) {}
1128 explicit DontMangle(unsigned short id
) : data_(id
) {}
1129 explicit DontMangle(unsigned char id
) : data_(id
) {}
1130 explicit DontMangle(long long id
)
1131 : data_(static_cast<unsigned long long>(id
)) {}
1132 explicit DontMangle(long id
)
1133 : data_(static_cast<unsigned long long>(id
)) {}
1134 explicit DontMangle(int id
)
1135 : data_(static_cast<unsigned long long>(id
)) {}
1136 explicit DontMangle(short id
)
1137 : data_(static_cast<unsigned long long>(id
)) {}
1138 explicit DontMangle(signed char id
)
1139 : data_(static_cast<unsigned long long>(id
)) {}
1140 unsigned long long data() const { return data_
; }
1142 unsigned long long data_
;
1147 explicit ForceMangle(unsigned long long id
) : data_(id
) {}
1148 explicit ForceMangle(unsigned long id
) : data_(id
) {}
1149 explicit ForceMangle(unsigned int id
) : data_(id
) {}
1150 explicit ForceMangle(unsigned short id
) : data_(id
) {}
1151 explicit ForceMangle(unsigned char id
) : data_(id
) {}
1152 explicit ForceMangle(long long id
)
1153 : data_(static_cast<unsigned long long>(id
)) {}
1154 explicit ForceMangle(long id
)
1155 : data_(static_cast<unsigned long long>(id
)) {}
1156 explicit ForceMangle(int id
)
1157 : data_(static_cast<unsigned long long>(id
)) {}
1158 explicit ForceMangle(short id
)
1159 : data_(static_cast<unsigned long long>(id
)) {}
1160 explicit ForceMangle(signed char id
)
1161 : data_(static_cast<unsigned long long>(id
)) {}
1162 unsigned long long data() const { return data_
; }
1164 unsigned long long data_
;
1166 TraceID(const void* id
, unsigned char* flags
)
1167 : data_(static_cast<unsigned long long>(
1168 reinterpret_cast<uintptr_t>(id
))) {
1169 *flags
|= TRACE_EVENT_FLAG_MANGLE_ID
;
1171 TraceID(ForceMangle id
, unsigned char* flags
) : data_(id
.data()) {
1172 *flags
|= TRACE_EVENT_FLAG_MANGLE_ID
;
1174 TraceID(DontMangle id
, unsigned char* flags
) : data_(id
.data()) {
1176 TraceID(unsigned long long id
, unsigned char* flags
)
1177 : data_(id
) { (void)flags
; }
1178 TraceID(unsigned long id
, unsigned char* flags
)
1179 : data_(id
) { (void)flags
; }
1180 TraceID(unsigned int id
, unsigned char* flags
)
1181 : data_(id
) { (void)flags
; }
1182 TraceID(unsigned short id
, unsigned char* flags
)
1183 : data_(id
) { (void)flags
; }
1184 TraceID(unsigned char id
, unsigned char* flags
)
1185 : data_(id
) { (void)flags
; }
1186 TraceID(long long id
, unsigned char* flags
)
1187 : data_(static_cast<unsigned long long>(id
)) { (void)flags
; }
1188 TraceID(long id
, unsigned char* flags
)
1189 : data_(static_cast<unsigned long long>(id
)) { (void)flags
; }
1190 TraceID(int id
, unsigned char* flags
)
1191 : data_(static_cast<unsigned long long>(id
)) { (void)flags
; }
1192 TraceID(short id
, unsigned char* flags
)
1193 : data_(static_cast<unsigned long long>(id
)) { (void)flags
; }
1194 TraceID(signed char id
, unsigned char* flags
)
1195 : data_(static_cast<unsigned long long>(id
)) { (void)flags
; }
1197 unsigned long long data() const { return data_
; }
1200 unsigned long long data_
;
1203 // Simple union to store various types as unsigned long long.
1204 union TraceValueUnion
{
1206 unsigned long long as_uint
;
1209 const void* as_pointer
;
1210 const char* as_string
;
1213 // Simple container for const char* that should be copied instead of retained.
1214 class TraceStringWithCopy
{
1216 explicit TraceStringWithCopy(const char* str
) : str_(str
) {}
1217 const char* str() const { return str_
; }
1222 // Define SetTraceValue for each allowed type. It stores the type and
1223 // value in the return arguments. This allows this API to avoid declaring any
1224 // structures so that it is portable to third_party libraries.
1225 #define INTERNAL_DECLARE_SET_TRACE_VALUE(actual_type, \
1229 static inline void SetTraceValue( \
1231 unsigned char* type, \
1232 unsigned long long* value) { \
1233 TraceValueUnion type_value; \
1234 type_value.union_member = arg_expression; \
1235 *type = value_type_id; \
1236 *value = type_value.as_uint; \
1238 // Simpler form for int types that can be safely casted.
1239 #define INTERNAL_DECLARE_SET_TRACE_VALUE_INT(actual_type, \
1241 static inline void SetTraceValue( \
1243 unsigned char* type, \
1244 unsigned long long* value) { \
1245 *type = value_type_id; \
1246 *value = static_cast<unsigned long long>(arg); \
1249 INTERNAL_DECLARE_SET_TRACE_VALUE_INT(unsigned long long, TRACE_VALUE_TYPE_UINT
)
1250 INTERNAL_DECLARE_SET_TRACE_VALUE_INT(unsigned long, TRACE_VALUE_TYPE_UINT
)
1251 INTERNAL_DECLARE_SET_TRACE_VALUE_INT(unsigned int, TRACE_VALUE_TYPE_UINT
)
1252 INTERNAL_DECLARE_SET_TRACE_VALUE_INT(unsigned short, TRACE_VALUE_TYPE_UINT
)
1253 INTERNAL_DECLARE_SET_TRACE_VALUE_INT(unsigned char, TRACE_VALUE_TYPE_UINT
)
1254 INTERNAL_DECLARE_SET_TRACE_VALUE_INT(long long, TRACE_VALUE_TYPE_INT
)
1255 INTERNAL_DECLARE_SET_TRACE_VALUE_INT(long, TRACE_VALUE_TYPE_INT
)
1256 INTERNAL_DECLARE_SET_TRACE_VALUE_INT(int, TRACE_VALUE_TYPE_INT
)
1257 INTERNAL_DECLARE_SET_TRACE_VALUE_INT(short, TRACE_VALUE_TYPE_INT
)
1258 INTERNAL_DECLARE_SET_TRACE_VALUE_INT(signed char, TRACE_VALUE_TYPE_INT
)
1259 INTERNAL_DECLARE_SET_TRACE_VALUE(bool, arg
, as_bool
, TRACE_VALUE_TYPE_BOOL
)
1260 INTERNAL_DECLARE_SET_TRACE_VALUE(double, arg
, as_double
,
1261 TRACE_VALUE_TYPE_DOUBLE
)
1262 INTERNAL_DECLARE_SET_TRACE_VALUE(const void*, arg
, as_pointer
,
1263 TRACE_VALUE_TYPE_POINTER
)
1264 INTERNAL_DECLARE_SET_TRACE_VALUE(const char*, arg
, as_string
,
1265 TRACE_VALUE_TYPE_STRING
)
1266 INTERNAL_DECLARE_SET_TRACE_VALUE(const TraceStringWithCopy
&, arg
.str(),
1267 as_string
, TRACE_VALUE_TYPE_COPY_STRING
)
1269 #undef INTERNAL_DECLARE_SET_TRACE_VALUE
1270 #undef INTERNAL_DECLARE_SET_TRACE_VALUE_INT
1272 // std::string version of SetTraceValue so that trace arguments can be strings.
1273 static inline void SetTraceValue(const std::string
& arg
,
1274 unsigned char* type
,
1275 unsigned long long* value
) {
1276 TraceValueUnion type_value
;
1277 type_value
.as_string
= arg
.c_str();
1278 *type
= TRACE_VALUE_TYPE_COPY_STRING
;
1279 *value
= type_value
.as_uint
;
1282 // base::Time and base::TimeTicks version of SetTraceValue to make it easier to
1283 // trace these types.
1284 static inline void SetTraceValue(const base::Time arg
,
1285 unsigned char* type
,
1286 unsigned long long* value
) {
1287 *type
= TRACE_VALUE_TYPE_INT
;
1288 *value
= arg
.ToInternalValue();
1291 static inline void SetTraceValue(const base::TimeTicks arg
,
1292 unsigned char* type
,
1293 unsigned long long* value
) {
1294 *type
= TRACE_VALUE_TYPE_INT
;
1295 *value
= arg
.ToInternalValue();
1298 // These AddTraceEvent and AddTraceEventWithThreadIdAndTimestamp template
1299 // functions are defined here instead of in the macro, because the arg_values
1300 // could be temporary objects, such as std::string. In order to store
1301 // pointers to the internal c_str and pass through to the tracing API,
1302 // the arg_values must live throughout these procedures.
1304 static inline base::trace_event::TraceEventHandle
1305 AddTraceEventWithThreadIdAndTimestamp(
1307 const unsigned char* category_group_enabled
,
1309 unsigned long long id
,
1311 const base::TimeTicks
& timestamp
,
1312 unsigned char flags
,
1313 const char* arg1_name
,
1314 const scoped_refptr
<base::trace_event::ConvertableToTraceFormat
>&
1316 const int num_args
= 1;
1317 unsigned char arg_types
[1] = { TRACE_VALUE_TYPE_CONVERTABLE
};
1318 return TRACE_EVENT_API_ADD_TRACE_EVENT_WITH_THREAD_ID_AND_TIMESTAMP(
1319 phase
, category_group_enabled
, name
, id
, thread_id
, timestamp
,
1320 num_args
, &arg1_name
, arg_types
, NULL
, &arg1_val
, flags
);
1323 template<class ARG1_TYPE
>
1324 static inline base::trace_event::TraceEventHandle
1325 AddTraceEventWithThreadIdAndTimestamp(
1327 const unsigned char* category_group_enabled
,
1329 unsigned long long id
,
1331 const base::TimeTicks
& timestamp
,
1332 unsigned char flags
,
1333 const char* arg1_name
,
1334 const ARG1_TYPE
& arg1_val
,
1335 const char* arg2_name
,
1336 const scoped_refptr
<base::trace_event::ConvertableToTraceFormat
>&
1338 const int num_args
= 2;
1339 const char* arg_names
[2] = { arg1_name
, arg2_name
};
1341 unsigned char arg_types
[2];
1342 unsigned long long arg_values
[2];
1343 SetTraceValue(arg1_val
, &arg_types
[0], &arg_values
[0]);
1344 arg_types
[1] = TRACE_VALUE_TYPE_CONVERTABLE
;
1346 scoped_refptr
<base::trace_event::ConvertableToTraceFormat
>
1347 convertable_values
[2];
1348 convertable_values
[1] = arg2_val
;
1350 return TRACE_EVENT_API_ADD_TRACE_EVENT_WITH_THREAD_ID_AND_TIMESTAMP(
1351 phase
, category_group_enabled
, name
, id
, thread_id
, timestamp
,
1352 num_args
, arg_names
, arg_types
, arg_values
, convertable_values
, flags
);
1355 template<class ARG2_TYPE
>
1356 static inline base::trace_event::TraceEventHandle
1357 AddTraceEventWithThreadIdAndTimestamp(
1359 const unsigned char* category_group_enabled
,
1361 unsigned long long id
,
1363 const base::TimeTicks
& timestamp
,
1364 unsigned char flags
,
1365 const char* arg1_name
,
1366 const scoped_refptr
<base::trace_event::ConvertableToTraceFormat
>& arg1_val
,
1367 const char* arg2_name
,
1368 const ARG2_TYPE
& arg2_val
) {
1369 const int num_args
= 2;
1370 const char* arg_names
[2] = { arg1_name
, arg2_name
};
1372 unsigned char arg_types
[2];
1373 unsigned long long arg_values
[2];
1374 arg_types
[0] = TRACE_VALUE_TYPE_CONVERTABLE
;
1376 SetTraceValue(arg2_val
, &arg_types
[1], &arg_values
[1]);
1378 scoped_refptr
<base::trace_event::ConvertableToTraceFormat
>
1379 convertable_values
[2];
1380 convertable_values
[0] = arg1_val
;
1382 return TRACE_EVENT_API_ADD_TRACE_EVENT_WITH_THREAD_ID_AND_TIMESTAMP(
1383 phase
, category_group_enabled
, name
, id
, thread_id
, timestamp
,
1384 num_args
, arg_names
, arg_types
, arg_values
, convertable_values
, flags
);
1387 static inline base::trace_event::TraceEventHandle
1388 AddTraceEventWithThreadIdAndTimestamp(
1390 const unsigned char* category_group_enabled
,
1392 unsigned long long id
,
1394 const base::TimeTicks
& timestamp
,
1395 unsigned char flags
,
1396 const char* arg1_name
,
1397 const scoped_refptr
<base::trace_event::ConvertableToTraceFormat
>& arg1_val
,
1398 const char* arg2_name
,
1399 const scoped_refptr
<base::trace_event::ConvertableToTraceFormat
>&
1401 const int num_args
= 2;
1402 const char* arg_names
[2] = { arg1_name
, arg2_name
};
1403 unsigned char arg_types
[2] =
1404 { TRACE_VALUE_TYPE_CONVERTABLE
, TRACE_VALUE_TYPE_CONVERTABLE
};
1405 scoped_refptr
<base::trace_event::ConvertableToTraceFormat
>
1406 convertable_values
[2] = {arg1_val
, arg2_val
};
1408 return TRACE_EVENT_API_ADD_TRACE_EVENT_WITH_THREAD_ID_AND_TIMESTAMP(
1409 phase
, category_group_enabled
, name
, id
, thread_id
, timestamp
,
1410 num_args
, arg_names
, arg_types
, NULL
, convertable_values
, flags
);
1413 static inline base::trace_event::TraceEventHandle
1414 AddTraceEventWithThreadIdAndTimestamp(
1416 const unsigned char* category_group_enabled
,
1418 unsigned long long id
,
1420 const base::TimeTicks
& timestamp
,
1421 unsigned char flags
) {
1422 return TRACE_EVENT_API_ADD_TRACE_EVENT_WITH_THREAD_ID_AND_TIMESTAMP(
1423 phase
, category_group_enabled
, name
, id
, thread_id
, timestamp
,
1424 kZeroNumArgs
, NULL
, NULL
, NULL
, NULL
, flags
);
1427 static inline base::trace_event::TraceEventHandle
AddTraceEvent(
1429 const unsigned char* category_group_enabled
,
1431 unsigned long long id
,
1432 unsigned char flags
) {
1433 int thread_id
= static_cast<int>(base::PlatformThread::CurrentId());
1434 base::TimeTicks now
= base::TimeTicks::NowFromSystemTraceTime();
1435 return AddTraceEventWithThreadIdAndTimestamp(phase
, category_group_enabled
,
1436 name
, id
, thread_id
, now
, flags
);
1439 template<class ARG1_TYPE
>
1440 static inline base::trace_event::TraceEventHandle
1441 AddTraceEventWithThreadIdAndTimestamp(
1443 const unsigned char* category_group_enabled
,
1445 unsigned long long id
,
1447 const base::TimeTicks
& timestamp
,
1448 unsigned char flags
,
1449 const char* arg1_name
,
1450 const ARG1_TYPE
& arg1_val
) {
1451 const int num_args
= 1;
1452 unsigned char arg_types
[1];
1453 unsigned long long arg_values
[1];
1454 SetTraceValue(arg1_val
, &arg_types
[0], &arg_values
[0]);
1455 return TRACE_EVENT_API_ADD_TRACE_EVENT_WITH_THREAD_ID_AND_TIMESTAMP(
1456 phase
, category_group_enabled
, name
, id
, thread_id
, timestamp
,
1457 num_args
, &arg1_name
, arg_types
, arg_values
, NULL
, flags
);
1460 template<class ARG1_TYPE
>
1461 static inline base::trace_event::TraceEventHandle
AddTraceEvent(
1463 const unsigned char* category_group_enabled
,
1465 unsigned long long id
,
1466 unsigned char flags
,
1467 const char* arg1_name
,
1468 const ARG1_TYPE
& arg1_val
) {
1469 int thread_id
= static_cast<int>(base::PlatformThread::CurrentId());
1470 base::TimeTicks now
= base::TimeTicks::NowFromSystemTraceTime();
1471 return AddTraceEventWithThreadIdAndTimestamp(phase
, category_group_enabled
,
1472 name
, id
, thread_id
, now
, flags
,
1473 arg1_name
, arg1_val
);
1476 template<class ARG1_TYPE
, class ARG2_TYPE
>
1477 static inline base::trace_event::TraceEventHandle
1478 AddTraceEventWithThreadIdAndTimestamp(
1480 const unsigned char* category_group_enabled
,
1482 unsigned long long id
,
1484 const base::TimeTicks
& timestamp
,
1485 unsigned char flags
,
1486 const char* arg1_name
,
1487 const ARG1_TYPE
& arg1_val
,
1488 const char* arg2_name
,
1489 const ARG2_TYPE
& arg2_val
) {
1490 const int num_args
= 2;
1491 const char* arg_names
[2] = { arg1_name
, arg2_name
};
1492 unsigned char arg_types
[2];
1493 unsigned long long arg_values
[2];
1494 SetTraceValue(arg1_val
, &arg_types
[0], &arg_values
[0]);
1495 SetTraceValue(arg2_val
, &arg_types
[1], &arg_values
[1]);
1496 return TRACE_EVENT_API_ADD_TRACE_EVENT_WITH_THREAD_ID_AND_TIMESTAMP(
1497 phase
, category_group_enabled
, name
, id
, thread_id
, timestamp
,
1498 num_args
, arg_names
, arg_types
, arg_values
, NULL
, flags
);
1501 template<class ARG1_TYPE
, class ARG2_TYPE
>
1502 static inline base::trace_event::TraceEventHandle
AddTraceEvent(
1504 const unsigned char* category_group_enabled
,
1506 unsigned long long id
,
1507 unsigned char flags
,
1508 const char* arg1_name
,
1509 const ARG1_TYPE
& arg1_val
,
1510 const char* arg2_name
,
1511 const ARG2_TYPE
& arg2_val
) {
1512 int thread_id
= static_cast<int>(base::PlatformThread::CurrentId());
1513 base::TimeTicks now
= base::TimeTicks::NowFromSystemTraceTime();
1514 return AddTraceEventWithThreadIdAndTimestamp(phase
, category_group_enabled
,
1515 name
, id
, thread_id
, now
, flags
,
1516 arg1_name
, arg1_val
,
1517 arg2_name
, arg2_val
);
1520 // Used by TRACE_EVENTx macros. Do not use directly.
1521 class TRACE_EVENT_API_CLASS_EXPORT ScopedTracer
{
1523 // Note: members of data_ intentionally left uninitialized. See Initialize.
1524 ScopedTracer() : p_data_(NULL
) {}
1527 if (p_data_
&& *data_
.category_group_enabled
)
1528 TRACE_EVENT_API_UPDATE_TRACE_EVENT_DURATION(
1529 data_
.category_group_enabled
, data_
.name
, data_
.event_handle
);
1532 void Initialize(const unsigned char* category_group_enabled
,
1534 base::trace_event::TraceEventHandle event_handle
) {
1535 data_
.category_group_enabled
= category_group_enabled
;
1537 data_
.event_handle
= event_handle
;
1542 // This Data struct workaround is to avoid initializing all the members
1543 // in Data during construction of this object, since this object is always
1544 // constructed, even when tracing is disabled. If the members of Data were
1545 // members of this class instead, compiler warnings occur about potential
1546 // uninitialized accesses.
1548 const unsigned char* category_group_enabled
;
1550 base::trace_event::TraceEventHandle event_handle
;
1556 // Used by TRACE_EVENT_BINARY_EFFICIENTx macro. Do not use directly.
1557 class TRACE_EVENT_API_CLASS_EXPORT ScopedTraceBinaryEfficient
{
1559 ScopedTraceBinaryEfficient(const char* category_group
, const char* name
);
1560 ~ScopedTraceBinaryEfficient();
1563 const unsigned char* category_group_enabled_
;
1565 base::trace_event::TraceEventHandle event_handle_
;
1568 // This macro generates less code then TRACE_EVENT0 but is also
1569 // slower to execute when tracing is off. It should generally only be
1570 // used with code that is seldom executed or conditionally executed
1572 // For now the category_group must be "gpu".
1573 #define TRACE_EVENT_BINARY_EFFICIENT0(category_group, name) \
1574 trace_event_internal::ScopedTraceBinaryEfficient \
1575 INTERNAL_TRACE_EVENT_UID(scoped_trace)(category_group, name);
1577 // TraceEventSamplingStateScope records the current sampling state
1578 // and sets a new sampling state. When the scope exists, it restores
1579 // the sampling state having recorded.
1580 template<size_t BucketNumber
>
1581 class TraceEventSamplingStateScope
{
1583 TraceEventSamplingStateScope(const char* category_and_name
) {
1584 previous_state_
= TraceEventSamplingStateScope
<BucketNumber
>::Current();
1585 TraceEventSamplingStateScope
<BucketNumber
>::Set(category_and_name
);
1588 ~TraceEventSamplingStateScope() {
1589 TraceEventSamplingStateScope
<BucketNumber
>::Set(previous_state_
);
1592 static inline const char* Current() {
1593 return reinterpret_cast<const char*>(TRACE_EVENT_API_ATOMIC_LOAD(
1594 g_trace_state
[BucketNumber
]));
1597 static inline void Set(const char* category_and_name
) {
1598 TRACE_EVENT_API_ATOMIC_STORE(
1599 g_trace_state
[BucketNumber
],
1600 reinterpret_cast<TRACE_EVENT_API_ATOMIC_WORD
>(
1601 const_cast<char*>(category_and_name
)));
1605 const char* previous_state_
;
1608 } // namespace trace_event_internal
1611 namespace trace_event
{
1613 template<typename IDType
> class TraceScopedTrackableObject
{
1615 TraceScopedTrackableObject(const char* category_group
, const char* name
,
1617 : category_group_(category_group
),
1620 TRACE_EVENT_OBJECT_CREATED_WITH_ID(category_group_
, name_
, id_
);
1623 template <typename ArgType
> void snapshot(ArgType snapshot
) {
1624 TRACE_EVENT_OBJECT_SNAPSHOT_WITH_ID(category_group_
, name_
, id_
, snapshot
);
1627 ~TraceScopedTrackableObject() {
1628 TRACE_EVENT_OBJECT_DELETED_WITH_ID(category_group_
, name_
, id_
);
1632 const char* category_group_
;
1636 DISALLOW_COPY_AND_ASSIGN(TraceScopedTrackableObject
);
1639 } // namespace trace_event
1642 #endif // BASE_TRACE_EVENT_TRACE_EVENT_H_