| 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-graph.h" | 21 #include "src/compiler/js-graph.h" |
| 22 #include "src/compiler/js-operator.h" | 22 #include "src/compiler/js-operator.h" |
| 23 #include "src/compiler/linkage.h" | 23 #include "src/compiler/linkage.h" |
| 24 #include "src/compiler/machine-operator.h" | 24 #include "src/compiler/machine-operator.h" |
| 25 #include "src/compiler/node-matchers.h" | 25 #include "src/compiler/node-matchers.h" |
| 26 #include "src/compiler/pipeline.h" | 26 #include "src/compiler/pipeline.h" |
| 27 #include "src/compiler/source-position.h" | 27 #include "src/compiler/source-position.h" |
| 28 #include "src/compiler/zone-stats.h" | 28 #include "src/compiler/zone-pool.h" |
| 29 | 29 |
| 30 #include "src/code-factory.h" | 30 #include "src/code-factory.h" |
| 31 #include "src/code-stubs.h" | 31 #include "src/code-stubs.h" |
| 32 #include "src/factory.h" | 32 #include "src/factory.h" |
| 33 #include "src/log-inl.h" | 33 #include "src/log-inl.h" |
| 34 | 34 |
| 35 #include "src/wasm/ast-decoder.h" | 35 #include "src/wasm/ast-decoder.h" |
| 36 #include "src/wasm/wasm-module.h" | 36 #include "src/wasm/wasm-module.h" |
| 37 #include "src/wasm/wasm-opcodes.h" | 37 #include "src/wasm/wasm-opcodes.h" |
| 38 | 38 |
| (...skipping 3363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3402 function_->code_start_offset), | 3402 function_->code_start_offset), |
| 3403 compile_ms); | 3403 compile_ms); |
| 3404 } | 3404 } |
| 3405 | 3405 |
| 3406 return code; | 3406 return code; |
| 3407 } | 3407 } |
| 3408 | 3408 |
| 3409 } // namespace compiler | 3409 } // namespace compiler |
| 3410 } // namespace internal | 3410 } // namespace internal |
| 3411 } // namespace v8 | 3411 } // namespace v8 |
| OLD | NEW |