| 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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 void vcmpd(const Operand *OpDd, const Operand *OpDm, CondARM32::Cond cond); | 321 void vcmpd(const Operand *OpDd, const Operand *OpDm, CondARM32::Cond cond); |
| 322 | 322 |
| 323 // Second argument of compare is zero (+0.0). | 323 // Second argument of compare is zero (+0.0). |
| 324 void vcmpdz(const Operand *OpDd, CondARM32::Cond cond); | 324 void vcmpdz(const Operand *OpDd, CondARM32::Cond cond); |
| 325 | 325 |
| 326 void vcmps(const Operand *OpSd, const Operand *OpSm, CondARM32::Cond cond); | 326 void vcmps(const Operand *OpSd, const Operand *OpSm, CondARM32::Cond cond); |
| 327 | 327 |
| 328 // Second argument of compare is zero (+0.0). | 328 // Second argument of compare is zero (+0.0). |
| 329 void vcmpsz(const Operand *OpSd, CondARM32::Cond cond); | 329 void vcmpsz(const Operand *OpSd, CondARM32::Cond cond); |
| 330 | 330 |
| 331 void vcvtds(const Operand *OpDd, const Operand *OpSm, CondARM32::Cond Cond); |
| 332 |
| 333 // vcvt<c>.S32.F32 |
| 334 void vcvtis(const Operand *OpSd, const Operand *OpSm, CondARM32::Cond Cond); |
| 335 |
| 331 void vcvtsd(const Operand *OpSd, const Operand *OpDm, CondARM32::Cond Cond); | 336 void vcvtsd(const Operand *OpSd, const Operand *OpDm, CondARM32::Cond Cond); |
| 332 | 337 |
| 333 void vcvtds(const Operand *OpDd, const Operand *OpSm, CondARM32::Cond Cond); | |
| 334 | |
| 335 void vdivd(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, | 338 void vdivd(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, |
| 336 CondARM32::Cond Cond); | 339 CondARM32::Cond Cond); |
| 337 | 340 |
| 338 void vdivs(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, | 341 void vdivs(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, |
| 339 CondARM32::Cond Cond); | 342 CondARM32::Cond Cond); |
| 340 | 343 |
| 341 void veord(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm); | 344 void veord(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm); |
| 342 | 345 |
| 343 void vldrd(const Operand *OpDd, const Operand *OpAddress, | 346 void vldrd(const Operand *OpDd, const Operand *OpAddress, |
| 344 CondARM32::Cond Cond, const TargetInfo &TInfo); | 347 CondARM32::Cond Cond, const TargetInfo &TInfo); |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 552 | 555 |
| 553 // Emit VFP instruction with 3 S registers. | 556 // Emit VFP instruction with 3 S registers. |
| 554 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, IValueT Sd, IValueT Sn, | 557 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, IValueT Sd, IValueT Sn, |
| 555 IValueT Sm); | 558 IValueT Sm); |
| 556 }; | 559 }; |
| 557 | 560 |
| 558 } // end of namespace ARM32 | 561 } // end of namespace ARM32 |
| 559 } // end of namespace Ice | 562 } // end of namespace Ice |
| 560 | 563 |
| 561 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H | 564 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H |
| OLD | NEW |