| OLD | NEW |
| 1 //===- subzero/src/IceAssemblerARM32.h - Assembler for ARM32 ----*- C++ -*-===// | 1 //===- subzero/src/IceAssemblerARM32.h - Assembler for ARM32 ----*- C++ -*-===// |
| 2 // | 2 // |
| 3 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 3 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 4 // for details. All rights reserved. Use of this source code is governed by a | 4 // for details. All rights reserved. Use of this source code is governed by a |
| 5 // BSD-style license that can be found in the LICENSE file. | 5 // BSD-style license that can be found in the LICENSE file. |
| 6 // | 6 // |
| 7 // Modified by the Subzero authors. | 7 // Modified by the Subzero authors. |
| 8 // | 8 // |
| 9 //===----------------------------------------------------------------------===// | 9 //===----------------------------------------------------------------------===// |
| 10 // | 10 // |
| (...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 // Integer vector multiply. | 484 // Integer vector multiply. |
| 485 void vmulqi(Type ElmtTy, const Operand *OpQd, const Operand *OpQn, | 485 void vmulqi(Type ElmtTy, const Operand *OpQd, const Operand *OpQn, |
| 486 const Operand *OpQm); | 486 const Operand *OpQm); |
| 487 | 487 |
| 488 // Float vector multiply. | 488 // Float vector multiply. |
| 489 void vmulqf(const Operand *OpQd, const Operand *OpQn, const Operand *OpQm); | 489 void vmulqf(const Operand *OpQd, const Operand *OpQn, const Operand *OpQm); |
| 490 | 490 |
| 491 void vmuls(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, | 491 void vmuls(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, |
| 492 CondARM32::Cond Cond); | 492 CondARM32::Cond Cond); |
| 493 | 493 |
| 494 void vnegqs(Type ElmtTy, const Operand *OpQd, const Operand *OpQm); |
| 495 |
| 494 void vorrq(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn); | 496 void vorrq(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn); |
| 495 | 497 |
| 496 void vpop(const Variable *OpBaseReg, SizeT NumConsecRegs, | 498 void vpop(const Variable *OpBaseReg, SizeT NumConsecRegs, |
| 497 CondARM32::Cond Cond); | 499 CondARM32::Cond Cond); |
| 498 | 500 |
| 499 void vpush(const Variable *OpBaseReg, SizeT NumConsecRegs, | 501 void vpush(const Variable *OpBaseReg, SizeT NumConsecRegs, |
| 500 CondARM32::Cond Cond); | 502 CondARM32::Cond Cond); |
| 501 | 503 |
| 504 void vshlqi(Type ElmtTy, const Operand *OpQd, const Operand *OpQm, |
| 505 const Operand *OpQn); |
| 506 |
| 507 void vshlqu(Type ElmtTy, const Operand *OpQd, const Operand *OpQm, |
| 508 const Operand *OpQn); |
| 509 |
| 502 void vsqrtd(const Operand *OpDd, const Operand *OpDm, CondARM32::Cond Cond); | 510 void vsqrtd(const Operand *OpDd, const Operand *OpDm, CondARM32::Cond Cond); |
| 503 | 511 |
| 504 void vsqrts(const Operand *OpSd, const Operand *OpSm, CondARM32::Cond Cond); | 512 void vsqrts(const Operand *OpSd, const Operand *OpSm, CondARM32::Cond Cond); |
| 505 | 513 |
| 506 void vstrd(const Operand *OpDd, const Operand *OpAddress, | 514 void vstrd(const Operand *OpDd, const Operand *OpAddress, |
| 507 CondARM32::Cond Cond, const TargetInfo &TInfo); | 515 CondARM32::Cond Cond, const TargetInfo &TInfo); |
| 508 | 516 |
| 509 void vstrd(const Operand *OpDd, const Operand *OpAddress, | 517 void vstrd(const Operand *OpDd, const Operand *OpAddress, |
| 510 CondARM32::Cond Cond, const TargetLowering *Lowering) { | 518 CondARM32::Cond Cond, const TargetLowering *Lowering) { |
| 511 const TargetInfo TInfo(Lowering); | 519 const TargetInfo TInfo(Lowering); |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 758 | 766 |
| 759 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, | 767 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, |
| 760 const Operand *OpSn, const Operand *OpSm, | 768 const Operand *OpSn, const Operand *OpSm, |
| 761 const char *InstName); | 769 const char *InstName); |
| 762 }; | 770 }; |
| 763 | 771 |
| 764 } // end of namespace ARM32 | 772 } // end of namespace ARM32 |
| 765 } // end of namespace Ice | 773 } // end of namespace Ice |
| 766 | 774 |
| 767 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H | 775 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H |
| OLD | NEW |