Auto-Submit | +1 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
if (V8_UNLIKELY(data->info()->trace_turbo_graph())) {
PrintMaglevGraph(*data, maglev_graph, "After inlining");
}
Inside Inlining we already print the graphs, but via --print-maglev-graphs. Should we do || trace_turbo_graph there?
if (V8_UNLIKELY(v8_flags.print_maglev_graphs && is_tracing_enabled())) {
Here
if (V8_UNLIKELY(v8_flags.print_maglev_graphs && is_tracing_enabled())) {
Here
if (V8_UNLIKELY(v8_flags.print_maglev_graphs && is_tracing_enabled())) {
and here
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Code-Review | +1 |
LGTM
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Meh, tests fail because they check for the exact output. I don't have time to fix them, so that'll wait until I'm back :D
if (V8_UNLIKELY(data->info()->trace_turbo_graph())) {
PrintMaglevGraph(*data, maglev_graph, "After inlining");
}
Inside Inlining we already print the graphs, but via --print-maglev-graphs. Should we do || trace_turbo_graph there?
Ah yea, we should teach Maglev that the Turbofan flags control Turbolev tracing rather than the Maglev flags. But it's late, so I'll do this in September I guess :)
if (V8_UNLIKELY(v8_flags.print_maglev_graphs && is_tracing_enabled())) {
Darius MercadierHere
Acknowledged
if (V8_UNLIKELY(v8_flags.print_maglev_graphs && is_tracing_enabled())) {
Darius MercadierHere
Acknowledged
if (V8_UNLIKELY(v8_flags.print_maglev_graphs && is_tracing_enabled())) {
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
if (V8_UNLIKELY(data->info()->trace_turbo_graph())) {
PrintMaglevGraph(*data, maglev_graph, "After inlining");
}
Darius MercadierInside Inlining we already print the graphs, but via --print-maglev-graphs. Should we do || trace_turbo_graph there?
Ah yea, we should teach Maglev that the Turbofan flags control Turbolev tracing rather than the Maglev flags. But it's late, so I'll do this in September I guess :)
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Auto-Submit | +1 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Code-Review | +1 |
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. |
[turbofan][maglev] Improve inlining tracing
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |