OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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/instruction-selector.h" | 5 #include "src/compiler/instruction-selector.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 | 8 |
9 #include "src/base/adapters.h" | 9 #include "src/base/adapters.h" |
| 10 #include "src/compiler/compiler-source-position-table.h" |
10 #include "src/compiler/instruction-selector-impl.h" | 11 #include "src/compiler/instruction-selector-impl.h" |
11 #include "src/compiler/node-matchers.h" | 12 #include "src/compiler/node-matchers.h" |
12 #include "src/compiler/pipeline.h" | 13 #include "src/compiler/pipeline.h" |
13 #include "src/compiler/schedule.h" | 14 #include "src/compiler/schedule.h" |
14 #include "src/compiler/state-values-utils.h" | 15 #include "src/compiler/state-values-utils.h" |
15 #include "src/deoptimizer.h" | 16 #include "src/deoptimizer.h" |
16 | 17 |
17 namespace v8 { | 18 namespace v8 { |
18 namespace internal { | 19 namespace internal { |
19 namespace compiler { | 20 namespace compiler { |
(...skipping 2083 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2103 return new (instruction_zone()) FrameStateDescriptor( | 2104 return new (instruction_zone()) FrameStateDescriptor( |
2104 instruction_zone(), state_info.type(), state_info.bailout_id(), | 2105 instruction_zone(), state_info.type(), state_info.bailout_id(), |
2105 state_info.state_combine(), parameters, locals, stack, | 2106 state_info.state_combine(), parameters, locals, stack, |
2106 state_info.shared_info(), outer_state); | 2107 state_info.shared_info(), outer_state); |
2107 } | 2108 } |
2108 | 2109 |
2109 | 2110 |
2110 } // namespace compiler | 2111 } // namespace compiler |
2111 } // namespace internal | 2112 } // namespace internal |
2112 } // namespace v8 | 2113 } // namespace v8 |
OLD | NEW |