Chromium Code Reviews

Unified Diff: src/bailout-reason.h

Issue 809333002: [turbofan] Implement OSR for outer loops. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add more tests. Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/bailout-reason.h
diff --git a/src/bailout-reason.h b/src/bailout-reason.h
index 7287d629d2e1bdaf94260f7b5728a1d8bb3b3143..e1dd6d7b58520c3822528904604d53d2c4dcbb3d 100644
--- a/src/bailout-reason.h
+++ b/src/bailout-reason.h
@@ -322,6 +322,8 @@ namespace internal {
V(kWrongFunctionContext, "Wrong context passed to function") \
V(kWrongAddressOrValuePassedToRecordWrite, \
"Wrong address or value passed to RecordWrite") \
+ V(kShouldNotDirectlyEnterOsrFunction, \
+ "Should not directly enter OSR-compiled function") \
V(kYield, "Yield")

Powered by Google App Engine