| 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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 | 428 |
| 429 void vmlss(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, | 429 void vmlss(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, |
| 430 CondARM32::Cond Cond); | 430 CondARM32::Cond Cond); |
| 431 | 431 |
| 432 // Uses APSR_nzcv as register | 432 // Uses APSR_nzcv as register |
| 433 void vmrsAPSR_nzcv(CondARM32::Cond Cond); | 433 void vmrsAPSR_nzcv(CondARM32::Cond Cond); |
| 434 | 434 |
| 435 void vmuld(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, | 435 void vmuld(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, |
| 436 CondARM32::Cond Cond); | 436 CondARM32::Cond Cond); |
| 437 | 437 |
| 438 // Integer vector multiply. |
| 439 void vmulqi(Type ElmtTy, const Operand *OpQd, const Operand *OpQn, |
| 440 const Operand *OpQm); |
| 441 |
| 442 // Float vector multiply. |
| 443 void vmulqf(const Operand *OpQd, const Operand *OpQn, const Operand *OpQm); |
| 444 |
| 438 void vmuls(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, | 445 void vmuls(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, |
| 439 CondARM32::Cond Cond); | 446 CondARM32::Cond Cond); |
| 440 | 447 |
| 441 void vorrq(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn); | 448 void vorrq(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn); |
| 442 | 449 |
| 443 void vpop(const Variable *OpBaseReg, SizeT NumConsecRegs, | 450 void vpop(const Variable *OpBaseReg, SizeT NumConsecRegs, |
| 444 CondARM32::Cond Cond); | 451 CondARM32::Cond Cond); |
| 445 | 452 |
| 446 void vpush(const Variable *OpBaseReg, SizeT NumConsecRegs, | 453 void vpush(const Variable *OpBaseReg, SizeT NumConsecRegs, |
| 447 CondARM32::Cond Cond); | 454 CondARM32::Cond Cond); |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 | 671 |
| 665 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, | 672 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, |
| 666 const Operand *OpSn, const Operand *OpSm, | 673 const Operand *OpSn, const Operand *OpSm, |
| 667 const char *InstName); | 674 const char *InstName); |
| 668 }; | 675 }; |
| 669 | 676 |
| 670 } // end of namespace ARM32 | 677 } // end of namespace ARM32 |
| 671 } // end of namespace Ice | 678 } // end of namespace Ice |
| 672 | 679 |
| 673 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H | 680 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H |
| OLD | NEW |