| 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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 | 538 |
| 539 void Vmov(const DwVfpRegister dst, | 539 void Vmov(const DwVfpRegister dst, |
| 540 const double imm, | 540 const double imm, |
| 541 const Register scratch = no_reg); | 541 const Register scratch = no_reg); |
| 542 | 542 |
| 543 void VmovHigh(Register dst, DwVfpRegister src); | 543 void VmovHigh(Register dst, DwVfpRegister src); |
| 544 void VmovHigh(DwVfpRegister dst, Register src); | 544 void VmovHigh(DwVfpRegister dst, Register src); |
| 545 void VmovLow(Register dst, DwVfpRegister src); | 545 void VmovLow(Register dst, DwVfpRegister src); |
| 546 void VmovLow(DwVfpRegister dst, Register src); | 546 void VmovLow(DwVfpRegister dst, Register src); |
| 547 | 547 |
| 548 void PairLsl(Register dst_low, Register dst_high, Register src_low, |
| 549 Register src_high, Register scratch, Register shift); |
| 550 void PairLsl(Register dst_low, Register dst_high, Register src_low, |
| 551 Register src_high, Register scratch, uint32_t shift); |
| 552 |
| 548 // Loads the number from object into dst register. | 553 // Loads the number from object into dst register. |
| 549 // If |object| is neither smi nor heap number, |not_number| is jumped to | 554 // If |object| is neither smi nor heap number, |not_number| is jumped to |
| 550 // with |object| still intact. | 555 // with |object| still intact. |
| 551 void LoadNumber(Register object, | 556 void LoadNumber(Register object, |
| 552 LowDwVfpRegister dst, | 557 LowDwVfpRegister dst, |
| 553 Register heap_number_map, | 558 Register heap_number_map, |
| 554 Register scratch, | 559 Register scratch, |
| 555 Label* not_number); | 560 Label* not_number); |
| 556 | 561 |
| 557 // Loads the number from object into double_dst in the double format. | 562 // Loads the number from object into double_dst in the double format. |
| (...skipping 989 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1547 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1552 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
| 1548 #else | 1553 #else |
| 1549 #define ACCESS_MASM(masm) masm-> | 1554 #define ACCESS_MASM(masm) masm-> |
| 1550 #endif | 1555 #endif |
| 1551 | 1556 |
| 1552 | 1557 |
| 1553 } // namespace internal | 1558 } // namespace internal |
| 1554 } // namespace v8 | 1559 } // namespace v8 |
| 1555 | 1560 |
| 1556 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1561 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
| OLD | NEW |