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

Side by Side Diff: src/compiler/js-native-context-specialization.cc

Issue 2642743002: Revert [TypeFeedbackVector] Root literal arrays in function literal slots (Closed)
Patch Set: Altered test for wasm. Created 3 years, 11 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 unified diff | Download patch
« no previous file with comments | « src/compiler/js-graph.cc ('k') | src/contexts.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/compiler/js-native-context-specialization.h" 5 #include "src/compiler/js-native-context-specialization.h"
6 6
7 #include "src/accessors.h" 7 #include "src/accessors.h"
8 #include "src/code-factory.h" 8 #include "src/code-factory.h"
9 #include "src/compilation-dependencies.h" 9 #include "src/compilation-dependencies.h"
10 #include "src/compiler/access-builder.h" 10 #include "src/compiler/access-builder.h"
(...skipping 1264 matching lines...) Expand 10 before | Expand all | Expand 10 after
1275 if (nexus.IsUninitialized()) { 1275 if (nexus.IsUninitialized()) {
1276 return NoChange(); 1276 return NoChange();
1277 } 1277 }
1278 1278
1279 if (nexus.ic_state() == MEGAMORPHIC) { 1279 if (nexus.ic_state() == MEGAMORPHIC) {
1280 return NoChange(); 1280 return NoChange();
1281 } 1281 }
1282 1282
1283 DCHECK_EQ(MONOMORPHIC, nexus.ic_state()); 1283 DCHECK_EQ(MONOMORPHIC, nexus.ic_state());
1284 1284
1285 Map* map = nexus.FindFirstMap(); 1285 Handle<Map> receiver_map(nexus.FindFirstMap(), isolate());
1286 if (map == nullptr) {
1287 // Maps are weakly held in the type feedback vector, we may not have one.
1288 return NoChange();
1289 }
1290
1291 Handle<Map> receiver_map(map, isolate());
1292 Handle<Name> cached_name = 1286 Handle<Name> cached_name =
1293 handle(Name::cast(nexus.GetFeedbackExtra()), isolate()); 1287 handle(Name::cast(nexus.GetFeedbackExtra()), isolate());
1294 1288
1295 PropertyAccessInfo access_info; 1289 PropertyAccessInfo access_info;
1296 AccessInfoFactory access_info_factory(dependencies(), native_context(), 1290 AccessInfoFactory access_info_factory(dependencies(), native_context(),
1297 graph()->zone()); 1291 graph()->zone());
1298 if (!access_info_factory.ComputePropertyAccessInfo( 1292 if (!access_info_factory.ComputePropertyAccessInfo(
1299 receiver_map, cached_name, AccessMode::kStoreInLiteral, 1293 receiver_map, cached_name, AccessMode::kStoreInLiteral,
1300 &access_info)) { 1294 &access_info)) {
1301 return NoChange(); 1295 return NoChange();
(...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after
1919 return jsgraph()->javascript(); 1913 return jsgraph()->javascript();
1920 } 1914 }
1921 1915
1922 SimplifiedOperatorBuilder* JSNativeContextSpecialization::simplified() const { 1916 SimplifiedOperatorBuilder* JSNativeContextSpecialization::simplified() const {
1923 return jsgraph()->simplified(); 1917 return jsgraph()->simplified();
1924 } 1918 }
1925 1919
1926 } // namespace compiler 1920 } // namespace compiler
1927 } // namespace internal 1921 } // namespace internal
1928 } // namespace v8 1922 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/js-graph.cc ('k') | src/contexts.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698