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_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 5 #ifndef V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 6 #define V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
7 | 7 |
8 #include "src/assembler.h" | 8 #include "src/assembler.h" |
9 #include "src/globals.h" | 9 #include "src/globals.h" |
10 #include "src/mips/assembler-mips.h" | 10 #include "src/mips/assembler-mips.h" |
(...skipping 1169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1180 // untagged value afterwards. | 1180 // untagged value afterwards. |
1181 void SmiToDoubleFPURegister(Register smi, | 1181 void SmiToDoubleFPURegister(Register smi, |
1182 FPURegister value, | 1182 FPURegister value, |
1183 Register scratch1); | 1183 Register scratch1); |
1184 | 1184 |
1185 // ------------------------------------------------------------------------- | 1185 // ------------------------------------------------------------------------- |
1186 // Overflow handling functions. | 1186 // Overflow handling functions. |
1187 // Usage: first call the appropriate arithmetic function, then call one of the | 1187 // Usage: first call the appropriate arithmetic function, then call one of the |
1188 // jump functions with the overflow_dst register as the second parameter. | 1188 // jump functions with the overflow_dst register as the second parameter. |
1189 | 1189 |
1190 void AdduAndCheckForOverflow(Register dst, | 1190 void AdduAndCheckForOverflow(Register dst, Register left, Register right, |
1191 Register left, | 1191 Label* overflow_label, Label* no_overflow_label, |
1192 Register right, | 1192 Register scratch = at, |
1193 Register overflow_dst, | 1193 BranchDelaySlot bd = PROTECT); |
paul.l...
2015/11/13 02:16:20
I don't see any existing usages of BranchDelaySlot
balazs.kilvady
2015/11/20 19:28:08
Done.
| |
1194 Register scratch = at); | |
1195 | 1194 |
1196 void AdduAndCheckForOverflow(Register dst, Register left, | 1195 void AdduAndCheckForOverflow(Register dst, Register left, |
1197 const Operand& right, Register overflow_dst, | 1196 const Operand& right, Label* overflow_label, |
1198 Register scratch = at); | 1197 Label* no_overflow_label, Register scratch = at, |
1198 BranchDelaySlot bd = PROTECT); | |
1199 | |
1199 | 1200 |
1200 void SubuAndCheckForOverflow(Register dst, | 1201 void SubuAndCheckForOverflow(Register dst, |
paul.l...
2015/11/13 02:16:20
I'm assuming that you will refactor the SubuAndChe
balazs.kilvady
2015/11/20 19:28:08
I thought we could negate one of the arguments of
| |
1201 Register left, | 1202 Register left, |
1202 Register right, | 1203 Register right, |
1203 Register overflow_dst, | 1204 Register overflow_dst, |
1204 Register scratch = at); | 1205 Register scratch = at); |
1205 | 1206 |
1206 void SubuAndCheckForOverflow(Register dst, Register left, | 1207 void SubuAndCheckForOverflow(Register dst, Register left, |
1207 const Operand& right, Register overflow_dst, | 1208 const Operand& right, Register overflow_dst, |
1208 Register scratch = at); | 1209 Register scratch = at); |
1209 | 1210 |
1210 void BranchOnOverflow(Label* label, | 1211 void BranchOnOverflow(Label* label, |
paul.l...
2015/11/13 02:16:20
Once you refactor SubuAnd...(), please remove all
| |
1211 Register overflow_check, | 1212 Register overflow_check, |
1212 BranchDelaySlot bd = PROTECT) { | 1213 BranchDelaySlot bd = PROTECT) { |
1213 Branch(label, lt, overflow_check, Operand(zero_reg), bd); | 1214 Branch(label, lt, overflow_check, Operand(zero_reg), bd); |
1214 } | 1215 } |
1215 | 1216 |
1216 void BranchOnNoOverflow(Label* label, | 1217 void BranchOnNoOverflow(Label* label, |
1217 Register overflow_check, | 1218 Register overflow_check, |
1218 BranchDelaySlot bd = PROTECT) { | 1219 BranchDelaySlot bd = PROTECT) { |
1219 Branch(label, ge, overflow_check, Operand(zero_reg), bd); | 1220 Branch(label, ge, overflow_check, Operand(zero_reg), bd); |
1220 } | 1221 } |
1221 | 1222 |
1222 void RetOnOverflow(Register overflow_check, BranchDelaySlot bd = PROTECT) { | 1223 void RetOnOverflow(Register overflow_check, BranchDelaySlot bd = PROTECT) { |
paul.l...
2015/11/13 02:16:20
Looks like we have no users of these RetOn... ops.
balazs.kilvady
2015/11/20 19:28:08
Done.
| |
1223 Ret(lt, overflow_check, Operand(zero_reg), bd); | 1224 Ret(lt, overflow_check, Operand(zero_reg), bd); |
1224 } | 1225 } |
1225 | 1226 |
1226 void RetOnNoOverflow(Register overflow_check, BranchDelaySlot bd = PROTECT) { | 1227 void RetOnNoOverflow(Register overflow_check, BranchDelaySlot bd = PROTECT) { |
1227 Ret(ge, overflow_check, Operand(zero_reg), bd); | 1228 Ret(ge, overflow_check, Operand(zero_reg), bd); |
1228 } | 1229 } |
1229 | 1230 |
1230 // ------------------------------------------------------------------------- | 1231 // ------------------------------------------------------------------------- |
1231 // Runtime calls. | 1232 // Runtime calls. |
1232 | 1233 |
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1762 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1763 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
1763 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1764 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
1764 #else | 1765 #else |
1765 #define ACCESS_MASM(masm) masm-> | 1766 #define ACCESS_MASM(masm) masm-> |
1766 #endif | 1767 #endif |
1767 | 1768 |
1768 } // namespace internal | 1769 } // namespace internal |
1769 } // namespace v8 | 1770 } // namespace v8 |
1770 | 1771 |
1771 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 1772 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
OLD | NEW |