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" |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 #include "src/compiler/scheduler.h" | 50 #include "src/compiler/scheduler.h" |
51 #include "src/compiler/select-lowering.h" | 51 #include "src/compiler/select-lowering.h" |
52 #include "src/compiler/simplified-lowering.h" | 52 #include "src/compiler/simplified-lowering.h" |
53 #include "src/compiler/simplified-operator-reducer.h" | 53 #include "src/compiler/simplified-operator-reducer.h" |
54 #include "src/compiler/tail-call-optimization.h" | 54 #include "src/compiler/tail-call-optimization.h" |
55 #include "src/compiler/typer.h" | 55 #include "src/compiler/typer.h" |
56 #include "src/compiler/value-numbering-reducer.h" | 56 #include "src/compiler/value-numbering-reducer.h" |
57 #include "src/compiler/verifier.h" | 57 #include "src/compiler/verifier.h" |
58 #include "src/compiler/zone-pool.h" | 58 #include "src/compiler/zone-pool.h" |
59 #include "src/ostreams.h" | 59 #include "src/ostreams.h" |
60 #include "src/register-configuration.h" | |
61 #include "src/type-info.h" | 60 #include "src/type-info.h" |
62 #include "src/utils.h" | 61 #include "src/utils.h" |
63 | 62 |
64 namespace v8 { | 63 namespace v8 { |
65 namespace internal { | 64 namespace internal { |
66 namespace compiler { | 65 namespace compiler { |
67 | 66 |
68 class PipelineData { | 67 class PipelineData { |
69 public: | 68 public: |
70 // For main entry point. | 69 // For main entry point. |
(...skipping 1339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1410 tcf << AsC1VRegisterAllocationData("CodeGen", | 1409 tcf << AsC1VRegisterAllocationData("CodeGen", |
1411 data->register_allocation_data()); | 1410 data->register_allocation_data()); |
1412 } | 1411 } |
1413 | 1412 |
1414 data->DeleteRegisterAllocationZone(); | 1413 data->DeleteRegisterAllocationZone(); |
1415 } | 1414 } |
1416 | 1415 |
1417 } // namespace compiler | 1416 } // namespace compiler |
1418 } // namespace internal | 1417 } // namespace internal |
1419 } // namespace v8 | 1418 } // namespace v8 |
OLD | NEW |