| 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 | 305 |
| 306 void udiv(const Operand *OpRd, const Operand *OpRn, const Operand *OpSrc1, | 306 void udiv(const Operand *OpRd, const Operand *OpRn, const Operand *OpSrc1, |
| 307 CondARM32::Cond Cond); | 307 CondARM32::Cond Cond); |
| 308 | 308 |
| 309 void umull(const Operand *OpRdLo, const Operand *OpRdHi, const Operand *OpRn, | 309 void umull(const Operand *OpRdLo, const Operand *OpRdHi, const Operand *OpRn, |
| 310 const Operand *OpRm, CondARM32::Cond Cond); | 310 const Operand *OpRm, CondARM32::Cond Cond); |
| 311 | 311 |
| 312 // Implements uxtb/uxth depending on type of OpSrc0. | 312 // Implements uxtb/uxth depending on type of OpSrc0. |
| 313 void uxt(const Operand *OpRd, const Operand *OpSrc0, CondARM32::Cond Cond); | 313 void uxt(const Operand *OpRd, const Operand *OpSrc0, CondARM32::Cond Cond); |
| 314 | 314 |
| 315 void vabss(const Operand *OpSd, const Operand *OpSm, CondARM32::Cond Cond); |
| 316 |
| 317 void vabsd(const Operand *OpDd, const Operand *OpDm, CondARM32::Cond Cond); |
| 318 |
| 315 void vaddd(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, | 319 void vaddd(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, |
| 316 CondARM32::Cond Cond); | 320 CondARM32::Cond Cond); |
| 317 | 321 |
| 318 void vadds(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, | 322 void vadds(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, |
| 319 CondARM32::Cond Cond); | 323 CondARM32::Cond Cond); |
| 320 | 324 |
| 321 // Integer vector add. | 325 // Integer vector add. |
| 322 void vaddqi(Type ElmtTy, const Operand *OpQd, const Operand *OpQm, | 326 void vaddqi(Type ElmtTy, const Operand *OpQd, const Operand *OpQm, |
| 323 const Operand *OpQn); | 327 const Operand *OpQn); |
| 324 | 328 |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 654 | 658 |
| 655 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, | 659 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, |
| 656 const Operand *OpSn, const Operand *OpSm, | 660 const Operand *OpSn, const Operand *OpSm, |
| 657 const char *InstName); | 661 const char *InstName); |
| 658 }; | 662 }; |
| 659 | 663 |
| 660 } // end of namespace ARM32 | 664 } // end of namespace ARM32 |
| 661 } // end of namespace Ice | 665 } // end of namespace Ice |
| 662 | 666 |
| 663 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H | 667 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H |
| OLD | NEW |