| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |