| OLD | NEW |
| 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
| 2 // All Rights Reserved. | 2 // All Rights Reserved. |
| 3 // | 3 // |
| 4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
| 5 // modification, are permitted provided that the following conditions | 5 // modification, are permitted provided that the following conditions |
| 6 // are met: | 6 // are met: |
| 7 // | 7 // |
| 8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
| 9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
| 10 // | 10 // |
| (...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 971 Condition cond = al); | 971 Condition cond = al); |
| 972 | 972 |
| 973 void udiv(Register dst, Register src1, Register src2, Condition cond = al); | 973 void udiv(Register dst, Register src1, Register src2, Condition cond = al); |
| 974 | 974 |
| 975 void mul(Register dst, Register src1, Register src2, | 975 void mul(Register dst, Register src1, Register src2, |
| 976 SBit s = LeaveCC, Condition cond = al); | 976 SBit s = LeaveCC, Condition cond = al); |
| 977 | 977 |
| 978 void smmla(Register dst, Register src1, Register src2, Register srcA, | 978 void smmla(Register dst, Register src1, Register src2, Register srcA, |
| 979 Condition cond = al); | 979 Condition cond = al); |
| 980 | 980 |
| 981 void smmls(Register dst, Register src1, Register src2, Register srcA, | |
| 982 Condition cond = al); | |
| 983 | |
| 984 void smmul(Register dst, Register src1, Register src2, Condition cond = al); | 981 void smmul(Register dst, Register src1, Register src2, Condition cond = al); |
| 985 | 982 |
| 986 void smlal(Register dstL, Register dstH, Register src1, Register src2, | 983 void smlal(Register dstL, Register dstH, Register src1, Register src2, |
| 987 SBit s = LeaveCC, Condition cond = al); | 984 SBit s = LeaveCC, Condition cond = al); |
| 988 | 985 |
| 989 void smull(Register dstL, Register dstH, Register src1, Register src2, | 986 void smull(Register dstL, Register dstH, Register src1, Register src2, |
| 990 SBit s = LeaveCC, Condition cond = al); | 987 SBit s = LeaveCC, Condition cond = al); |
| 991 | 988 |
| 992 void umlal(Register dstL, Register dstH, Register src1, Register src2, | 989 void umlal(Register dstL, Register dstH, Register src1, Register src2, |
| 993 SBit s = LeaveCC, Condition cond = al); | 990 SBit s = LeaveCC, Condition cond = al); |
| (...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1662 public: | 1659 public: |
| 1663 explicit EnsureSpace(Assembler* assembler) { | 1660 explicit EnsureSpace(Assembler* assembler) { |
| 1664 assembler->CheckBuffer(); | 1661 assembler->CheckBuffer(); |
| 1665 } | 1662 } |
| 1666 }; | 1663 }; |
| 1667 | 1664 |
| 1668 | 1665 |
| 1669 } } // namespace v8::internal | 1666 } } // namespace v8::internal |
| 1670 | 1667 |
| 1671 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1668 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
| OLD | NEW |