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 #ifndef V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 5 #ifndef V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
6 #define V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 6 #define V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
7 | 7 |
8 #include "src/arm/assembler-arm.h" | 8 #include "src/arm/assembler-arm.h" |
9 #include "src/assembler.h" | 9 #include "src/assembler.h" |
10 #include "src/bailout-reason.h" | 10 #include "src/bailout-reason.h" |
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
556 | 556 |
557 // Simulate s-register moves for imaginary s32 - s63 registers. | 557 // Simulate s-register moves for imaginary s32 - s63 registers. |
558 void VmovExtended(Register dst, int src_code); | 558 void VmovExtended(Register dst, int src_code); |
559 void VmovExtended(int dst_code, Register src); | 559 void VmovExtended(int dst_code, Register src); |
560 // Move between s-registers and imaginary s-registers. | 560 // Move between s-registers and imaginary s-registers. |
561 void VmovExtended(int dst_code, int src_code, Register scratch); | 561 void VmovExtended(int dst_code, int src_code, Register scratch); |
562 void VmovExtended(int dst_code, const MemOperand& src, Register scratch); | 562 void VmovExtended(int dst_code, const MemOperand& src, Register scratch); |
563 void VmovExtended(const MemOperand& dst, int src_code, Register scratch); | 563 void VmovExtended(const MemOperand& dst, int src_code, Register scratch); |
564 | 564 |
565 void ExtractLane(Register dst, QwNeonRegister src, NeonDataType dt, int lane); | 565 void ExtractLane(Register dst, QwNeonRegister src, NeonDataType dt, int lane); |
| 566 void ExtractLane(Register dst, DwVfpRegister src, NeonDataType dt, int lane); |
566 void ExtractLane(SwVfpRegister dst, QwNeonRegister src, Register scratch, | 567 void ExtractLane(SwVfpRegister dst, QwNeonRegister src, Register scratch, |
567 int lane); | 568 int lane); |
568 void ReplaceLane(QwNeonRegister dst, QwNeonRegister src, Register src_lane, | 569 void ReplaceLane(QwNeonRegister dst, QwNeonRegister src, Register src_lane, |
569 NeonDataType dt, int lane); | 570 NeonDataType dt, int lane); |
570 void ReplaceLane(QwNeonRegister dst, QwNeonRegister src, | 571 void ReplaceLane(QwNeonRegister dst, QwNeonRegister src, |
571 SwVfpRegister src_lane, Register scratch, int lane); | 572 SwVfpRegister src_lane, Register scratch, int lane); |
572 void Swizzle(QwNeonRegister dst, QwNeonRegister src, Register scratch, | 573 void Swizzle(QwNeonRegister dst, QwNeonRegister src, Register scratch, |
573 NeonSize size, uint32_t lanes); | 574 NeonSize size, uint32_t lanes); |
574 | 575 |
575 void LslPair(Register dst_low, Register dst_high, Register src_low, | 576 void LslPair(Register dst_low, Register dst_high, Register src_low, |
(...skipping 891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1467 inline MemOperand NativeContextMemOperand() { | 1468 inline MemOperand NativeContextMemOperand() { |
1468 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); | 1469 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); |
1469 } | 1470 } |
1470 | 1471 |
1471 #define ACCESS_MASM(masm) masm-> | 1472 #define ACCESS_MASM(masm) masm-> |
1472 | 1473 |
1473 } // namespace internal | 1474 } // namespace internal |
1474 } // namespace v8 | 1475 } // namespace v8 |
1475 | 1476 |
1476 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1477 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
OLD | NEW |