| OLD | NEW |
| 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 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 624 void vmovrs(Register rt, SRegister sn, Condition cond = AL); | 624 void vmovrs(Register rt, SRegister sn, Condition cond = AL); |
| 625 void vmovsrr(SRegister sm, Register rt, Register rt2, Condition cond = AL); | 625 void vmovsrr(SRegister sm, Register rt, Register rt2, Condition cond = AL); |
| 626 void vmovrrs(Register rt, Register rt2, SRegister sm, Condition cond = AL); | 626 void vmovrrs(Register rt, Register rt2, SRegister sm, Condition cond = AL); |
| 627 void vmovdrr(DRegister dm, Register rt, Register rt2, Condition cond = AL); | 627 void vmovdrr(DRegister dm, Register rt, Register rt2, Condition cond = AL); |
| 628 void vmovrrd(Register rt, Register rt2, DRegister dm, Condition cond = AL); | 628 void vmovrrd(Register rt, Register rt2, DRegister dm, Condition cond = AL); |
| 629 void vmovdr(DRegister dd, int i, Register rt, Condition cond = AL); | 629 void vmovdr(DRegister dd, int i, Register rt, Condition cond = AL); |
| 630 void vmovs(SRegister sd, SRegister sm, Condition cond = AL); | 630 void vmovs(SRegister sd, SRegister sm, Condition cond = AL); |
| 631 void vmovd(DRegister dd, DRegister dm, Condition cond = AL); | 631 void vmovd(DRegister dd, DRegister dm, Condition cond = AL); |
| 632 void vmovq(QRegister qd, QRegister qm); | 632 void vmovq(QRegister qd, QRegister qm); |
| 633 | 633 |
| 634 #if 0 |
| 634 // Returns false if the immediate cannot be encoded. | 635 // Returns false if the immediate cannot be encoded. |
| 636 // Moved to ARM32::AssemblerARM32::vmovs(); |
| 635 bool vmovs(SRegister sd, float s_imm, Condition cond = AL); | 637 bool vmovs(SRegister sd, float s_imm, Condition cond = AL); |
| 638 // Moved to ARM32::AssemblerARM32::vmovs(); |
| 636 bool vmovd(DRegister dd, double d_imm, Condition cond = AL); | 639 bool vmovd(DRegister dd, double d_imm, Condition cond = AL); |
| 637 | 640 |
| 638 #if 0 | |
| 639 // Moved to ARM32::AssemblerARM32::vldrs() | 641 // Moved to ARM32::AssemblerARM32::vldrs() |
| 640 void vldrs(SRegister sd, Address ad, Condition cond = AL); | 642 void vldrs(SRegister sd, Address ad, Condition cond = AL); |
| 641 // Moved to Arm32::AssemblerARM32::vstrs() | 643 // Moved to Arm32::AssemblerARM32::vstrs() |
| 642 void vstrs(SRegister sd, Address ad, Condition cond = AL); | 644 void vstrs(SRegister sd, Address ad, Condition cond = AL); |
| 643 #endif | 645 #endif |
| 644 // Moved to ARM32::AssemblerARM32::vldrd() | 646 // Moved to ARM32::AssemblerARM32::vldrd() |
| 645 void vldrd(DRegister dd, Address ad, Condition cond = AL); | 647 void vldrd(DRegister dd, Address ad, Condition cond = AL); |
| 646 #if 0 | 648 #if 0 |
| 647 // Moved to Arm32::AssemblerARM32::vstrd() | 649 // Moved to Arm32::AssemblerARM32::vstrd() |
| 648 void vstrd(DRegister dd, Address ad, Condition cond = AL); | 650 void vstrd(DRegister dd, Address ad, Condition cond = AL); |
| (...skipping 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1378 // ARM32::AssemblerARM::veord() | 1380 // ARM32::AssemblerARM::veord() |
| 1379 #endif | 1381 #endif |
| 1380 | 1382 |
| 1381 DISALLOW_ALLOCATION(); | 1383 DISALLOW_ALLOCATION(); |
| 1382 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1384 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1383 }; | 1385 }; |
| 1384 | 1386 |
| 1385 } // namespace dart | 1387 } // namespace dart |
| 1386 | 1388 |
| 1387 #endif // VM_ASSEMBLER_ARM_H_ | 1389 #endif // VM_ASSEMBLER_ARM_H_ |
| OLD | NEW |