| 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/assembler.h" | 8 #include "src/assembler.h" |
| 9 #include "src/bailout-reason.h" | 9 #include "src/bailout-reason.h" |
| 10 #include "src/frames.h" | 10 #include "src/frames.h" |
| (...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 561 void VmovExtended(int dst_code, const MemOperand& src, Register scratch); | 561 void VmovExtended(int dst_code, const MemOperand& src, Register scratch); |
| 562 void VmovExtended(const MemOperand& dst, int src_code, Register scratch); | 562 void VmovExtended(const MemOperand& dst, int src_code, Register scratch); |
| 563 | 563 |
| 564 void ExtractLane(Register dst, QwNeonRegister src, NeonDataType dt, int lane); | 564 void ExtractLane(Register dst, QwNeonRegister src, NeonDataType dt, int lane); |
| 565 void ExtractLane(SwVfpRegister dst, QwNeonRegister src, Register scratch, | 565 void ExtractLane(SwVfpRegister dst, QwNeonRegister src, Register scratch, |
| 566 int lane); | 566 int lane); |
| 567 void ReplaceLane(QwNeonRegister dst, QwNeonRegister src, Register src_lane, | 567 void ReplaceLane(QwNeonRegister dst, QwNeonRegister src, Register src_lane, |
| 568 NeonDataType dt, int lane); | 568 NeonDataType dt, int lane); |
| 569 void ReplaceLane(QwNeonRegister dst, QwNeonRegister src, | 569 void ReplaceLane(QwNeonRegister dst, QwNeonRegister src, |
| 570 SwVfpRegister src_lane, Register scratch, int lane); | 570 SwVfpRegister src_lane, Register scratch, int lane); |
| 571 void Swizzle(QwNeonRegister dst, QwNeonRegister src, Register scratch, |
| 572 NeonSize size, uint32_t lanes); |
| 571 | 573 |
| 572 void LslPair(Register dst_low, Register dst_high, Register src_low, | 574 void LslPair(Register dst_low, Register dst_high, Register src_low, |
| 573 Register src_high, Register scratch, Register shift); | 575 Register src_high, Register scratch, Register shift); |
| 574 void LslPair(Register dst_low, Register dst_high, Register src_low, | 576 void LslPair(Register dst_low, Register dst_high, Register src_low, |
| 575 Register src_high, uint32_t shift); | 577 Register src_high, uint32_t shift); |
| 576 void LsrPair(Register dst_low, Register dst_high, Register src_low, | 578 void LsrPair(Register dst_low, Register dst_high, Register src_low, |
| 577 Register src_high, Register scratch, Register shift); | 579 Register src_high, Register scratch, Register shift); |
| 578 void LsrPair(Register dst_low, Register dst_high, Register src_low, | 580 void LsrPair(Register dst_low, Register dst_high, Register src_low, |
| 579 Register src_high, uint32_t shift); | 581 Register src_high, uint32_t shift); |
| 580 void AsrPair(Register dst_low, Register dst_high, Register src_low, | 582 void AsrPair(Register dst_low, Register dst_high, Register src_low, |
| (...skipping 970 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1551 inline MemOperand NativeContextMemOperand() { | 1553 inline MemOperand NativeContextMemOperand() { |
| 1552 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); | 1554 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); |
| 1553 } | 1555 } |
| 1554 | 1556 |
| 1555 #define ACCESS_MASM(masm) masm-> | 1557 #define ACCESS_MASM(masm) masm-> |
| 1556 | 1558 |
| 1557 } // namespace internal | 1559 } // namespace internal |
| 1558 } // namespace v8 | 1560 } // namespace v8 |
| 1559 | 1561 |
| 1560 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1562 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
| OLD | NEW |