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 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 #include "src/compiler/simplified-operator.h" | 62 #include "src/compiler/simplified-operator.h" |
63 #include "src/compiler/store-store-elimination.h" | 63 #include "src/compiler/store-store-elimination.h" |
64 #include "src/compiler/tail-call-optimization.h" | 64 #include "src/compiler/tail-call-optimization.h" |
65 #include "src/compiler/type-hint-analyzer.h" | 65 #include "src/compiler/type-hint-analyzer.h" |
66 #include "src/compiler/typer.h" | 66 #include "src/compiler/typer.h" |
67 #include "src/compiler/value-numbering-reducer.h" | 67 #include "src/compiler/value-numbering-reducer.h" |
68 #include "src/compiler/verifier.h" | 68 #include "src/compiler/verifier.h" |
69 #include "src/compiler/zone-pool.h" | 69 #include "src/compiler/zone-pool.h" |
70 #include "src/isolate-inl.h" | 70 #include "src/isolate-inl.h" |
71 #include "src/ostreams.h" | 71 #include "src/ostreams.h" |
72 #include "src/parsing/parser.h" | 72 #include "src/parsing/parse-info.h" |
73 #include "src/register-configuration.h" | 73 #include "src/register-configuration.h" |
74 #include "src/type-info.h" | 74 #include "src/type-info.h" |
75 #include "src/utils.h" | 75 #include "src/utils.h" |
76 | 76 |
77 namespace v8 { | 77 namespace v8 { |
78 namespace internal { | 78 namespace internal { |
79 namespace compiler { | 79 namespace compiler { |
80 | 80 |
81 class PipelineData { | 81 class PipelineData { |
82 public: | 82 public: |
(...skipping 1846 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1929 data->DeleteRegisterAllocationZone(); | 1929 data->DeleteRegisterAllocationZone(); |
1930 } | 1930 } |
1931 | 1931 |
1932 CompilationInfo* PipelineImpl::info() const { return data_->info(); } | 1932 CompilationInfo* PipelineImpl::info() const { return data_->info(); } |
1933 | 1933 |
1934 Isolate* PipelineImpl::isolate() const { return info()->isolate(); } | 1934 Isolate* PipelineImpl::isolate() const { return info()->isolate(); } |
1935 | 1935 |
1936 } // namespace compiler | 1936 } // namespace compiler |
1937 } // namespace internal | 1937 } // namespace internal |
1938 } // namespace v8 | 1938 } // namespace v8 |
OLD | NEW |