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

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

Issue 2773303002: [ARM] Implement widening and narrowing integer moves, vmovl, vqmovn. (Closed)
Patch Set: Add some disassembler tests for vmovl. Created 3 years, 9 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/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 1303 matching lines...) Expand 10 before | Expand all | Expand 10 after
1314 1314
1315 // Support for NEON. 1315 // Support for NEON.
1316 1316
1317 // All these APIs support D0 to D31 and Q0 to Q15. 1317 // All these APIs support D0 to D31 and Q0 to Q15.
1318 void vld1(NeonSize size, 1318 void vld1(NeonSize size,
1319 const NeonListOperand& dst, 1319 const NeonListOperand& dst,
1320 const NeonMemOperand& src); 1320 const NeonMemOperand& src);
1321 void vst1(NeonSize size, 1321 void vst1(NeonSize size,
1322 const NeonListOperand& src, 1322 const NeonListOperand& src,
1323 const NeonMemOperand& dst); 1323 const NeonMemOperand& dst);
1324 // dt represents the narrower type
1324 void vmovl(NeonDataType dt, QwNeonRegister dst, DwVfpRegister src); 1325 void vmovl(NeonDataType dt, QwNeonRegister dst, DwVfpRegister src);
1326 // dt represents the narrower type.
1327 void vqmovn(NeonDataType dt, DwVfpRegister dst, QwNeonRegister src);
1325 1328
1326 // Only unconditional core <-> scalar moves are currently supported. 1329 // Only unconditional core <-> scalar moves are currently supported.
1327 void vmov(NeonDataType dt, DwVfpRegister dst, int index, Register src); 1330 void vmov(NeonDataType dt, DwVfpRegister dst, int index, Register src);
1328 void vmov(NeonDataType dt, Register dst, DwVfpRegister src, int index); 1331 void vmov(NeonDataType dt, Register dst, DwVfpRegister src, int index);
1329 1332
1330 void vmov(QwNeonRegister dst, QwNeonRegister src); 1333 void vmov(QwNeonRegister dst, QwNeonRegister src);
1331 void vdup(NeonSize size, QwNeonRegister dst, Register src); 1334 void vdup(NeonSize size, QwNeonRegister dst, Register src);
1332 void vdup(QwNeonRegister dst, SwVfpRegister src); 1335 void vdup(QwNeonRegister dst, SwVfpRegister src);
1333 1336
1334 void vcvt_f32_s32(QwNeonRegister dst, QwNeonRegister src); 1337 void vcvt_f32_s32(QwNeonRegister dst, QwNeonRegister src);
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
1809 1812
1810 void Emit(Address addr); 1813 void Emit(Address addr);
1811 void FlushICache(Isolate* isolate); 1814 void FlushICache(Isolate* isolate);
1812 }; 1815 };
1813 1816
1814 1817
1815 } // namespace internal 1818 } // namespace internal
1816 } // namespace v8 1819 } // namespace v8
1817 1820
1818 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1821 #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