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

Unified Diff: src/code-factory.cc

Issue 1168093002: [strong] Implement strong mode restrictions on property access (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix arm64 port Created 5 years, 6 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/code-factory.cc
diff --git a/src/code-factory.cc b/src/code-factory.cc
index fc7ea4aa3625c5491eb9e4fd0562c2ba2887353d..2aae7ad02cfb04f86ddeef2ad30f216450711302 100644
--- a/src/code-factory.cc
+++ b/src/code-factory.cc
@@ -13,35 +13,44 @@ namespace internal {
// static
-Callable CodeFactory::LoadIC(Isolate* isolate, ContextualMode mode) {
- return Callable(
- LoadIC::initialize_stub(isolate, LoadICState(mode).GetExtraICState()),
- LoadDescriptor(isolate));
+Callable CodeFactory::LoadIC(Isolate* isolate, ContextualMode mode,
+ LanguageMode language_mode) {
+ return Callable(LoadIC::initialize_stub(
+ isolate, LoadICState(mode, strength(language_mode))
+ .GetExtraICState()),
+ LoadDescriptor(isolate));
}
// static
Callable CodeFactory::LoadICInOptimizedCode(
- Isolate* isolate, ContextualMode mode,
+ Isolate* isolate, ContextualMode mode, LanguageMode language_mode,
InlineCacheState initialization_state) {
auto code = LoadIC::initialize_stub_in_optimized_code(
- isolate, LoadICState(mode).GetExtraICState(), initialization_state);
+ isolate, LoadICState(mode, strength(language_mode)).GetExtraICState(),
+ initialization_state);
return Callable(code, LoadWithVectorDescriptor(isolate));
}
// static
-Callable CodeFactory::KeyedLoadIC(Isolate* isolate) {
- return Callable(KeyedLoadIC::initialize_stub(isolate),
+Callable CodeFactory::KeyedLoadIC(Isolate* isolate,
+ LanguageMode language_mode) {
+ ExtraICState state =
+ is_strong(language_mode) ? LoadICState::kStrongModeState : 0;
+ return Callable(KeyedLoadIC::initialize_stub(isolate, state),
LoadDescriptor(isolate));
}
// static
Callable CodeFactory::KeyedLoadICInOptimizedCode(
- Isolate* isolate, InlineCacheState initialization_state) {
+ Isolate* isolate, LanguageMode language_mode,
+ InlineCacheState initialization_state) {
+ ExtraICState state =
+ is_strong(language_mode) ? LoadICState::kStrongModeState : 0;
auto code = KeyedLoadIC::initialize_stub_in_optimized_code(
- isolate, initialization_state);
+ isolate, initialization_state, state);
if (initialization_state != MEGAMORPHIC) {
return Callable(code, LoadWithVectorDescriptor(isolate));
}
« no previous file with comments | « src/code-factory.h ('k') | src/code-stubs.h » ('j') | test/mjsunit/strong/load-element.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698