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

Side by Side Diff: src/compiler/typed-optimization.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
« no previous file with comments | « src/compiler/typed-optimization.h ('k') | src/compiler/typer.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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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/typed-optimization.h" 5 #include "src/compiler/typed-optimization.h"
6 6
7 #include "src/compilation-dependencies.h" 7 #include "src/compilation-dependencies.h"
8 #include "src/compiler/js-graph.h" 8 #include "src/compiler/js-graph.h"
9 #include "src/compiler/node-properties.h" 9 #include "src/compiler/node-properties.h"
10 #include "src/compiler/simplified-operator.h" 10 #include "src/compiler/simplified-operator.h"
11 #include "src/compiler/type-cache.h"
11 #include "src/isolate-inl.h" 12 #include "src/isolate-inl.h"
12 #include "src/type-cache.h"
13 13
14 namespace v8 { 14 namespace v8 {
15 namespace internal { 15 namespace internal {
16 namespace compiler { 16 namespace compiler {
17 17
18 TypedOptimization::TypedOptimization(Editor* editor, 18 TypedOptimization::TypedOptimization(Editor* editor,
19 CompilationDependencies* dependencies, 19 CompilationDependencies* dependencies,
20 Flags flags, JSGraph* jsgraph) 20 Flags flags, JSGraph* jsgraph)
21 : AdvancedReducer(editor), 21 : AdvancedReducer(editor),
22 dependencies_(dependencies), 22 dependencies_(dependencies),
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 248
249 Isolate* TypedOptimization::isolate() const { return jsgraph()->isolate(); } 249 Isolate* TypedOptimization::isolate() const { return jsgraph()->isolate(); }
250 250
251 SimplifiedOperatorBuilder* TypedOptimization::simplified() const { 251 SimplifiedOperatorBuilder* TypedOptimization::simplified() const {
252 return jsgraph()->simplified(); 252 return jsgraph()->simplified();
253 } 253 }
254 254
255 } // namespace compiler 255 } // namespace compiler
256 } // namespace internal 256 } // namespace internal
257 } // namespace v8 257 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/typed-optimization.h ('k') | src/compiler/typer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698