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 535 matching lines...) Loading... |
546 | 546 |
547 void VmovHigh(Register dst, DwVfpRegister src); | 547 void VmovHigh(Register dst, DwVfpRegister src); |
548 void VmovHigh(DwVfpRegister dst, Register src); | 548 void VmovHigh(DwVfpRegister dst, Register src); |
549 void VmovLow(Register dst, DwVfpRegister src); | 549 void VmovLow(Register dst, DwVfpRegister src); |
550 void VmovLow(DwVfpRegister dst, Register src); | 550 void VmovLow(DwVfpRegister dst, Register src); |
551 | 551 |
552 void LslPair(Register dst_low, Register dst_high, Register src_low, | 552 void LslPair(Register dst_low, Register dst_high, Register src_low, |
553 Register src_high, Register scratch, Register shift); | 553 Register src_high, Register scratch, Register shift); |
554 void LslPair(Register dst_low, Register dst_high, Register src_low, | 554 void LslPair(Register dst_low, Register dst_high, Register src_low, |
555 Register src_high, uint32_t shift); | 555 Register src_high, uint32_t shift); |
| 556 void LsrPair(Register dst_low, Register dst_high, Register src_low, |
| 557 Register src_high, Register scratch, Register shift); |
| 558 void LsrPair(Register dst_low, Register dst_high, Register src_low, |
| 559 Register src_high, uint32_t shift); |
| 560 void AsrPair(Register dst_low, Register dst_high, Register src_low, |
| 561 Register src_high, Register scratch, Register shift); |
| 562 void AsrPair(Register dst_low, Register dst_high, Register src_low, |
| 563 Register src_high, uint32_t shift); |
556 | 564 |
557 // Loads the number from object into dst register. | 565 // Loads the number from object into dst register. |
558 // If |object| is neither smi nor heap number, |not_number| is jumped to | 566 // If |object| is neither smi nor heap number, |not_number| is jumped to |
559 // with |object| still intact. | 567 // with |object| still intact. |
560 void LoadNumber(Register object, | 568 void LoadNumber(Register object, |
561 LowDwVfpRegister dst, | 569 LowDwVfpRegister dst, |
562 Register heap_number_map, | 570 Register heap_number_map, |
563 Register scratch, | 571 Register scratch, |
564 Label* not_number); | 572 Label* not_number); |
565 | 573 |
(...skipping 999 matching lines...) Loading... |
1565 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1573 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
1566 #else | 1574 #else |
1567 #define ACCESS_MASM(masm) masm-> | 1575 #define ACCESS_MASM(masm) masm-> |
1568 #endif | 1576 #endif |
1569 | 1577 |
1570 | 1578 |
1571 } // namespace internal | 1579 } // namespace internal |
1572 } // namespace v8 | 1580 } // namespace v8 |
1573 | 1581 |
1574 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1582 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
OLD | NEW |