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

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

Issue 1679023008: Add insert/extract element 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 612 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 628 #if 0
629 // Moved to ARM32::AssemblerARM32::vmovdrr(). 629 // Moved to ARM32::AssemblerARM32::vmovdrr().
630 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(). 631 // Moved to ARM32::AssemblerARM32::vmovrrd().
632 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 633 // Moved to ARM32::AssemblerARM32::vmovqir().
634 void vmovdr(DRegister dd, int i, Register rt, Condition cond = AL); 634 void vmovdr(DRegister dd, int i, Register rt, Condition cond = AL);
635 #if 0
636 // Moved to ARM32::AssemblerARM32::vmovss(). 635 // Moved to ARM32::AssemblerARM32::vmovss().
637 void vmovs(SRegister sd, SRegister sm, Condition cond = AL); 636 void vmovs(SRegister sd, SRegister sm, Condition cond = AL);
638 // Moved to ARM32::AssemblerARM32::vmovdd(). 637 // Moved to ARM32::AssemblerARM32::vmovdd().
639 void vmovd(DRegister dd, DRegister dm, Condition cond = AL); 638 void vmovd(DRegister dd, DRegister dm, Condition cond = AL);
640 #endif 639 #endif
641 void vmovq(QRegister qd, QRegister qm); 640 void vmovq(QRegister qd, QRegister qm);
642 641
643 #if 0 642 #if 0
644 // Returns false if the immediate cannot be encoded. 643 // Returns false if the immediate cannot be encoded.
645 // Moved to ARM32::AssemblerARM32::vmovs(); 644 // Moved to ARM32::AssemblerARM32::vmovs();
(...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after
1402 #if 0 1401 #if 0
1403 // Added the following missing operations: 1402 // Added the following missing operations:
1404 // 1403 //
1405 // ARM32::AssemblerARM32::uxt() (uxtb and uxth) 1404 // ARM32::AssemblerARM32::uxt() (uxtb and uxth)
1406 // ARM32::AssemblerARM32::vpop() 1405 // ARM32::AssemblerARM32::vpop()
1407 // ARM32::AssemblerARM32::vpush() 1406 // ARM32::AssemblerARM32::vpush()
1408 // ARM32::AssemblerARM32:rbit() 1407 // ARM32::AssemblerARM32:rbit()
1409 // ARM32::AssemblerARM32::veord() 1408 // ARM32::AssemblerARM32::veord()
1410 // ARM32::AssemblerARM32::vld1qr() 1409 // ARM32::AssemblerARM32::vld1qr()
1411 // ARM32::AssemblerARM32::vst1qr() 1410 // ARM32::AssemblerARM32::vst1qr()
1411 // ARM32::AssemblerARM32::vmorqi()
1412 #endif 1412 #endif
1413 1413
1414 DISALLOW_ALLOCATION(); 1414 DISALLOW_ALLOCATION();
1415 DISALLOW_COPY_AND_ASSIGN(Assembler); 1415 DISALLOW_COPY_AND_ASSIGN(Assembler);
1416 }; 1416 };
1417 1417
1418 } // namespace dart 1418 } // namespace dart
1419 1419
1420 #endif // VM_ASSEMBLER_ARM_H_ 1420 #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