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 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
370 void vcvtus(const Operand *OpSd, const Operand *OpSm, CondARM32::Cond Cond); | 370 void vcvtus(const Operand *OpSd, const Operand *OpSm, CondARM32::Cond Cond); |
371 | 371 |
372 void vdivd(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, | 372 void vdivd(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, |
373 CondARM32::Cond Cond); | 373 CondARM32::Cond Cond); |
374 | 374 |
375 void vdivs(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, | 375 void vdivs(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, |
376 CondARM32::Cond Cond); | 376 CondARM32::Cond Cond); |
377 | 377 |
378 void veord(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm); | 378 void veord(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm); |
379 | 379 |
| 380 void veorq(const Operand *OpQd, const Operand *OpQn, const Operand *OpQm); |
| 381 |
380 void vldrd(const Operand *OpDd, const Operand *OpAddress, | 382 void vldrd(const Operand *OpDd, const Operand *OpAddress, |
381 CondARM32::Cond Cond, const TargetInfo &TInfo); | 383 CondARM32::Cond Cond, const TargetInfo &TInfo); |
382 | 384 |
383 void vldrd(const Operand *OpDd, const Operand *OpAddress, | 385 void vldrd(const Operand *OpDd, const Operand *OpAddress, |
384 CondARM32::Cond Cond, const TargetLowering *Lowering) { | 386 CondARM32::Cond Cond, const TargetLowering *Lowering) { |
385 const TargetInfo TInfo(Lowering); | 387 const TargetInfo TInfo(Lowering); |
386 vldrd(OpDd, OpAddress, Cond, TInfo); | 388 vldrd(OpDd, OpAddress, Cond, TInfo); |
387 } | 389 } |
388 | 390 |
389 void vldrs(const Operand *OpSd, const Operand *OpAddress, | 391 void vldrs(const Operand *OpSd, const Operand *OpAddress, |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
662 | 664 |
663 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, | 665 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, |
664 const Operand *OpSn, const Operand *OpSm, | 666 const Operand *OpSn, const Operand *OpSm, |
665 const char *InstName); | 667 const char *InstName); |
666 }; | 668 }; |
667 | 669 |
668 } // end of namespace ARM32 | 670 } // end of namespace ARM32 |
669 } // end of namespace Ice | 671 } // end of namespace Ice |
670 | 672 |
671 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H | 673 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H |
OLD | NEW |