| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
LGTM w/suggestion
perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.compile"))Should we remove all categories defined in v8/src/tracing/trace-categories.h from here, so that there's no overlap?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.compile"))Should we remove all categories defined in v8/src/tracing/trace-categories.h from here, so that there's no overlap?
I already did that some time ago, and the remaining are v8 categories here are ones that are referred in blink.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.compile"))Etienne Pierre-DorayShould we remove all categories defined in v8/src/tracing/trace-categories.h from here, so that there's no overlap?
I already did that some time ago, and the remaining are v8 categories here are ones that are referred in blink.
v8.runtime is not used in blink for example: https://source.chromium.org/search?q=v8.runtime%5C%22%20-f:gen%2F%20-f:crossbench%2F%20-f:pinpoint%2F&sq=
There may be others as well.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.compile"))Etienne Pierre-DorayShould we remove all categories defined in v8/src/tracing/trace-categories.h from here, so that there's no overlap?
Mikhail KhokhlovI already did that some time ago, and the remaining are v8 categories here are ones that are referred in blink.
v8.runtime is not used in blink for example: https://source.chromium.org/search?q=v8.runtime%5C%22%20-f:gen%2F%20-f:crossbench%2F%20-f:pinpoint%2F&sq=
There may be others as well.
Ah "v8.runtime" was aliased with "v8.runtime_stats".
Fixed and remove a few more categories.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
5 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: base/trace_event/builtin_categories.h
Insertions: 0, Deletions: 12.
@@ -99,7 +99,6 @@
perfetto::Category("Calculators"),
perfetto::Category("CameraStream"),
perfetto::Category("camera"),
- perfetto::Category("cast_app"),
perfetto::Category("cast.stream"),
perfetto::Category("cc").SetTags("rendering"),
perfetto::Category("cc.debug").SetTags("debug"),
@@ -137,7 +136,6 @@
perfetto::Category("extensions.content_verifier.debug").SetDescription(
"Traces for the extension file (content) verification process at "
"//extensions/browser/content_verifier.").SetTags("debug"),
- perfetto::Category("explore_sites"),
perfetto::Category("FileSystem"),
perfetto::Category("file_system_provider"),
perfetto::Category("fledge"),
@@ -221,7 +219,6 @@
"processes, etc. and their properties.").SetTags("toplevel"),
perfetto::Category("persistent_cache"),
perfetto::Category("ppapi"),
- perfetto::Category("ppapi_proxy"),
perfetto::Category("print"),
perfetto::Category("raf_investigation"),
perfetto::Category("rail"),
@@ -257,8 +254,6 @@
perfetto::Category("update_client").SetDescription(
"Events from component updater."),
perfetto::Category("v8"),
- perfetto::Category("v8.execute"),
- perfetto::Category("v8.wasm"),
perfetto::Category("ValueStoreFrontend::Backend"),
perfetto::Category("views").SetTags("rendering"),
perfetto::Category("views.frame"),
@@ -277,7 +272,6 @@
"Events that track usage of WebKit APIs on iOS."),
perfetto::Category("webnn"),
perfetto::Category("webrtc").SetTags("audio", "video"),
- perfetto::Category("webrtc_stats"),
perfetto::Category("xr"),
perfetto::Category(TRACE_DISABLED_BY_DEFAULT("android_view_hierarchy"))
.SetTags("slow"),
@@ -366,8 +360,6 @@
.SetTags("slow"),
perfetto::Category(TRACE_DISABLED_BY_DEFAULT("java-heap-profiler"))
.SetTags("slow"),
- perfetto::Category(TRACE_DISABLED_BY_DEFAULT("layer-element"))
- .SetTags("slow"),
perfetto::Category(TRACE_DISABLED_BY_DEFAULT("layout_shift.debug"))
.SetTags("debug"),
perfetto::Category(TRACE_DISABLED_BY_DEFAULT("lifecycles"))
@@ -426,12 +418,8 @@
.SetTags("slow"),
perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.compile"))
.SetTags("slow"),
- perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.runtime"))
- .SetTags("slow"),
perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.runtime_stats"))
.SetTags("slow"),
- perfetto::Category(TRACE_DISABLED_BY_DEFAULT("v8.runtime_stats_sampling"))
- .SetTags("slow"),
perfetto::Category(TRACE_DISABLED_BY_DEFAULT("video_and_image_capture"))
.SetTags("video", "slow"),
perfetto::Category(TRACE_DISABLED_BY_DEFAULT("display.framedisplayed"))
```
[tracing] Prune unused tracing categories
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |