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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
654 | 656 |
655 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, | 657 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, |
656 const Operand *OpSn, const Operand *OpSm, | 658 const Operand *OpSn, const Operand *OpSm, |
657 const char *InstName); | 659 const char *InstName); |
658 }; | 660 }; |
659 | 661 |
660 } // end of namespace ARM32 | 662 } // end of namespace ARM32 |
661 } // end of namespace Ice | 663 } // end of namespace Ice |
662 | 664 |
663 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H | 665 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H |
OLD | NEW |