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

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

Issue 2600153002: [ARM] Add vrecpe, vrecps, vrsqrte, vrsqrts instructions to assembler. (Closed)
Patch Set: Fix FP exceptions, NaN behavior. 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') | src/arm/assembler-arm.cc » ('J')
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 void vrecpe(const QwNeonRegister dst, const QwNeonRegister src);
1384 void vrecps(const QwNeonRegister dst, const QwNeonRegister src1,
1385 const QwNeonRegister src2);
1386 void vrsqrte(const QwNeonRegister dst, const QwNeonRegister src);
1387 void vrsqrts(const QwNeonRegister dst, const QwNeonRegister src1,
1388 const QwNeonRegister src2);
1383 void vtst(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, 1389 void vtst(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1,
1384 const QwNeonRegister src2); 1390 const QwNeonRegister src2);
1385 void vceq(const QwNeonRegister dst, const QwNeonRegister src1, 1391 void vceq(const QwNeonRegister dst, const QwNeonRegister src1,
1386 const QwNeonRegister src2); 1392 const QwNeonRegister src2);
1387 void vceq(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, 1393 void vceq(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1,
1388 const QwNeonRegister src2); 1394 const QwNeonRegister src2);
1389 void vbsl(const QwNeonRegister dst, const QwNeonRegister src1, 1395 void vbsl(const QwNeonRegister dst, const QwNeonRegister src1,
1390 const QwNeonRegister src2); 1396 const QwNeonRegister src2);
1391 void vext(const QwNeonRegister dst, const QwNeonRegister src1, 1397 void vext(const QwNeonRegister dst, const QwNeonRegister src1,
1392 const QwNeonRegister src2, int bytes); 1398 const QwNeonRegister src2, int bytes);
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
1799 explicit EnsureSpace(Assembler* assembler) { 1805 explicit EnsureSpace(Assembler* assembler) {
1800 assembler->CheckBuffer(); 1806 assembler->CheckBuffer();
1801 } 1807 }
1802 }; 1808 };
1803 1809
1804 1810
1805 } // namespace internal 1811 } // namespace internal
1806 } // namespace v8 1812 } // namespace v8
1807 1813
1808 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1814 #endif // V8_ARM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/assembler-arm.cc » ('j') | src/arm/assembler-arm.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698