| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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/wasm-compiler.h" | 5 #include "src/compiler/wasm-compiler.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "src/isolate-inl.h" | 9 #include "src/isolate-inl.h" |
| 10 | 10 |
| 11 #include "src/base/platform/elapsed-timer.h" | 11 #include "src/base/platform/elapsed-timer.h" |
| 12 #include "src/base/platform/platform.h" | 12 #include "src/base/platform/platform.h" |
| 13 | 13 |
| 14 #include "src/compiler/access-builder.h" | 14 #include "src/compiler/access-builder.h" |
| 15 #include "src/compiler/common-operator.h" | 15 #include "src/compiler/common-operator.h" |
| 16 #include "src/compiler/diamond.h" | 16 #include "src/compiler/diamond.h" |
| 17 #include "src/compiler/graph-visualizer.h" | 17 #include "src/compiler/graph-visualizer.h" |
| 18 #include "src/compiler/graph.h" | 18 #include "src/compiler/graph.h" |
| 19 #include "src/compiler/instruction-selector.h" | 19 #include "src/compiler/instruction-selector.h" |
| 20 #include "src/compiler/int64-lowering.h" | 20 #include "src/compiler/int64-lowering.h" |
| 21 #include "src/compiler/js-generic-lowering.h" | |
| 22 #include "src/compiler/js-graph.h" | 21 #include "src/compiler/js-graph.h" |
| 23 #include "src/compiler/js-operator.h" | 22 #include "src/compiler/js-operator.h" |
| 24 #include "src/compiler/linkage.h" | 23 #include "src/compiler/linkage.h" |
| 25 #include "src/compiler/machine-operator.h" | 24 #include "src/compiler/machine-operator.h" |
| 26 #include "src/compiler/node-matchers.h" | 25 #include "src/compiler/node-matchers.h" |
| 27 #include "src/compiler/pipeline.h" | 26 #include "src/compiler/pipeline.h" |
| 28 #include "src/compiler/simd-lowering.h" | 27 #include "src/compiler/simd-lowering.h" |
| 29 #include "src/compiler/source-position.h" | 28 #include "src/compiler/source-position.h" |
| 30 #include "src/compiler/zone-pool.h" | 29 #include "src/compiler/zone-pool.h" |
| 31 | 30 |
| (...skipping 3428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3460 function_->code_start_offset), | 3459 function_->code_start_offset), |
| 3461 compile_ms); | 3460 compile_ms); |
| 3462 } | 3461 } |
| 3463 | 3462 |
| 3464 return code; | 3463 return code; |
| 3465 } | 3464 } |
| 3466 | 3465 |
| 3467 } // namespace compiler | 3466 } // namespace compiler |
| 3468 } // namespace internal | 3467 } // namespace internal |
| 3469 } // namespace v8 | 3468 } // namespace v8 |
| OLD | NEW |