%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
// Copyright 2020 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_TRACING_TRACE_CATEGORIES_H_ #define V8_TRACING_TRACE_CATEGORIES_H_ #include "src/base/macros.h" #if defined(V8_USE_PERFETTO) // Exports tracks events into the v8 namespace to avoid conflicts with embedders // like Chrome. #define PERFETTO_TRACK_EVENT_NAMESPACE v8 // Export trace categories and the track event data source in components builds. #define PERFETTO_COMPONENT_EXPORT V8_EXPORT_PRIVATE // For now most of v8 uses legacy trace events. #define PERFETTO_ENABLE_LEGACY_TRACE_EVENTS 1 #include "perfetto/tracing.h" // Trace category prefixes used in tests. PERFETTO_DEFINE_TEST_CATEGORY_PREFIXES("v8-cat", "cat", "v8.Test2"); // List of categories used by built-in V8 trace events. // clang-format off PERFETTO_DEFINE_CATEGORIES( perfetto::Category("cppgc"), perfetto::Category("v8"), perfetto::Category("v8.console"), perfetto::Category("v8.execute"), perfetto::Category("v8.wasm"), perfetto::Category::Group("devtools.timeline,v8"), perfetto::Category::Group("devtools.timeline," TRACE_DISABLED_BY_DEFAULT("v8.gc")), perfetto::Category(TRACE_DISABLED_BY_DEFAULT("cppgc")), perfetto::Category(TRACE_DISABLED_BY_DEFAULT("devtools.timeline")), perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8")), perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.compile")), perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.cpu_profiler")), perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.gc")), perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.gc_stats")), perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.ic_stats")), perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.runtime")), perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.runtime_stats")), perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.runtime_stats_sampling")), perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.stack_trace")), perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.turbofan")), perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.wasm.detailed")), perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.wasm.turbofan")), perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.zone_stats")), perfetto::Category::Group("v8,devtools.timeline"), perfetto::Category::Group(TRACE_DISABLED_BY_DEFAULT("v8.turbofan") "," TRACE_DISABLED_BY_DEFAULT("v8.wasm.turbofan"))); // clang-format on #endif // defined(V8_USE_PERFETTO) #endif // V8_TRACING_TRACE_CATEGORIES_H_