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

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

Issue 2602293002: [ARM] Add vcge, vcgt instructions to assembler. (Closed)
Patch Set: Fix some assembler comments. 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 1368 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 vtst(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, 1383 void vtst(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1,
1384 const QwNeonRegister src2); 1384 const QwNeonRegister src2);
1385 void vceq(const QwNeonRegister dst, const QwNeonRegister src1, 1385 void vceq(const QwNeonRegister dst, const QwNeonRegister src1,
1386 const QwNeonRegister src2); 1386 const QwNeonRegister src2);
1387 void vceq(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1, 1387 void vceq(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src1,
1388 const QwNeonRegister src2); 1388 const QwNeonRegister src2);
1389 void vcge(const QwNeonRegister dst, const QwNeonRegister src1,
1390 const QwNeonRegister src2);
1391 void vcge(NeonDataType dt, const QwNeonRegister dst,
1392 const QwNeonRegister src1, const QwNeonRegister src2);
1393 void vcgt(const QwNeonRegister dst, const QwNeonRegister src1,
1394 const QwNeonRegister src2);
1395 void vcgt(NeonDataType dt, const QwNeonRegister dst,
1396 const QwNeonRegister src1, const QwNeonRegister src2);
1389 void vbsl(const QwNeonRegister dst, const QwNeonRegister src1, 1397 void vbsl(const QwNeonRegister dst, const QwNeonRegister src1,
1390 const QwNeonRegister src2); 1398 const QwNeonRegister src2);
1391 void vext(const QwNeonRegister dst, const QwNeonRegister src1, 1399 void vext(const QwNeonRegister dst, const QwNeonRegister src1,
1392 const QwNeonRegister src2, int bytes); 1400 const QwNeonRegister src2, int bytes);
1393 void vzip(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src); 1401 void vzip(NeonSize size, const QwNeonRegister dst, const QwNeonRegister src);
1394 void vrev16(NeonSize size, const QwNeonRegister dst, 1402 void vrev16(NeonSize size, const QwNeonRegister dst,
1395 const QwNeonRegister src); 1403 const QwNeonRegister src);
1396 void vrev32(NeonSize size, const QwNeonRegister dst, 1404 void vrev32(NeonSize size, const QwNeonRegister dst,
1397 const QwNeonRegister src); 1405 const QwNeonRegister src);
1398 void vrev64(NeonSize size, const QwNeonRegister dst, 1406 void vrev64(NeonSize size, const QwNeonRegister dst,
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
1799 explicit EnsureSpace(Assembler* assembler) { 1807 explicit EnsureSpace(Assembler* assembler) {
1800 assembler->CheckBuffer(); 1808 assembler->CheckBuffer();
1801 } 1809 }
1802 }; 1810 };
1803 1811
1804 1812
1805 } // namespace internal 1813 } // namespace internal
1806 } // namespace v8 1814 } // namespace v8
1807 1815
1808 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1816 #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