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/pipeline.h" | 5 #include "src/compiler/pipeline.h" |
6 | 6 |
7 #include <fstream> // NOLINT(readability/streams) | 7 #include <fstream> // NOLINT(readability/streams) |
8 #include <sstream> | 8 #include <sstream> |
9 | 9 |
10 #include "src/base/adapters.h" | 10 #include "src/base/adapters.h" |
11 #include "src/base/platform/elapsed-timer.h" | 11 #include "src/base/platform/elapsed-timer.h" |
12 #include "src/compiler/ast-graph-builder.h" | 12 #include "src/compiler/ast-graph-builder.h" |
13 #include "src/compiler/ast-loop-assignment-analyzer.h" | 13 #include "src/compiler/ast-loop-assignment-analyzer.h" |
14 #include "src/compiler/basic-block-instrumentor.h" | 14 #include "src/compiler/basic-block-instrumentor.h" |
15 #include "src/compiler/change-lowering.h" | 15 #include "src/compiler/change-lowering.h" |
16 #include "src/compiler/code-generator.h" | 16 #include "src/compiler/code-generator.h" |
17 #include "src/compiler/common-operator-reducer.h" | 17 #include "src/compiler/common-operator-reducer.h" |
18 #include "src/compiler/control-flow-optimizer.h" | 18 #include "src/compiler/control-flow-optimizer.h" |
19 #include "src/compiler/control-reducer.h" | 19 #include "src/compiler/control-reducer.h" |
20 #include "src/compiler/frame-elider.h" | 20 #include "src/compiler/frame-elider.h" |
21 #include "src/compiler/graph-replay.h" | 21 #include "src/compiler/graph-replay.h" |
22 #include "src/compiler/graph-visualizer.h" | 22 #include "src/compiler/graph-visualizer.h" |
| 23 #include "src/compiler/greedy-allocator.h" |
23 #include "src/compiler/instruction.h" | 24 #include "src/compiler/instruction.h" |
24 #include "src/compiler/instruction-selector.h" | 25 #include "src/compiler/instruction-selector.h" |
25 #include "src/compiler/js-builtin-reducer.h" | 26 #include "src/compiler/js-builtin-reducer.h" |
26 #include "src/compiler/js-context-specialization.h" | 27 #include "src/compiler/js-context-specialization.h" |
27 #include "src/compiler/js-generic-lowering.h" | 28 #include "src/compiler/js-generic-lowering.h" |
28 #include "src/compiler/js-inlining.h" | 29 #include "src/compiler/js-inlining.h" |
29 #include "src/compiler/js-intrinsic-lowering.h" | 30 #include "src/compiler/js-intrinsic-lowering.h" |
30 #include "src/compiler/js-type-feedback.h" | 31 #include "src/compiler/js-type-feedback.h" |
31 #include "src/compiler/js-typed-lowering.h" | 32 #include "src/compiler/js-typed-lowering.h" |
32 #include "src/compiler/jump-threading.h" | 33 #include "src/compiler/jump-threading.h" |
(...skipping 1296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1329 tcf << AsC1VRegisterAllocationData("CodeGen", | 1330 tcf << AsC1VRegisterAllocationData("CodeGen", |
1330 data->register_allocation_data()); | 1331 data->register_allocation_data()); |
1331 } | 1332 } |
1332 | 1333 |
1333 data->DeleteRegisterAllocationZone(); | 1334 data->DeleteRegisterAllocationZone(); |
1334 } | 1335 } |
1335 | 1336 |
1336 } // namespace compiler | 1337 } // namespace compiler |
1337 } // namespace internal | 1338 } // namespace internal |
1338 } // namespace v8 | 1339 } // namespace v8 |
OLD | NEW |