Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1104)

Unified Diff: src/isolate.cc

Issue 2247353005: [builtins] support exception handling in TFJ builtins (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Refactor a bit Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/isolate.cc
diff --git a/src/isolate.cc b/src/isolate.cc
index b4b3c38289dcf1a3fc92f7eff04156c284f271a9..44b8f0e844b2c53860878482446f812f455d97f0 100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -1222,7 +1222,11 @@ Object* Isolate::UnwindAndFindHandler() {
// Gather information from the frame.
code = frame->LookupCode();
- if (code->marked_for_deoptimization()) {
+
+ // TODO(bmeurer): Turbofanned BUILTIN frames appear as OPTIMIZED, but
+ // do not have a code kind of OPTIMIZED_FUNCTION.
+ if (code->kind() == Code::OPTIMIZED_FUNCTION &&
+ code->marked_for_deoptimization()) {
// If the target code is lazy deoptimized, we jump to the original
// return address, but we make a note that we are throwing, so that
// the deoptimizer can do the right thing.

Powered by Google App Engine
This is Rietveld 408576698