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

Unified Diff: runtime/vm/exceptions.cc

Issue 2388343002: Don't remove any entries from the pending deopts table before a throw. (Closed)
Patch Set: . Created 4 years, 2 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
« no previous file with comments | « no previous file | runtime/vm/stack_frame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/exceptions.cc
diff --git a/runtime/vm/exceptions.cc b/runtime/vm/exceptions.cc
index f5f66aee6c59fff91e118b2307996e7cda5ca393..125561740b8cd7df193408cb436e26140322a9cc 100644
--- a/runtime/vm/exceptions.cc
+++ b/runtime/vm/exceptions.cc
@@ -236,12 +236,6 @@ static void JumpToExceptionHandler(Thread* thread,
break;
}
}
- for (intptr_t i = pending_deopts->length() - 1; i >= 0; i--) {
- // Leave the mapping at fp itself for use in DeoptimizeCopyFrame.
- if ((*pending_deopts)[i].fp() < frame_pointer) {
- pending_deopts->RemoveAt(i);
- }
- }
#endif // !DBC
« no previous file with comments | « no previous file | runtime/vm/stack_frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698