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 <memory> | 8 #include <memory> |
9 #include <sstream> | 9 #include <sstream> |
10 | 10 |
11 #include "src/base/adapters.h" | 11 #include "src/base/adapters.h" |
12 #include "src/base/platform/elapsed-timer.h" | 12 #include "src/base/platform/elapsed-timer.h" |
| 13 #include "src/compilation-info.h" |
| 14 #include "src/compiler.h" |
13 #include "src/compiler/ast-graph-builder.h" | 15 #include "src/compiler/ast-graph-builder.h" |
14 #include "src/compiler/ast-loop-assignment-analyzer.h" | 16 #include "src/compiler/ast-loop-assignment-analyzer.h" |
15 #include "src/compiler/basic-block-instrumentor.h" | 17 #include "src/compiler/basic-block-instrumentor.h" |
16 #include "src/compiler/branch-elimination.h" | 18 #include "src/compiler/branch-elimination.h" |
17 #include "src/compiler/bytecode-graph-builder.h" | 19 #include "src/compiler/bytecode-graph-builder.h" |
18 #include "src/compiler/checkpoint-elimination.h" | 20 #include "src/compiler/checkpoint-elimination.h" |
19 #include "src/compiler/code-generator.h" | 21 #include "src/compiler/code-generator.h" |
20 #include "src/compiler/common-operator-reducer.h" | 22 #include "src/compiler/common-operator-reducer.h" |
21 #include "src/compiler/control-flow-optimizer.h" | 23 #include "src/compiler/control-flow-optimizer.h" |
22 #include "src/compiler/dead-code-elimination.h" | 24 #include "src/compiler/dead-code-elimination.h" |
(...skipping 1916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1939 data->DeleteRegisterAllocationZone(); | 1941 data->DeleteRegisterAllocationZone(); |
1940 } | 1942 } |
1941 | 1943 |
1942 CompilationInfo* PipelineImpl::info() const { return data_->info(); } | 1944 CompilationInfo* PipelineImpl::info() const { return data_->info(); } |
1943 | 1945 |
1944 Isolate* PipelineImpl::isolate() const { return info()->isolate(); } | 1946 Isolate* PipelineImpl::isolate() const { return info()->isolate(); } |
1945 | 1947 |
1946 } // namespace compiler | 1948 } // namespace compiler |
1947 } // namespace internal | 1949 } // namespace internal |
1948 } // namespace v8 | 1950 } // namespace v8 |
OLD | NEW |