Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/arm/assembler-arm.h

Issue 2600153002: [ARM] Add vrecpe, vrecps, vrsqrte, vrsqrts instructions to assembler. (Closed)
Patch Set: Add a comment for vrecpe, vrsqrte. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/arm/assembler-arm.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1362 matching lines...) Expand 10 before | Expand all | Expand 10 after
1373 void vadd(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, 1373 void vadd(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1,
1374 const QwNeonRegister src2); 1374 const QwNeonRegister src2);
1375 void vsub(const QwNeonRegister dst, const QwNeonRegister src1, 1375 void vsub(const QwNeonRegister dst, const QwNeonRegister src1,
1376 const QwNeonRegister src2); 1376 const QwNeonRegister src2);
1377 void vsub(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, 1377 void vsub(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1,
1378 const QwNeonRegister src2); 1378 const QwNeonRegister src2);
1379 void vmul(const QwNeonRegister dst, const QwNeonRegister src1, 1379 void vmul(const QwNeonRegister dst, const QwNeonRegister src1,
1380 const QwNeonRegister src2); 1380 const QwNeonRegister src2);
1381 void vmul(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, 1381 void vmul(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1,
1382 const QwNeonRegister src2); 1382 const QwNeonRegister src2);
1383 // vrecpe and vrsqrte only support floating point lanes.
1384 void vrecpe(const QwNeonRegister dst, const QwNeonRegister src);
1385 void vrsqrte(const QwNeonRegister dst, const QwNeonRegister src);
1386 void vrecps(const QwNeonRegister dst, const QwNeonRegister src1,
1387 const QwNeonRegister src2);
1388 void vrsqrts(const QwNeonRegister dst, const QwNeonRegister src1,
1389 const QwNeonRegister src2);
1383 void vtst(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, 1390 void vtst(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1,
1384 const QwNeonRegister src2); 1391 const QwNeonRegister src2);
1385 void vceq(const QwNeonRegister dst, const QwNeonRegister src1, 1392 void vceq(const QwNeonRegister dst, const QwNeonRegister src1,
1386 const QwNeonRegister src2); 1393 const QwNeonRegister src2);
1387 void vceq(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, 1394 void vceq(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1,
1388 const QwNeonRegister src2); 1395 const QwNeonRegister src2);
1389 void vbsl(const QwNeonRegister dst, const QwNeonRegister src1, 1396 void vbsl(const QwNeonRegister dst, const QwNeonRegister src1,
1390 const QwNeonRegister src2); 1397 const QwNeonRegister src2);
1391 void vext(const QwNeonRegister dst, const QwNeonRegister src1, 1398 void vext(const QwNeonRegister dst, const QwNeonRegister src1,
1392 const QwNeonRegister src2, int bytes); 1399 const QwNeonRegister src2, int bytes);
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
1799 explicit EnsureSpace(Assembler* assembler) { 1806 explicit EnsureSpace(Assembler* assembler) {
1800 assembler->CheckBuffer(); 1807 assembler->CheckBuffer();
1801 } 1808 }
1802 }; 1809 };
1803 1810
1804 1811
1805 } // namespace internal 1812 } // namespace internal
1806 } // namespace v8 1813 } // namespace v8
1807 1814
1808 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1815 #endif // V8_ARM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698