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

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

Issue 1471913006: [turbofan] Implemented the optional Float32RoundDown operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Removed a debugging printf. Created 5 years 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/simulator-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 1195 matching lines...) Expand 10 before | Expand all | Expand 10 after
1206 const Condition cond = al); 1206 const Condition cond = al);
1207 void vsqrt(const DwVfpRegister dst, 1207 void vsqrt(const DwVfpRegister dst,
1208 const DwVfpRegister src, 1208 const DwVfpRegister src,
1209 const Condition cond = al); 1209 const Condition cond = al);
1210 void vsqrt(const SwVfpRegister dst, const SwVfpRegister src, 1210 void vsqrt(const SwVfpRegister dst, const SwVfpRegister src,
1211 const Condition cond = al); 1211 const Condition cond = al);
1212 1212
1213 // ARMv8 rounding instructions. 1213 // ARMv8 rounding instructions.
1214 void vrinta(const DwVfpRegister dst, const DwVfpRegister src); 1214 void vrinta(const DwVfpRegister dst, const DwVfpRegister src);
1215 void vrintn(const DwVfpRegister dst, const DwVfpRegister src); 1215 void vrintn(const DwVfpRegister dst, const DwVfpRegister src);
1216 void vrintm(const SwVfpRegister dst, const SwVfpRegister src);
1216 void vrintm(const DwVfpRegister dst, const DwVfpRegister src); 1217 void vrintm(const DwVfpRegister dst, const DwVfpRegister src);
1217 void vrintp(const DwVfpRegister dst, const DwVfpRegister src); 1218 void vrintp(const DwVfpRegister dst, const DwVfpRegister src);
1218 void vrintz(const DwVfpRegister dst, const DwVfpRegister src, 1219 void vrintz(const DwVfpRegister dst, const DwVfpRegister src,
1219 const Condition cond = al); 1220 const Condition cond = al);
1220 1221
1221 // Support for NEON. 1222 // Support for NEON.
1222 // All these APIs support D0 to D31 and Q0 to Q15. 1223 // All these APIs support D0 to D31 and Q0 to Q15.
1223 1224
1224 void vld1(NeonSize size, 1225 void vld1(NeonSize size,
1225 const NeonListOperand& dst, 1226 const NeonListOperand& dst,
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
1621 explicit EnsureSpace(Assembler* assembler) { 1622 explicit EnsureSpace(Assembler* assembler) {
1622 assembler->CheckBuffer(); 1623 assembler->CheckBuffer();
1623 } 1624 }
1624 }; 1625 };
1625 1626
1626 1627
1627 } // namespace internal 1628 } // namespace internal
1628 } // namespace v8 1629 } // namespace v8
1629 1630
1630 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1631 #endif // V8_ARM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/assembler-arm.cc » ('j') | src/arm/simulator-arm.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698