| 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 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 | 336 |
| 337 // Integer vector add. | 337 // Integer vector add. |
| 338 void vaddqi(Type ElmtTy, const Operand *OpQd, const Operand *OpQm, | 338 void vaddqi(Type ElmtTy, const Operand *OpQd, const Operand *OpQm, |
| 339 const Operand *OpQn); | 339 const Operand *OpQn); |
| 340 | 340 |
| 341 // Float vector add. | 341 // Float vector add. |
| 342 void vaddqf(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn); | 342 void vaddqf(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn); |
| 343 | 343 |
| 344 void vandq(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn); | 344 void vandq(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn); |
| 345 | 345 |
| 346 void vbslq(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn); |
| 347 |
| 346 void vcmpd(const Operand *OpDd, const Operand *OpDm, CondARM32::Cond cond); | 348 void vcmpd(const Operand *OpDd, const Operand *OpDm, CondARM32::Cond cond); |
| 347 | 349 |
| 348 // Second argument of compare is zero (+0.0). | 350 // Second argument of compare is zero (+0.0). |
| 349 void vcmpdz(const Operand *OpDd, CondARM32::Cond cond); | 351 void vcmpdz(const Operand *OpDd, CondARM32::Cond cond); |
| 350 | 352 |
| 351 void vcmps(const Operand *OpSd, const Operand *OpSm, CondARM32::Cond cond); | 353 void vcmps(const Operand *OpSd, const Operand *OpSm, CondARM32::Cond cond); |
| 352 | 354 |
| 353 // Second argument of compare is zero (+0.0). | 355 // Second argument of compare is zero (+0.0). |
| 354 void vcmpsz(const Operand *OpSd, CondARM32::Cond cond); | 356 void vcmpsz(const Operand *OpSd, CondARM32::Cond cond); |
| 355 | 357 |
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 801 | 803 |
| 802 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, | 804 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, |
| 803 const Operand *OpSn, const Operand *OpSm, | 805 const Operand *OpSn, const Operand *OpSm, |
| 804 const char *InstName); | 806 const char *InstName); |
| 805 }; | 807 }; |
| 806 | 808 |
| 807 } // end of namespace ARM32 | 809 } // end of namespace ARM32 |
| 808 } // end of namespace Ice | 810 } // end of namespace Ice |
| 809 | 811 |
| 810 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H | 812 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H |
| OLD | NEW |