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

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

Issue 1881623002: Subzero. ARM32. Vector shifts. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fixes GPLUSPLUS build Created 4 years, 8 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 675 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 // Moved to ARM32::AssemblerARM32::vsubqf(). 686 // Moved to ARM32::AssemblerARM32::vsubqf().
687 void vsubqs(QRegister qd, QRegister qn, QRegister qm); 687 void vsubqs(QRegister qd, QRegister qn, QRegister qm);
688 // Moved to Arm32::AssemblerARM32::vmuls() 688 // Moved to Arm32::AssemblerARM32::vmuls()
689 void vmuls(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL); 689 void vmuls(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL);
690 // Moved to Arm32::AssemblerARM32::vmuld() 690 // Moved to Arm32::AssemblerARM32::vmuld()
691 void vmuld(DRegister dd, DRegister dn, DRegister dm, Condition cond = AL); 691 void vmuld(DRegister dd, DRegister dn, DRegister dm, Condition cond = AL);
692 // Moved to ARM32::AssemblerARM32::vmulqi(). 692 // Moved to ARM32::AssemblerARM32::vmulqi().
693 void vmulqi(OperandSize sz, QRegister qd, QRegister qn, QRegister qm); 693 void vmulqi(OperandSize sz, QRegister qd, QRegister qn, QRegister qm);
694 // Moved to ARM32::AssemblerARM32::vmulqf(). 694 // Moved to ARM32::AssemblerARM32::vmulqf().
695 void vmulqs(QRegister qd, QRegister qn, QRegister qm); 695 void vmulqs(QRegister qd, QRegister qn, QRegister qm);
696 #endif 696 // Moved to ARM32::AssemblerARM32::vshlqi().
697 void vshlqi(OperandSize sz, QRegister qd, QRegister qm, QRegister qn); 697 void vshlqi(OperandSize sz, QRegister qd, QRegister qm, QRegister qn);
698 // Moved to ARM32::AssemblerARM32::vshlqu().
698 void vshlqu(OperandSize sz, QRegister qd, QRegister qm, QRegister qn); 699 void vshlqu(OperandSize sz, QRegister qd, QRegister qm, QRegister qn);
699 #if 0
700 // Moved to Arm32::AssemblerARM32::vmlas() 700 // Moved to Arm32::AssemblerARM32::vmlas()
701 void vmlas(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL); 701 void vmlas(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL);
702 // Moved to Arm32::AssemblerARM32::vmlad() 702 // Moved to Arm32::AssemblerARM32::vmlad()
703 void vmlad(DRegister dd, DRegister dn, DRegister dm, Condition cond = AL); 703 void vmlad(DRegister dd, DRegister dn, DRegister dm, Condition cond = AL);
704 // Moved to Arm32::AssemblerARM32::vmlss() 704 // Moved to Arm32::AssemblerARM32::vmlss()
705 void vmlss(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL); 705 void vmlss(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL);
706 // Moved to Arm32::AssemblerARM32::vmlsd() 706 // Moved to Arm32::AssemblerARM32::vmlsd()
707 void vmlsd(DRegister dd, DRegister dn, DRegister dm, Condition cond = AL); 707 void vmlsd(DRegister dd, DRegister dn, DRegister dm, Condition cond = AL);
708 // Moved to Arm32::AssemblerARM32::vdivs() 708 // Moved to Arm32::AssemblerARM32::vdivs()
709 void vdivs(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL); 709 void vdivs(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL);
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
742 #if 0 742 #if 0
743 // Moved to Arm32::AssemblerARM32::vabss(). 743 // Moved to Arm32::AssemblerARM32::vabss().
744 void vabss(SRegister sd, SRegister sm, Condition cond = AL); 744 void vabss(SRegister sd, SRegister sm, Condition cond = AL);
745 // Moved to Arm32::AssemblerARM32::vabsd(). 745 // Moved to Arm32::AssemblerARM32::vabsd().
746 void vabsd(DRegister dd, DRegister dm, Condition cond = AL); 746 void vabsd(DRegister dd, DRegister dm, Condition cond = AL);
747 // Moved to Arm32::AssemblerARM32::vabsq(). 747 // Moved to Arm32::AssemblerARM32::vabsq().
748 void vabsqs(QRegister qd, QRegister qm); 748 void vabsqs(QRegister qd, QRegister qm);
749 #endif 749 #endif
750 void vnegs(SRegister sd, SRegister sm, Condition cond = AL); 750 void vnegs(SRegister sd, SRegister sm, Condition cond = AL);
751 void vnegd(DRegister dd, DRegister dm, Condition cond = AL); 751 void vnegd(DRegister dd, DRegister dm, Condition cond = AL);
752 #if 0
753 // Moved to ARM32::AssemblerARM32::vnegqs().
752 void vnegqs(QRegister qd, QRegister qm); 754 void vnegqs(QRegister qd, QRegister qm);
753 #if 0
754 // Moved to ARM32::AssemblerARM32::vsqrts(). 755 // Moved to ARM32::AssemblerARM32::vsqrts().
755 void vsqrts(SRegister sd, SRegister sm, Condition cond = AL); 756 void vsqrts(SRegister sd, SRegister sm, Condition cond = AL);
756 // Moved to ARM32::AssemblerARM32::vsqrts(). 757 // Moved to ARM32::AssemblerARM32::vsqrts().
757 void vsqrtd(DRegister dd, DRegister dm, Condition cond = AL); 758 void vsqrtd(DRegister dd, DRegister dm, Condition cond = AL);
758 759
759 // Moved to ARM32::AssemblerARM32::vcvtsd(). 760 // Moved to ARM32::AssemblerARM32::vcvtsd().
760 void vcvtsd(SRegister sd, DRegister dm, Condition cond = AL); 761 void vcvtsd(SRegister sd, DRegister dm, Condition cond = AL);
761 // Moved to ARM32::AssemblerARM32:vcvtds(). 762 // Moved to ARM32::AssemblerARM32:vcvtds().
762 void vcvtds(DRegister dd, SRegister sm, Condition cond = AL); 763 void vcvtds(DRegister dd, SRegister sm, Condition cond = AL);
763 // Moved to ARM32::AssemblerARM32::vcvtis() 764 // Moved to ARM32::AssemblerARM32::vcvtis()
(...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after
1412 // ARM32::AssemblerARM32::vmorqi() 1413 // ARM32::AssemblerARM32::vmorqi()
1413 #endif 1414 #endif
1414 1415
1415 DISALLOW_ALLOCATION(); 1416 DISALLOW_ALLOCATION();
1416 DISALLOW_COPY_AND_ASSIGN(Assembler); 1417 DISALLOW_COPY_AND_ASSIGN(Assembler);
1417 }; 1418 };
1418 1419
1419 } // namespace dart 1420 } // namespace dart
1420 1421
1421 #endif // VM_ASSEMBLER_ARM_H_ 1422 #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