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

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

Issue 2602293002: [ARM] Add vcge, vcgt instructions to assembler. (Closed)
Patch Set: Rebase. 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 1375 matching lines...) Expand 10 before | Expand all | Expand 10 after
1386 void vrecps(const QwNeonRegister dst, const QwNeonRegister src1, 1386 void vrecps(const QwNeonRegister dst, const QwNeonRegister src1,
1387 const QwNeonRegister src2); 1387 const QwNeonRegister src2);
1388 void vrsqrts(const QwNeonRegister dst, const QwNeonRegister src1, 1388 void vrsqrts(const QwNeonRegister dst, const QwNeonRegister src1,
1389 const QwNeonRegister src2); 1389 const QwNeonRegister src2);
1390 void vtst(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, 1390 void vtst(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1,
1391 const QwNeonRegister src2); 1391 const QwNeonRegister src2);
1392 void vceq(const QwNeonRegister dst, const QwNeonRegister src1, 1392 void vceq(const QwNeonRegister dst, const QwNeonRegister src1,
1393 const QwNeonRegister src2); 1393 const QwNeonRegister src2);
1394 void vceq(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, 1394 void vceq(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1,
1395 const QwNeonRegister src2); 1395 const QwNeonRegister src2);
1396 void vcge(const QwNeonRegister dst, const QwNeonRegister src1,
1397 const QwNeonRegister src2);
1398 void vcge(NeonDataType dt, const QwNeonRegister dst,
1399 const QwNeonRegister src1, const QwNeonRegister src2);
1400 void vcgt(const QwNeonRegister dst, const QwNeonRegister src1,
1401 const QwNeonRegister src2);
1402 void vcgt(NeonDataType dt, const QwNeonRegister dst,
1403 const QwNeonRegister src1, const QwNeonRegister src2);
1396 void vbsl(const QwNeonRegister dst, const QwNeonRegister src1, 1404 void vbsl(const QwNeonRegister dst, const QwNeonRegister src1,
1397 const QwNeonRegister src2); 1405 const QwNeonRegister src2);
1398 void vext(const QwNeonRegister dst, const QwNeonRegister src1, 1406 void vext(const QwNeonRegister dst, const QwNeonRegister src1,
1399 const QwNeonRegister src2, int bytes); 1407 const QwNeonRegister src2, int bytes);
1400 void vzip(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src); 1408 void vzip(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src);
1401 void vrev16(NeonSize size, const QwNeonRegister dst, 1409 void vrev16(NeonSize size, const QwNeonRegister dst,
1402 const QwNeonRegister src); 1410 const QwNeonRegister src);
1403 void vrev32(NeonSize size, const QwNeonRegister dst, 1411 void vrev32(NeonSize size, const QwNeonRegister dst,
1404 const QwNeonRegister src); 1412 const QwNeonRegister src);
1405 void vrev64(NeonSize size, const QwNeonRegister dst, 1413 void vrev64(NeonSize size, const QwNeonRegister dst,
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
1806 explicit EnsureSpace(Assembler* assembler) { 1814 explicit EnsureSpace(Assembler* assembler) {
1807 assembler->CheckBuffer(); 1815 assembler->CheckBuffer();
1808 } 1816 }
1809 }; 1817 };
1810 1818
1811 1819
1812 } // namespace internal 1820 } // namespace internal
1813 } // namespace v8 1821 } // namespace v8
1814 1822
1815 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1823 #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