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 are | 5 // modification, are permitted provided that the following conditions are |
6 // met: | 6 // 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 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1079 bc1f(shifted_branch_offset(L), cc); | 1079 bc1f(shifted_branch_offset(L), cc); |
1080 } | 1080 } |
1081 void bc1t(int16_t offset, uint16_t cc = 0); | 1081 void bc1t(int16_t offset, uint16_t cc = 0); |
1082 inline void bc1t(Label* L, uint16_t cc = 0) { | 1082 inline void bc1t(Label* L, uint16_t cc = 0) { |
1083 bc1t(shifted_branch_offset(L), cc); | 1083 bc1t(shifted_branch_offset(L), cc); |
1084 } | 1084 } |
1085 void fcmp(FPURegister src1, const double src2, FPUCondition cond); | 1085 void fcmp(FPURegister src1, const double src2, FPUCondition cond); |
1086 | 1086 |
1087 // MSA instructions | 1087 // MSA instructions |
1088 void bz_v(MSARegister wt, int16_t offset); | 1088 void bz_v(MSARegister wt, int16_t offset); |
| 1089 inline void bz_v(MSARegister wt, Label* L) { |
| 1090 bz_v(wt, shifted_branch_offset(L)); |
| 1091 } |
1089 void bz_b(MSARegister wt, int16_t offset); | 1092 void bz_b(MSARegister wt, int16_t offset); |
| 1093 inline void bz_b(MSARegister wt, Label* L) { |
| 1094 bz_b(wt, shifted_branch_offset(L)); |
| 1095 } |
1090 void bz_h(MSARegister wt, int16_t offset); | 1096 void bz_h(MSARegister wt, int16_t offset); |
| 1097 inline void bz_h(MSARegister wt, Label* L) { |
| 1098 bz_h(wt, shifted_branch_offset(L)); |
| 1099 } |
1091 void bz_w(MSARegister wt, int16_t offset); | 1100 void bz_w(MSARegister wt, int16_t offset); |
| 1101 inline void bz_w(MSARegister wt, Label* L) { |
| 1102 bz_w(wt, shifted_branch_offset(L)); |
| 1103 } |
1092 void bz_d(MSARegister wt, int16_t offset); | 1104 void bz_d(MSARegister wt, int16_t offset); |
| 1105 inline void bz_d(MSARegister wt, Label* L) { |
| 1106 bz_d(wt, shifted_branch_offset(L)); |
| 1107 } |
1093 void bnz_v(MSARegister wt, int16_t offset); | 1108 void bnz_v(MSARegister wt, int16_t offset); |
| 1109 inline void bnz_v(MSARegister wt, Label* L) { |
| 1110 bnz_v(wt, shifted_branch_offset(L)); |
| 1111 } |
1094 void bnz_b(MSARegister wt, int16_t offset); | 1112 void bnz_b(MSARegister wt, int16_t offset); |
| 1113 inline void bnz_b(MSARegister wt, Label* L) { |
| 1114 bnz_b(wt, shifted_branch_offset(L)); |
| 1115 } |
1095 void bnz_h(MSARegister wt, int16_t offset); | 1116 void bnz_h(MSARegister wt, int16_t offset); |
| 1117 inline void bnz_h(MSARegister wt, Label* L) { |
| 1118 bnz_h(wt, shifted_branch_offset(L)); |
| 1119 } |
1096 void bnz_w(MSARegister wt, int16_t offset); | 1120 void bnz_w(MSARegister wt, int16_t offset); |
| 1121 inline void bnz_w(MSARegister wt, Label* L) { |
| 1122 bnz_w(wt, shifted_branch_offset(L)); |
| 1123 } |
1097 void bnz_d(MSARegister wt, int16_t offset); | 1124 void bnz_d(MSARegister wt, int16_t offset); |
| 1125 inline void bnz_d(MSARegister wt, Label* L) { |
| 1126 bnz_d(wt, shifted_branch_offset(L)); |
| 1127 } |
1098 | 1128 |
1099 void ld_b(MSARegister wd, const MemOperand& rs); | 1129 void ld_b(MSARegister wd, const MemOperand& rs); |
1100 void ld_h(MSARegister wd, const MemOperand& rs); | 1130 void ld_h(MSARegister wd, const MemOperand& rs); |
1101 void ld_w(MSARegister wd, const MemOperand& rs); | 1131 void ld_w(MSARegister wd, const MemOperand& rs); |
1102 void ld_d(MSARegister wd, const MemOperand& rs); | 1132 void ld_d(MSARegister wd, const MemOperand& rs); |
1103 void st_b(MSARegister wd, const MemOperand& rs); | 1133 void st_b(MSARegister wd, const MemOperand& rs); |
1104 void st_h(MSARegister wd, const MemOperand& rs); | 1134 void st_h(MSARegister wd, const MemOperand& rs); |
1105 void st_w(MSARegister wd, const MemOperand& rs); | 1135 void st_w(MSARegister wd, const MemOperand& rs); |
1106 void st_d(MSARegister wd, const MemOperand& rs); | 1136 void st_d(MSARegister wd, const MemOperand& rs); |
1107 | 1137 |
(...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1742 static void instr_at_put(byte* pc, Instr instr) { | 1772 static void instr_at_put(byte* pc, Instr instr) { |
1743 *reinterpret_cast<Instr*>(pc) = instr; | 1773 *reinterpret_cast<Instr*>(pc) = instr; |
1744 } | 1774 } |
1745 Instr instr_at(int pos) { return *reinterpret_cast<Instr*>(buffer_ + pos); } | 1775 Instr instr_at(int pos) { return *reinterpret_cast<Instr*>(buffer_ + pos); } |
1746 void instr_at_put(int pos, Instr instr) { | 1776 void instr_at_put(int pos, Instr instr) { |
1747 *reinterpret_cast<Instr*>(buffer_ + pos) = instr; | 1777 *reinterpret_cast<Instr*>(buffer_ + pos) = instr; |
1748 } | 1778 } |
1749 | 1779 |
1750 // Check if an instruction is a branch of some kind. | 1780 // Check if an instruction is a branch of some kind. |
1751 static bool IsBranch(Instr instr); | 1781 static bool IsBranch(Instr instr); |
| 1782 static bool IsMsaBranch(Instr instr); |
1752 static bool IsBc(Instr instr); | 1783 static bool IsBc(Instr instr); |
1753 static bool IsBzc(Instr instr); | 1784 static bool IsBzc(Instr instr); |
1754 static bool IsBeq(Instr instr); | 1785 static bool IsBeq(Instr instr); |
1755 static bool IsBne(Instr instr); | 1786 static bool IsBne(Instr instr); |
1756 static bool IsBeqzc(Instr instr); | 1787 static bool IsBeqzc(Instr instr); |
1757 static bool IsBnezc(Instr instr); | 1788 static bool IsBnezc(Instr instr); |
1758 static bool IsBeqc(Instr instr); | 1789 static bool IsBeqc(Instr instr); |
1759 static bool IsBnec(Instr instr); | 1790 static bool IsBnec(Instr instr); |
1760 static bool IsJicOrJialc(Instr instr); | 1791 static bool IsJicOrJialc(Instr instr); |
1761 | 1792 |
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2199 public: | 2230 public: |
2200 explicit EnsureSpace(Assembler* assembler) { | 2231 explicit EnsureSpace(Assembler* assembler) { |
2201 assembler->CheckBuffer(); | 2232 assembler->CheckBuffer(); |
2202 } | 2233 } |
2203 }; | 2234 }; |
2204 | 2235 |
2205 } // namespace internal | 2236 } // namespace internal |
2206 } // namespace v8 | 2237 } // namespace v8 |
2207 | 2238 |
2208 #endif // V8_ARM_ASSEMBLER_MIPS_H_ | 2239 #endif // V8_ARM_ASSEMBLER_MIPS_H_ |
OLD | NEW |