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 1285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1296 void vrintm(const SwVfpRegister dst, const SwVfpRegister src); | 1296 void vrintm(const SwVfpRegister dst, const SwVfpRegister src); |
1297 void vrintm(const DwVfpRegister dst, const DwVfpRegister src); | 1297 void vrintm(const DwVfpRegister dst, const DwVfpRegister src); |
1298 void vrintp(const SwVfpRegister dst, const SwVfpRegister src); | 1298 void vrintp(const SwVfpRegister dst, const SwVfpRegister src); |
1299 void vrintp(const DwVfpRegister dst, const DwVfpRegister src); | 1299 void vrintp(const DwVfpRegister dst, const DwVfpRegister src); |
1300 void vrintz(const SwVfpRegister dst, const SwVfpRegister src, | 1300 void vrintz(const SwVfpRegister dst, const SwVfpRegister src, |
1301 const Condition cond = al); | 1301 const Condition cond = al); |
1302 void vrintz(const DwVfpRegister dst, const DwVfpRegister src, | 1302 void vrintz(const DwVfpRegister dst, const DwVfpRegister src, |
1303 const Condition cond = al); | 1303 const Condition cond = al); |
1304 | 1304 |
1305 // Support for NEON. | 1305 // Support for NEON. |
| 1306 |
1306 // All these APIs support D0 to D31 and Q0 to Q15. | 1307 // All these APIs support D0 to D31 and Q0 to Q15. |
1307 | |
1308 void vld1(NeonSize size, | 1308 void vld1(NeonSize size, |
1309 const NeonListOperand& dst, | 1309 const NeonListOperand& dst, |
1310 const NeonMemOperand& src); | 1310 const NeonMemOperand& src); |
1311 void vst1(NeonSize size, | 1311 void vst1(NeonSize size, |
1312 const NeonListOperand& src, | 1312 const NeonListOperand& src, |
1313 const NeonMemOperand& dst); | 1313 const NeonMemOperand& dst); |
1314 void vmovl(NeonDataType dt, QwNeonRegister dst, DwVfpRegister src); | 1314 void vmovl(NeonDataType dt, QwNeonRegister dst, DwVfpRegister src); |
1315 | 1315 |
| 1316 // Currently, vswp supports only D0 to D31. |
| 1317 void vswp(DwVfpRegister srcdst0, DwVfpRegister srcdst1); |
| 1318 |
1316 // Pseudo instructions | 1319 // Pseudo instructions |
1317 | 1320 |
1318 // Different nop operations are used by the code generator to detect certain | 1321 // Different nop operations are used by the code generator to detect certain |
1319 // states of the generated code. | 1322 // states of the generated code. |
1320 enum NopMarkerTypes { | 1323 enum NopMarkerTypes { |
1321 NON_MARKING_NOP = 0, | 1324 NON_MARKING_NOP = 0, |
1322 DEBUG_BREAK_NOP, | 1325 DEBUG_BREAK_NOP, |
1323 // IC markers. | 1326 // IC markers. |
1324 PROPERTY_ACCESS_INLINED, | 1327 PROPERTY_ACCESS_INLINED, |
1325 PROPERTY_ACCESS_INLINED_CONTEXT, | 1328 PROPERTY_ACCESS_INLINED_CONTEXT, |
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1699 explicit EnsureSpace(Assembler* assembler) { | 1702 explicit EnsureSpace(Assembler* assembler) { |
1700 assembler->CheckBuffer(); | 1703 assembler->CheckBuffer(); |
1701 } | 1704 } |
1702 }; | 1705 }; |
1703 | 1706 |
1704 | 1707 |
1705 } // namespace internal | 1708 } // namespace internal |
1706 } // namespace v8 | 1709 } // namespace v8 |
1707 | 1710 |
1708 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1711 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
OLD | NEW |