| 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 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 567 void VmovExtended(const MemOperand& dst, int src_code, Register scratch); | 567 void VmovExtended(const MemOperand& dst, int src_code, Register scratch); |
| 568 | 568 |
| 569 void ExtractLane(Register dst, QwNeonRegister src, NeonDataType dt, int lane); | 569 void ExtractLane(Register dst, QwNeonRegister src, NeonDataType dt, int lane); |
| 570 void ExtractLane(Register dst, DwVfpRegister src, NeonDataType dt, int lane); | 570 void ExtractLane(Register dst, DwVfpRegister src, NeonDataType dt, int lane); |
| 571 void ExtractLane(SwVfpRegister dst, QwNeonRegister src, Register scratch, | 571 void ExtractLane(SwVfpRegister dst, QwNeonRegister src, Register scratch, |
| 572 int lane); | 572 int lane); |
| 573 void ReplaceLane(QwNeonRegister dst, QwNeonRegister src, Register src_lane, | 573 void ReplaceLane(QwNeonRegister dst, QwNeonRegister src, Register src_lane, |
| 574 NeonDataType dt, int lane); | 574 NeonDataType dt, int lane); |
| 575 void ReplaceLane(QwNeonRegister dst, QwNeonRegister src, | 575 void ReplaceLane(QwNeonRegister dst, QwNeonRegister src, |
| 576 SwVfpRegister src_lane, Register scratch, int lane); | 576 SwVfpRegister src_lane, Register scratch, int lane); |
| 577 void Swizzle(QwNeonRegister dst, QwNeonRegister src, Register scratch, | |
| 578 NeonSize size, uint32_t lanes); | |
| 579 | 577 |
| 580 void LslPair(Register dst_low, Register dst_high, Register src_low, | 578 void LslPair(Register dst_low, Register dst_high, Register src_low, |
| 581 Register src_high, Register scratch, Register shift); | 579 Register src_high, Register scratch, Register shift); |
| 582 void LslPair(Register dst_low, Register dst_high, Register src_low, | 580 void LslPair(Register dst_low, Register dst_high, Register src_low, |
| 583 Register src_high, uint32_t shift); | 581 Register src_high, uint32_t shift); |
| 584 void LsrPair(Register dst_low, Register dst_high, Register src_low, | 582 void LsrPair(Register dst_low, Register dst_high, Register src_low, |
| 585 Register src_high, Register scratch, Register shift); | 583 Register src_high, Register scratch, Register shift); |
| 586 void LsrPair(Register dst_low, Register dst_high, Register src_low, | 584 void LsrPair(Register dst_low, Register dst_high, Register src_low, |
| 587 Register src_high, uint32_t shift); | 585 Register src_high, uint32_t shift); |
| 588 void AsrPair(Register dst_low, Register dst_high, Register src_low, | 586 void AsrPair(Register dst_low, Register dst_high, Register src_low, |
| (...skipping 856 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1445 inline MemOperand NativeContextMemOperand() { | 1443 inline MemOperand NativeContextMemOperand() { |
| 1446 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); | 1444 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); |
| 1447 } | 1445 } |
| 1448 | 1446 |
| 1449 #define ACCESS_MASM(masm) masm-> | 1447 #define ACCESS_MASM(masm) masm-> |
| 1450 | 1448 |
| 1451 } // namespace internal | 1449 } // namespace internal |
| 1452 } // namespace v8 | 1450 } // namespace v8 |
| 1453 | 1451 |
| 1454 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1452 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
| OLD | NEW |