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

Side by Side Diff: src/compiler/js-global-object-specialization.cc

Issue 2289573002: [turbofan] Remove the unused asm.js types from TypeCache. (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 unified diff | Download patch
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-global-object-specialization.h" 5 #include "src/compiler/js-global-object-specialization.h"
6 6
7 #include "src/compilation-dependencies.h" 7 #include "src/compilation-dependencies.h"
8 #include "src/compiler/access-builder.h" 8 #include "src/compiler/access-builder.h"
9 #include "src/compiler/common-operator.h" 9 #include "src/compiler/common-operator.h"
10 #include "src/compiler/js-graph.h" 10 #include "src/compiler/js-graph.h"
11 #include "src/compiler/js-operator.h" 11 #include "src/compiler/js-operator.h"
12 #include "src/compiler/node-properties.h" 12 #include "src/compiler/node-properties.h"
13 #include "src/compiler/simplified-operator.h" 13 #include "src/compiler/simplified-operator.h"
14 #include "src/compiler/type-cache.h"
14 #include "src/lookup.h" 15 #include "src/lookup.h"
15 #include "src/objects-inl.h" 16 #include "src/objects-inl.h"
16 #include "src/type-cache.h"
17 17
18 namespace v8 { 18 namespace v8 {
19 namespace internal { 19 namespace internal {
20 namespace compiler { 20 namespace compiler {
21 21
22 struct JSGlobalObjectSpecialization::ScriptContextTableLookupResult { 22 struct JSGlobalObjectSpecialization::ScriptContextTableLookupResult {
23 Handle<Context> context; 23 Handle<Context> context;
24 bool immutable; 24 bool immutable;
25 int index; 25 int index;
26 }; 26 };
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 } 272 }
273 273
274 274
275 SimplifiedOperatorBuilder* JSGlobalObjectSpecialization::simplified() const { 275 SimplifiedOperatorBuilder* JSGlobalObjectSpecialization::simplified() const {
276 return jsgraph()->simplified(); 276 return jsgraph()->simplified();
277 } 277 }
278 278
279 } // namespace compiler 279 } // namespace compiler
280 } // namespace internal 280 } // namespace internal
281 } // namespace v8 281 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/js-global-object-specialization.h ('k') | src/compiler/js-native-context-specialization.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698