| 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 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 void VmovExtended(const MemOperand& dst, int src_code, Register scratch); | 564 void VmovExtended(const MemOperand& dst, int src_code, Register scratch); |
| 565 | 565 |
| 566 void ExtractLane(Register dst, QwNeonRegister src, NeonDataType dt, int lane); | 566 void ExtractLane(Register dst, QwNeonRegister src, NeonDataType dt, int lane); |
| 567 void ExtractLane(Register dst, DwVfpRegister src, NeonDataType dt, int lane); | 567 void ExtractLane(Register dst, DwVfpRegister src, NeonDataType dt, int lane); |
| 568 void ExtractLane(SwVfpRegister dst, QwNeonRegister src, Register scratch, | 568 void ExtractLane(SwVfpRegister dst, QwNeonRegister src, Register scratch, |
| 569 int lane); | 569 int lane); |
| 570 void ReplaceLane(QwNeonRegister dst, QwNeonRegister src, Register src_lane, | 570 void ReplaceLane(QwNeonRegister dst, QwNeonRegister src, Register src_lane, |
| 571 NeonDataType dt, int lane); | 571 NeonDataType dt, int lane); |
| 572 void ReplaceLane(QwNeonRegister dst, QwNeonRegister src, | 572 void ReplaceLane(QwNeonRegister dst, QwNeonRegister src, |
| 573 SwVfpRegister src_lane, Register scratch, int lane); | 573 SwVfpRegister src_lane, Register scratch, int lane); |
| 574 void Swizzle(QwNeonRegister dst, QwNeonRegister src, Register scratch, | |
| 575 NeonSize size, uint32_t lanes); | |
| 576 | 574 |
| 577 void LslPair(Register dst_low, Register dst_high, Register src_low, | 575 void LslPair(Register dst_low, Register dst_high, Register src_low, |
| 578 Register src_high, Register scratch, Register shift); | 576 Register src_high, Register scratch, Register shift); |
| 579 void LslPair(Register dst_low, Register dst_high, Register src_low, | 577 void LslPair(Register dst_low, Register dst_high, Register src_low, |
| 580 Register src_high, uint32_t shift); | 578 Register src_high, uint32_t shift); |
| 581 void LsrPair(Register dst_low, Register dst_high, Register src_low, | 579 void LsrPair(Register dst_low, Register dst_high, Register src_low, |
| 582 Register src_high, Register scratch, Register shift); | 580 Register src_high, Register scratch, Register shift); |
| 583 void LsrPair(Register dst_low, Register dst_high, Register src_low, | 581 void LsrPair(Register dst_low, Register dst_high, Register src_low, |
| 584 Register src_high, uint32_t shift); | 582 Register src_high, uint32_t shift); |
| 585 void AsrPair(Register dst_low, Register dst_high, Register src_low, | 583 void AsrPair(Register dst_low, Register dst_high, Register src_low, |
| (...skipping 851 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1437 inline MemOperand NativeContextMemOperand() { | 1435 inline MemOperand NativeContextMemOperand() { |
| 1438 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); | 1436 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); |
| 1439 } | 1437 } |
| 1440 | 1438 |
| 1441 #define ACCESS_MASM(masm) masm-> | 1439 #define ACCESS_MASM(masm) masm-> |
| 1442 | 1440 |
| 1443 } // namespace internal | 1441 } // namespace internal |
| 1444 } // namespace v8 | 1442 } // namespace v8 |
| 1445 | 1443 |
| 1446 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1444 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
| OLD | NEW |