| 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/assembler.h" | 5 #include "src/assembler.h" |
| 6 #include "src/base/lazy-instance.h" | 6 #include "src/base/lazy-instance.h" |
| 7 #include "src/macro-assembler.h" | 7 #include "src/macro-assembler.h" |
| 8 #include "src/register-configuration.h" | 8 #include "src/register-configuration.h" |
| 9 | 9 |
| 10 #include "src/wasm/wasm-module.h" | 10 #include "src/wasm/wasm-module.h" |
| 11 | 11 |
| 12 #include "src/compiler/linkage.h" | 12 #include "src/compiler/linkage.h" |
| 13 | 13 |
| 14 #include "src/zone.h" | 14 #include "src/zone/zone.h" |
| 15 | 15 |
| 16 namespace v8 { | 16 namespace v8 { |
| 17 namespace internal { | 17 namespace internal { |
| 18 // TODO(titzer): this should not be in the WASM namespace. | 18 // TODO(titzer): this should not be in the WASM namespace. |
| 19 namespace wasm { | 19 namespace wasm { |
| 20 | 20 |
| 21 using compiler::LocationSignature; | 21 using compiler::LocationSignature; |
| 22 using compiler::CallDescriptor; | 22 using compiler::CallDescriptor; |
| 23 using compiler::LinkageLocation; | 23 using compiler::LinkageLocation; |
| 24 | 24 |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 descriptor->CalleeSavedFPRegisters(), // callee-saved fp regs | 369 descriptor->CalleeSavedFPRegisters(), // callee-saved fp regs |
| 370 descriptor->flags(), // flags | 370 descriptor->flags(), // flags |
| 371 descriptor->debug_name()); | 371 descriptor->debug_name()); |
| 372 | 372 |
| 373 return descriptor; | 373 return descriptor; |
| 374 } | 374 } |
| 375 | 375 |
| 376 } // namespace wasm | 376 } // namespace wasm |
| 377 } // namespace internal | 377 } // namespace internal |
| 378 } // namespace v8 | 378 } // namespace v8 |
| OLD | NEW |