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

Side by Side Diff: src/DartARM32/assembler_arm.h

Issue 1623433004: Add missing vcvt instructions to integrated ARM assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nit. Created 4 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/DartARM32/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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 // 4 //
5 // This is forked from Dart revision df52deea9f25690eb8b66c5995da92b70f7ac1fe 5 // This is forked from Dart revision df52deea9f25690eb8b66c5995da92b70f7ac1fe
6 // Please update the (git) revision if we merge changes from Dart. 6 // Please update the (git) revision if we merge changes from Dart.
7 // https://code.google.com/p/dart/wiki/GettingTheSource 7 // https://code.google.com/p/dart/wiki/GettingTheSource
8 8
9 #ifndef VM_ASSEMBLER_ARM_H_ 9 #ifndef VM_ASSEMBLER_ARM_H_
10 #define VM_ASSEMBLER_ARM_H_ 10 #define VM_ASSEMBLER_ARM_H_
(...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after
716 void vabss(SRegister sd, SRegister sm, Condition cond = AL); 716 void vabss(SRegister sd, SRegister sm, Condition cond = AL);
717 void vabsd(DRegister dd, DRegister dm, Condition cond = AL); 717 void vabsd(DRegister dd, DRegister dm, Condition cond = AL);
718 void vabsqs(QRegister qd, QRegister qm); 718 void vabsqs(QRegister qd, QRegister qm);
719 void vnegs(SRegister sd, SRegister sm, Condition cond = AL); 719 void vnegs(SRegister sd, SRegister sm, Condition cond = AL);
720 void vnegd(DRegister dd, DRegister dm, Condition cond = AL); 720 void vnegd(DRegister dd, DRegister dm, Condition cond = AL);
721 void vnegqs(QRegister qd, QRegister qm); 721 void vnegqs(QRegister qd, QRegister qm);
722 void vsqrts(SRegister sd, SRegister sm, Condition cond = AL); 722 void vsqrts(SRegister sd, SRegister sm, Condition cond = AL);
723 void vsqrtd(DRegister dd, DRegister dm, Condition cond = AL); 723 void vsqrtd(DRegister dd, DRegister dm, Condition cond = AL);
724 724
725 #if 0 725 #if 0
726 // Moved to ARM32::AssemblerARM32::vcvtsd 726 // Moved to ARM32::AssemblerARM32::vcvtsd().
727 void vcvtsd(SRegister sd, DRegister dm, Condition cond = AL); 727 void vcvtsd(SRegister sd, DRegister dm, Condition cond = AL);
728 // Moved to ARM32::AssemblerARM32:vcvtds 728 // Moved to ARM32::AssemblerARM32:vcvtds().
729 void vcvtds(DRegister dd, SRegister sm, Condition cond = AL); 729 void vcvtds(DRegister dd, SRegister sm, Condition cond = AL);
730 // Moved to ARM32::AssemblerARM32::vcvtis() 730 // Moved to ARM32::AssemblerARM32::vcvtis()
731 void vcvtis(SRegister sd, SRegister sm, Condition cond = AL); 731 void vcvtis(SRegister sd, SRegister sm, Condition cond = AL);
732 #endif 732 // Moved to ARM32::AssemblerARM32::vcvtid()
733 void vcvtid(SRegister sd, DRegister dm, Condition cond = AL); 733 void vcvtid(SRegister sd, DRegister dm, Condition cond = AL);
734 // Moved to ARM32::AssemblerARM32::vcvtsi()
734 void vcvtsi(SRegister sd, SRegister sm, Condition cond = AL); 735 void vcvtsi(SRegister sd, SRegister sm, Condition cond = AL);
736 // Moved to ARM32::AssemblerARM32::vcvtdi()
735 void vcvtdi(DRegister dd, SRegister sm, Condition cond = AL); 737 void vcvtdi(DRegister dd, SRegister sm, Condition cond = AL);
738 // Moved to ARM32::AssemblerARM32::vcvtus().
736 void vcvtus(SRegister sd, SRegister sm, Condition cond = AL); 739 void vcvtus(SRegister sd, SRegister sm, Condition cond = AL);
740 // Moved to ARM32::AssemblerARM32::vcvtud().
737 void vcvtud(SRegister sd, DRegister dm, Condition cond = AL); 741 void vcvtud(SRegister sd, DRegister dm, Condition cond = AL);
742 // Moved to ARM32::AssemblerARM32::vcvtsu()
738 void vcvtsu(SRegister sd, SRegister sm, Condition cond = AL); 743 void vcvtsu(SRegister sd, SRegister sm, Condition cond = AL);
744 // Moved to ARM32::AssemblerARM32::vcvtdu()
739 void vcvtdu(DRegister dd, SRegister sm, Condition cond = AL); 745 void vcvtdu(DRegister dd, SRegister sm, Condition cond = AL);
740 746
741 #if 0
742 // Moved to ARM23::AssemblerARM32::vcmps(). 747 // Moved to ARM23::AssemblerARM32::vcmps().
743 void vcmps(SRegister sd, SRegister sm, Condition cond = AL); 748 void vcmps(SRegister sd, SRegister sm, Condition cond = AL);
744 // Moved to ARM23::AssemblerARM32::vcmpd(). 749 // Moved to ARM23::AssemblerARM32::vcmpd().
745 void vcmpd(DRegister dd, DRegister dm, Condition cond = AL); 750 void vcmpd(DRegister dd, DRegister dm, Condition cond = AL);
746 // Moved to ARM23::AssemblerARM32::vcmpsz(). 751 // Moved to ARM23::AssemblerARM32::vcmpsz().
747 void vcmpsz(SRegister sd, Condition cond = AL); 752 void vcmpsz(SRegister sd, Condition cond = AL);
748 // Moved to ARM23::AssemblerARM32::vcmpdz(). 753 // Moved to ARM23::AssemblerARM32::vcmpdz().
749 void vcmpdz(DRegister dd, Condition cond = AL); 754 void vcmpdz(DRegister dd, Condition cond = AL);
750 #endif 755 #endif
751 756
(...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after
1369 // ARM32::AssemblerARM::veord() 1374 // ARM32::AssemblerARM::veord()
1370 #endif 1375 #endif
1371 1376
1372 DISALLOW_ALLOCATION(); 1377 DISALLOW_ALLOCATION();
1373 DISALLOW_COPY_AND_ASSIGN(Assembler); 1378 DISALLOW_COPY_AND_ASSIGN(Assembler);
1374 }; 1379 };
1375 1380
1376 } // namespace dart 1381 } // namespace dart
1377 1382
1378 #endif // VM_ASSEMBLER_ARM_H_ 1383 #endif // VM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/DartARM32/assembler_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698