| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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/x64/codegen-x64.h" |
| 6 |
| 5 #if V8_TARGET_ARCH_X64 | 7 #if V8_TARGET_ARCH_X64 |
| 6 | 8 |
| 7 #include "src/codegen.h" | 9 #include "src/codegen.h" |
| 8 #include "src/macro-assembler.h" | 10 #include "src/macro-assembler.h" |
| 9 | 11 |
| 10 namespace v8 { | 12 namespace v8 { |
| 11 namespace internal { | 13 namespace internal { |
| 12 | 14 |
| 13 // ------------------------------------------------------------------------- | 15 // ------------------------------------------------------------------------- |
| 14 // Platform-specific RuntimeCallHelper functions. | 16 // Platform-specific RuntimeCallHelper functions. |
| (...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 719 return Operand(base_reg_, argument_count_reg_, times_pointer_size, | 721 return Operand(base_reg_, argument_count_reg_, times_pointer_size, |
| 720 displacement_to_last_argument + (receiver - 1 - index) * kPointerSize); | 722 displacement_to_last_argument + (receiver - 1 - index) * kPointerSize); |
| 721 } | 723 } |
| 722 } | 724 } |
| 723 | 725 |
| 724 | 726 |
| 725 } // namespace internal | 727 } // namespace internal |
| 726 } // namespace v8 | 728 } // namespace v8 |
| 727 | 729 |
| 728 #endif // V8_TARGET_ARCH_X64 | 730 #endif // V8_TARGET_ARCH_X64 |
| OLD | NEW |