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

[maglev] Print function name on bailout

Bug: v8:7700
Change-Id: I5155fc665f1214dda390fc6d1476ecf1f137166e
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3599483
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@{#80087}
parent 058e5fa6
......@@ -138,8 +138,9 @@ void MaglevGraphBuilder::BuildRegisterFrameInitialization() {
// TODO(v8:7700): Clean up after all bytecodes are supported.
#define MAGLEV_UNIMPLEMENTED(BytecodeName) \
do { \
std::cerr << "Maglev: Can't compile, bytecode " #BytecodeName \
" is not supported\n"; \
std::cerr << "Maglev: Can't compile " \
<< Brief(*compilation_unit_->function().object()) \
<< ", bytecode " #BytecodeName " is not supported\n"; \
found_unsupported_bytecode_ = true; \
this_field_will_be_unused_once_all_bytecodes_are_supported_ = true; \
} while (false)
......
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