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

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

Issue 1642253002: Add multi-source/dest VMOV to the integrated ARM assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. 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') | 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 607 matching lines...) Expand 10 before | Expand all | Expand 10 after
618 618
619 // Floating point instructions (VFPv3-D16 and VFPv3-D32 profiles). 619 // Floating point instructions (VFPv3-D16 and VFPv3-D32 profiles).
620 620
621 // Moved to ARM32::AssemblerARM32::vmovsr(). 621 // Moved to ARM32::AssemblerARM32::vmovsr().
622 void vmovsr(SRegister sn, Register rt, Condition cond = AL); 622 void vmovsr(SRegister sn, Register rt, Condition cond = AL);
623 // Moved to ARM32::AssemblerARM32::vmovrs(). 623 // Moved to ARM32::AssemblerARM32::vmovrs().
624 void vmovrs(Register rt, SRegister sn, Condition cond = AL); 624 void vmovrs(Register rt, SRegister sn, Condition cond = AL);
625 #endif 625 #endif
626 void vmovsrr(SRegister sm, Register rt, Register rt2, Condition cond = AL); 626 void vmovsrr(SRegister sm, Register rt, Register rt2, Condition cond = AL);
627 void vmovrrs(Register rt, Register rt2, SRegister sm, Condition cond = AL); 627 void vmovrrs(Register rt, Register rt2, SRegister sm, Condition cond = AL);
628 #if 0
629 // Moved to ARM32::AssemblerARM32::vmovdrr().
628 void vmovdrr(DRegister dm, Register rt, Register rt2, Condition cond = AL); 630 void vmovdrr(DRegister dm, Register rt, Register rt2, Condition cond = AL);
631 // Moved to ARM32::AssemblerARM32::vmovrrd().
629 void vmovrrd(Register rt, Register rt2, DRegister dm, Condition cond = AL); 632 void vmovrrd(Register rt, Register rt2, DRegister dm, Condition cond = AL);
633 #endif
630 void vmovdr(DRegister dd, int i, Register rt, Condition cond = AL); 634 void vmovdr(DRegister dd, int i, Register rt, Condition cond = AL);
631 #if 0 635 #if 0
632 // Moved to ARM32::AssemblerARM32::vmovss(). 636 // Moved to ARM32::AssemblerARM32::vmovss().
633 void vmovs(SRegister sd, SRegister sm, Condition cond = AL); 637 void vmovs(SRegister sd, SRegister sm, Condition cond = AL);
634 // Moved to ARM32::AssemblerARM32::vmovdd(). 638 // Moved to ARM32::AssemblerARM32::vmovdd().
635 void vmovd(DRegister dd, DRegister dm, Condition cond = AL); 639 void vmovd(DRegister dd, DRegister dm, Condition cond = AL);
636 #endif 640 #endif
637 void vmovq(QRegister qd, QRegister qm); 641 void vmovq(QRegister qd, QRegister qm);
638 642
639 #if 0 643 #if 0
(...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after
1389 // ARM32::AssemblerARM::veord() 1393 // ARM32::AssemblerARM::veord()
1390 #endif 1394 #endif
1391 1395
1392 DISALLOW_ALLOCATION(); 1396 DISALLOW_ALLOCATION();
1393 DISALLOW_COPY_AND_ASSIGN(Assembler); 1397 DISALLOW_COPY_AND_ASSIGN(Assembler);
1394 }; 1398 };
1395 1399
1396 } // namespace dart 1400 } // namespace dart
1397 1401
1398 #endif // VM_ASSEMBLER_ARM_H_ 1402 #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