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

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

Issue 2629223005: [ARM] Add Neon shift instructions vshl, vshr. (Closed)
Patch Set: Fix DCHECK in ArithmeticShiftRight. 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 1369 matching lines...) Expand 10 before | Expand all | Expand 10 after
1380 void vmul(QwNeonRegister dst, QwNeonRegister src1, 1380 void vmul(QwNeonRegister dst, QwNeonRegister src1,
1381 QwNeonRegister src2); 1381 QwNeonRegister src2);
1382 void vmul(NeonSize size, QwNeonRegister dst, QwNeonRegister src1, 1382 void vmul(NeonSize size, QwNeonRegister dst, QwNeonRegister src1,
1383 QwNeonRegister src2); 1383 QwNeonRegister src2);
1384 void vmin(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); 1384 void vmin(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2);
1385 void vmin(NeonDataType dt, QwNeonRegister dst, 1385 void vmin(NeonDataType dt, QwNeonRegister dst,
1386 QwNeonRegister src1, QwNeonRegister src2); 1386 QwNeonRegister src1, QwNeonRegister src2);
1387 void vmax(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); 1387 void vmax(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2);
1388 void vmax(NeonDataType dt, QwNeonRegister dst, 1388 void vmax(NeonDataType dt, QwNeonRegister dst,
1389 QwNeonRegister src1, QwNeonRegister src2); 1389 QwNeonRegister src1, QwNeonRegister src2);
1390 void vshl(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src, int shift);
1391 void vshr(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src, int shift);
1390 // vrecpe and vrsqrte only support floating point lanes. 1392 // vrecpe and vrsqrte only support floating point lanes.
1391 void vrecpe(QwNeonRegister dst, QwNeonRegister src); 1393 void vrecpe(QwNeonRegister dst, QwNeonRegister src);
1392 void vrsqrte(QwNeonRegister dst, QwNeonRegister src); 1394 void vrsqrte(QwNeonRegister dst, QwNeonRegister src);
1393 void vrecps(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); 1395 void vrecps(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2);
1394 void vrsqrts(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); 1396 void vrsqrts(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2);
1395 void vtst(NeonSize size, QwNeonRegister dst, QwNeonRegister src1, 1397 void vtst(NeonSize size, QwNeonRegister dst, QwNeonRegister src1,
1396 QwNeonRegister src2); 1398 QwNeonRegister src2);
1397 void vceq(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2); 1399 void vceq(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2);
1398 void vceq(NeonSize size, QwNeonRegister dst, QwNeonRegister src1, 1400 void vceq(NeonSize size, QwNeonRegister dst, QwNeonRegister src1,
1399 QwNeonRegister src2); 1401 QwNeonRegister src2);
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
1814 explicit EnsureSpace(Assembler* assembler) { 1816 explicit EnsureSpace(Assembler* assembler) {
1815 assembler->CheckBuffer(); 1817 assembler->CheckBuffer();
1816 } 1818 }
1817 }; 1819 };
1818 1820
1819 1821
1820 } // namespace internal 1822 } // namespace internal
1821 } // namespace v8 1823 } // namespace v8
1822 1824
1823 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1825 #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