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

Unified Diff: src/isolate.h

Issue 1100083002: Don't MISS if you read the hole from certain FastHoley arrays. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE and fix arm64 compilation. Created 5 years, 8 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 | « src/ic/ic-compiler.cc ('k') | src/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.h
diff --git a/src/isolate.h b/src/isolate.h
index d10e64b6d129382ccdaf775f5c69b75387bab823..ff03db8a57b73222977385e0dac50e0d8b13f121 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -1014,6 +1014,9 @@ class Isolate {
Map* get_initial_js_array_map(ElementsKind kind);
+ static const int kArrayProtectorValid = 1;
+ static const int kArrayProtectorInvalid = 0;
+
bool IsFastArrayConstructorPrototypeChainIntact();
// On intent to set an element in object, make sure that appropriate
« no previous file with comments | « src/ic/ic-compiler.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698