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

Unified Diff: runtime/vm/stub_code.h

Issue 2374273002: Fix a throw returning to a frame marked for lazy deopt that captures the stacktrace. (Closed)
Patch Set: . Created 4 years, 3 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 | « runtime/vm/raw_object.h ('k') | runtime/vm/stub_code_arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/stub_code.h
diff --git a/runtime/vm/stub_code.h b/runtime/vm/stub_code.h
index c179cacf8a939b5a045690e98ba8fa00f84758a9..bda3ba014f8b31212be8d352e64dbaf0a2435f83 100644
--- a/runtime/vm/stub_code.h
+++ b/runtime/vm/stub_code.h
@@ -45,7 +45,8 @@ class Deserializer;
V(MegamorphicCall) \
V(FixAllocationStubTarget) \
V(Deoptimize) \
- V(DeoptimizeLazy) \
+ V(DeoptimizeLazyFromReturn) \
+ V(DeoptimizeLazyFromThrow) \
V(UnoptimizedIdenticalWithNumberCheck) \
V(OptimizedIdenticalWithNumberCheck) \
V(ICCallBreakpoint) \
@@ -73,7 +74,8 @@ class Deserializer;
V(LazyCompile) \
V(FixCallersTarget) \
V(Deoptimize) \
- V(DeoptimizeLazy) \
+ V(DeoptimizeLazyFromReturn) \
+ V(DeoptimizeLazyFromThrow) \
V(FrameAwaitingMaterialization) \
#endif // !defined(TARGET_ARCH_DBC)
@@ -194,7 +196,8 @@ class StubCode : public AllStatic {
enum DeoptStubKind {
- kLazyDeopt,
+ kLazyDeoptFromReturn,
+ kLazyDeoptFromThrow,
kEagerDeopt
};
« no previous file with comments | « runtime/vm/raw_object.h ('k') | runtime/vm/stub_code_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698