| 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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 void vadds(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, | 318 void vadds(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, |
| 319 CondARM32::Cond Cond); | 319 CondARM32::Cond Cond); |
| 320 | 320 |
| 321 // Integer vector add. | 321 // Integer vector add. |
| 322 void vaddqi(Type ElmtTy, const Operand *OpQd, const Operand *OpQm, | 322 void vaddqi(Type ElmtTy, const Operand *OpQd, const Operand *OpQm, |
| 323 const Operand *OpQn); | 323 const Operand *OpQn); |
| 324 | 324 |
| 325 // Float vector add. | 325 // Float vector add. |
| 326 void vaddqf(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn); | 326 void vaddqf(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn); |
| 327 | 327 |
| 328 void vandq(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn); |
| 329 |
| 328 void vcmpd(const Operand *OpDd, const Operand *OpDm, CondARM32::Cond cond); | 330 void vcmpd(const Operand *OpDd, const Operand *OpDm, CondARM32::Cond cond); |
| 329 | 331 |
| 330 // Second argument of compare is zero (+0.0). | 332 // Second argument of compare is zero (+0.0). |
| 331 void vcmpdz(const Operand *OpDd, CondARM32::Cond cond); | 333 void vcmpdz(const Operand *OpDd, CondARM32::Cond cond); |
| 332 | 334 |
| 333 void vcmps(const Operand *OpSd, const Operand *OpSm, CondARM32::Cond cond); | 335 void vcmps(const Operand *OpSd, const Operand *OpSm, CondARM32::Cond cond); |
| 334 | 336 |
| 335 // Second argument of compare is zero (+0.0). | 337 // Second argument of compare is zero (+0.0). |
| 336 void vcmpsz(const Operand *OpSd, CondARM32::Cond cond); | 338 void vcmpsz(const Operand *OpSd, CondARM32::Cond cond); |
| 337 | 339 |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 647 | 649 |
| 648 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, | 650 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, |
| 649 const Operand *OpSn, const Operand *OpSm, | 651 const Operand *OpSn, const Operand *OpSm, |
| 650 const char *InstName); | 652 const char *InstName); |
| 651 }; | 653 }; |
| 652 | 654 |
| 653 } // end of namespace ARM32 | 655 } // end of namespace ARM32 |
| 654 } // end of namespace Ice | 656 } // end of namespace Ice |
| 655 | 657 |
| 656 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H | 658 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H |
| OLD | NEW |