| 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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 void vcvtsd(const Operand *OpSd, const Operand *OpDm, CondARM32::Cond Cond); | 331 void vcvtsd(const Operand *OpSd, const Operand *OpDm, CondARM32::Cond Cond); |
| 332 | 332 |
| 333 void vcvtds(const Operand *OpDd, const Operand *OpSm, CondARM32::Cond Cond); | 333 void vcvtds(const Operand *OpDd, const Operand *OpSm, CondARM32::Cond Cond); |
| 334 | 334 |
| 335 void vdivd(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, | 335 void vdivd(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, |
| 336 CondARM32::Cond Cond); | 336 CondARM32::Cond Cond); |
| 337 | 337 |
| 338 void vdivs(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, | 338 void vdivs(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, |
| 339 CondARM32::Cond Cond); | 339 CondARM32::Cond Cond); |
| 340 | 340 |
| 341 void vmovsr(const Operand *OpSn, const Operand *OpRt, CondARM32::Cond Cond); |
| 342 |
| 341 void vmuld(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, | 343 void vmuld(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, |
| 342 CondARM32::Cond Cond); | 344 CondARM32::Cond Cond); |
| 343 | 345 |
| 344 void vmuls(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, | 346 void vmuls(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, |
| 345 CondARM32::Cond Cond); | 347 CondARM32::Cond Cond); |
| 346 | 348 |
| 347 void vpop(const Variable *OpBaseReg, SizeT NumConsecRegs, | 349 void vpop(const Variable *OpBaseReg, SizeT NumConsecRegs, |
| 348 CondARM32::Cond Cond); | 350 CondARM32::Cond Cond); |
| 349 | 351 |
| 350 void vpush(const Variable *OpBaseReg, SizeT NumConsecRegs, | 352 void vpush(const Variable *OpBaseReg, SizeT NumConsecRegs, |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 | 516 |
| 515 // Emit VFP instruction with 3 S registers. | 517 // Emit VFP instruction with 3 S registers. |
| 516 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, IValueT Sd, IValueT Sn, | 518 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, IValueT Sd, IValueT Sn, |
| 517 IValueT Sm); | 519 IValueT Sm); |
| 518 }; | 520 }; |
| 519 | 521 |
| 520 } // end of namespace ARM32 | 522 } // end of namespace ARM32 |
| 521 } // end of namespace Ice | 523 } // end of namespace Ice |
| 522 | 524 |
| 523 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H | 525 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H |
| OLD | NEW |