Commit d94f8343 authored by Leszek Swirski's avatar Leszek Swirski Committed by V8 LUCI CQ

[maglev] Add maglev CodeKind to function logging

Bug: v8:7700
Change-Id: If0ae8dce83d91b159c345bdeef74d902593cd185
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3605247
Commit-Queue: Leszek Swirski <leszeks@chromium.org>
Auto-Submit: Leszek Swirski <leszeks@chromium.org>
Reviewed-by: 's avatarVictor Gomes <victorgomes@chromium.org>
Commit-Queue: Victor Gomes <victorgomes@chromium.org>
Cr-Commit-Position: refs/heads/main@{#80158}
parent 65d29d32
......@@ -293,6 +293,9 @@ void Compiler::LogFunctionCompilation(Isolate* isolate,
case CodeKind::BASELINE:
name = "baseline";
break;
case CodeKind::MAGLEV:
name = "maglev";
break;
case CodeKind::TURBOFAN:
name = "optimize";
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment