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

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

Issue 1647113003: Add VSQRT instruction to the integrated ARM assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Update DART files. Created 4 years, 10 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') | src/IceInstARM32.cpp » ('J')
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 719 matching lines...) Expand 10 before | Expand all | Expand 10 after
730 void vcgtqi(OperandSize sz, QRegister qd, QRegister qn, QRegister qm); 730 void vcgtqi(OperandSize sz, QRegister qd, QRegister qn, QRegister qm);
731 void vcugtqi(OperandSize sz, QRegister qd, QRegister qn, QRegister qm); 731 void vcugtqi(OperandSize sz, QRegister qd, QRegister qn, QRegister qm);
732 void vcgtqs(QRegister qd, QRegister qn, QRegister qm); 732 void vcgtqs(QRegister qd, QRegister qn, QRegister qm);
733 733
734 void vabss(SRegister sd, SRegister sm, Condition cond = AL); 734 void vabss(SRegister sd, SRegister sm, Condition cond = AL);
735 void vabsd(DRegister dd, DRegister dm, Condition cond = AL); 735 void vabsd(DRegister dd, DRegister dm, Condition cond = AL);
736 void vabsqs(QRegister qd, QRegister qm); 736 void vabsqs(QRegister qd, QRegister qm);
737 void vnegs(SRegister sd, SRegister sm, Condition cond = AL); 737 void vnegs(SRegister sd, SRegister sm, Condition cond = AL);
738 void vnegd(DRegister dd, DRegister dm, Condition cond = AL); 738 void vnegd(DRegister dd, DRegister dm, Condition cond = AL);
739 void vnegqs(QRegister qd, QRegister qm); 739 void vnegqs(QRegister qd, QRegister qm);
740 #if 0
741 // Moved to ARM32::AssemblerARM32::vsqrts().
740 void vsqrts(SRegister sd, SRegister sm, Condition cond = AL); 742 void vsqrts(SRegister sd, SRegister sm, Condition cond = AL);
743 // Moved to ARM32::AssemblerARM32::vsqrts().
741 void vsqrtd(DRegister dd, DRegister dm, Condition cond = AL); 744 void vsqrtd(DRegister dd, DRegister dm, Condition cond = AL);
742 745
743 #if 0
744 // Moved to ARM32::AssemblerARM32::vcvtsd(). 746 // Moved to ARM32::AssemblerARM32::vcvtsd().
745 void vcvtsd(SRegister sd, DRegister dm, Condition cond = AL); 747 void vcvtsd(SRegister sd, DRegister dm, Condition cond = AL);
746 // Moved to ARM32::AssemblerARM32:vcvtds(). 748 // Moved to ARM32::AssemblerARM32:vcvtds().
747 void vcvtds(DRegister dd, SRegister sm, Condition cond = AL); 749 void vcvtds(DRegister dd, SRegister sm, Condition cond = AL);
748 // Moved to ARM32::AssemblerARM32::vcvtis() 750 // Moved to ARM32::AssemblerARM32::vcvtis()
749 void vcvtis(SRegister sd, SRegister sm, Condition cond = AL); 751 void vcvtis(SRegister sd, SRegister sm, Condition cond = AL);
750 // Moved to ARM32::AssemblerARM32::vcvtid() 752 // Moved to ARM32::AssemblerARM32::vcvtid()
751 void vcvtid(SRegister sd, DRegister dm, Condition cond = AL); 753 void vcvtid(SRegister sd, DRegister dm, Condition cond = AL);
752 // Moved to ARM32::AssemblerARM32::vcvtsi() 754 // Moved to ARM32::AssemblerARM32::vcvtsi()
753 void vcvtsi(SRegister sd, SRegister sm, Condition cond = AL); 755 void vcvtsi(SRegister sd, SRegister sm, Condition cond = AL);
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after
1393 // ARM32::AssemblerARM::veord() 1395 // ARM32::AssemblerARM::veord()
1394 #endif 1396 #endif
1395 1397
1396 DISALLOW_ALLOCATION(); 1398 DISALLOW_ALLOCATION();
1397 DISALLOW_COPY_AND_ASSIGN(Assembler); 1399 DISALLOW_COPY_AND_ASSIGN(Assembler);
1398 }; 1400 };
1399 1401
1400 } // namespace dart 1402 } // namespace dart
1401 1403
1402 #endif // VM_ASSEMBLER_ARM_H_ 1404 #endif // VM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/DartARM32/assembler_arm.cc » ('j') | src/IceInstARM32.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698