Commit 9fcd80c2 authored by Leszek Swirski's avatar Leszek Swirski Committed by Commit Bot

[profiler] Add missing VMStates to EntryForVMState

Bug: chromium:770530
Change-Id: I48f4c6968a34e0dce99f72e56302de81bf0f1991
Reviewed-on: https://chromium-review.googlesource.com/709597
Commit-Queue: Leszek Swirski <leszeks@chromium.org>
Reviewed-by: 's avatarPeter Marshall <petermarshall@chromium.org>
Cr-Commit-Position: refs/heads/master@{#48446}
parent 0f1dfae0
...@@ -739,7 +739,9 @@ CodeEntry* ProfileGenerator::EntryForVMState(StateTag tag) { ...@@ -739,7 +739,9 @@ CodeEntry* ProfileGenerator::EntryForVMState(StateTag tag) {
case GC: case GC:
return CodeEntry::gc_entry(); return CodeEntry::gc_entry();
case JS: case JS:
case PARSER:
case COMPILER: case COMPILER:
case BYTECODE_COMPILER:
// DOM events handlers are reported as OTHER / EXTERNAL entries. // DOM events handlers are reported as OTHER / EXTERNAL entries.
// To avoid confusing people, let's put all these entries into // To avoid confusing people, let's put all these entries into
// one bucket. // one bucket.
...@@ -748,8 +750,8 @@ CodeEntry* ProfileGenerator::EntryForVMState(StateTag tag) { ...@@ -748,8 +750,8 @@ CodeEntry* ProfileGenerator::EntryForVMState(StateTag tag) {
return CodeEntry::program_entry(); return CodeEntry::program_entry();
case IDLE: case IDLE:
return CodeEntry::idle_entry(); return CodeEntry::idle_entry();
default: return NULL;
} }
UNREACHABLE();
} }
} // namespace internal } // namespace internal
......
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