| 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 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 | 323 |
| 324 void vadds(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, | 324 void vadds(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, |
| 325 CondARM32::Cond Cond); | 325 CondARM32::Cond Cond); |
| 326 | 326 |
| 327 void vdivd(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, | 327 void vdivd(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, |
| 328 CondARM32::Cond Cond); | 328 CondARM32::Cond Cond); |
| 329 | 329 |
| 330 void vdivs(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, | 330 void vdivs(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, |
| 331 CondARM32::Cond Cond); | 331 CondARM32::Cond Cond); |
| 332 | 332 |
| 333 void vmuld(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, |
| 334 CondARM32::Cond Cond); |
| 335 |
| 336 void vmuls(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, |
| 337 CondARM32::Cond Cond); |
| 338 |
| 333 void vpop(const Variable *OpBaseReg, SizeT NumConsecRegs, | 339 void vpop(const Variable *OpBaseReg, SizeT NumConsecRegs, |
| 334 CondARM32::Cond Cond); | 340 CondARM32::Cond Cond); |
| 335 | 341 |
| 336 void vpush(const Variable *OpBaseReg, SizeT NumConsecRegs, | 342 void vpush(const Variable *OpBaseReg, SizeT NumConsecRegs, |
| 337 CondARM32::Cond Cond); | 343 CondARM32::Cond Cond); |
| 338 | 344 |
| 339 void vsubd(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, | 345 void vsubd(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, |
| 340 CondARM32::Cond Cond); | 346 CondARM32::Cond Cond); |
| 341 | 347 |
| 342 void vsubs(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, | 348 void vsubs(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 | 498 |
| 493 // Emit VFP instruction with 3 S registers. | 499 // Emit VFP instruction with 3 S registers. |
| 494 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, IValueT Sd, IValueT Sn, | 500 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, IValueT Sd, IValueT Sn, |
| 495 IValueT Sm); | 501 IValueT Sm); |
| 496 }; | 502 }; |
| 497 | 503 |
| 498 } // end of namespace ARM32 | 504 } // end of namespace ARM32 |
| 499 } // end of namespace Ice | 505 } // end of namespace Ice |
| 500 | 506 |
| 501 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H | 507 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H |
| OLD | NEW |