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

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

Issue 1603893003: Add vstr{s,d} 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, 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 615 matching lines...) Expand 10 before | Expand all | Expand 10 after
626 void vmovdr(DRegister dd, int i, Register rt, Condition cond = AL); 626 void vmovdr(DRegister dd, int i, Register rt, Condition cond = AL);
627 void vmovs(SRegister sd, SRegister sm, Condition cond = AL); 627 void vmovs(SRegister sd, SRegister sm, Condition cond = AL);
628 void vmovd(DRegister dd, DRegister dm, Condition cond = AL); 628 void vmovd(DRegister dd, DRegister dm, Condition cond = AL);
629 void vmovq(QRegister qd, QRegister qm); 629 void vmovq(QRegister qd, QRegister qm);
630 630
631 // Returns false if the immediate cannot be encoded. 631 // Returns false if the immediate cannot be encoded.
632 bool vmovs(SRegister sd, float s_imm, Condition cond = AL); 632 bool vmovs(SRegister sd, float s_imm, Condition cond = AL);
633 bool vmovd(DRegister dd, double d_imm, Condition cond = AL); 633 bool vmovd(DRegister dd, double d_imm, Condition cond = AL);
634 634
635 void vldrs(SRegister sd, Address ad, Condition cond = AL); 635 void vldrs(SRegister sd, Address ad, Condition cond = AL);
636 #if 0
637 // Moved to Arm32::AssemblerARM32::vstrs()
636 void vstrs(SRegister sd, Address ad, Condition cond = AL); 638 void vstrs(SRegister sd, Address ad, Condition cond = AL);
639 #endif
637 void vldrd(DRegister dd, Address ad, Condition cond = AL); 640 void vldrd(DRegister dd, Address ad, Condition cond = AL);
641 #if 0
642 // Moved to Arm32::AssemblerARM32::vstrd()
638 void vstrd(DRegister dd, Address ad, Condition cond = AL); 643 void vstrd(DRegister dd, Address ad, Condition cond = AL);
644 #endif
639 645
640 void vldms(BlockAddressMode am, Register base, 646 void vldms(BlockAddressMode am, Register base,
641 SRegister first, SRegister last, Condition cond = AL); 647 SRegister first, SRegister last, Condition cond = AL);
642 void vstms(BlockAddressMode am, Register base, 648 void vstms(BlockAddressMode am, Register base,
643 SRegister first, SRegister last, Condition cond = AL); 649 SRegister first, SRegister last, Condition cond = AL);
644 650
645 void vldmd(BlockAddressMode am, Register base, 651 void vldmd(BlockAddressMode am, Register base,
646 DRegister first, intptr_t count, Condition cond = AL); 652 DRegister first, intptr_t count, Condition cond = AL);
647 void vstmd(BlockAddressMode am, Register base, 653 void vstmd(BlockAddressMode am, Register base,
648 DRegister first, intptr_t count, Condition cond = AL); 654 DRegister first, intptr_t count, Condition cond = AL);
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after
1359 // ARM32::AssemblerARM:rbit(). 1365 // ARM32::AssemblerARM:rbit().
1360 #endif 1366 #endif
1361 1367
1362 DISALLOW_ALLOCATION(); 1368 DISALLOW_ALLOCATION();
1363 DISALLOW_COPY_AND_ASSIGN(Assembler); 1369 DISALLOW_COPY_AND_ASSIGN(Assembler);
1364 }; 1370 };
1365 1371
1366 } // namespace dart 1372 } // namespace dart
1367 1373
1368 #endif // VM_ASSEMBLER_ARM_H_ 1374 #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