Chromium Code Reviews| 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 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 426 | 426 |
| 427 void vmlss(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, | 427 void vmlss(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, |
| 428 CondARM32::Cond Cond); | 428 CondARM32::Cond Cond); |
| 429 | 429 |
| 430 // Uses APSR_nzcv as register | 430 // Uses APSR_nzcv as register |
| 431 void vmrsAPSR_nzcv(CondARM32::Cond Cond); | 431 void vmrsAPSR_nzcv(CondARM32::Cond Cond); |
| 432 | 432 |
| 433 void vmuld(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, | 433 void vmuld(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, |
| 434 CondARM32::Cond Cond); | 434 CondARM32::Cond Cond); |
| 435 | 435 |
| 436 // Integer vector multiply. | |
| 437 void vmulqi(Type ElmtTy, const Operand *OpQd, const Operand *OpQn, | |
| 438 const Operand *OpQm); | |
| 439 | |
| 440 // Float vector multiply | |
|
Jim Stichnoth
2016/02/02 23:56:56
Either end this fragment with a period, or remove
Karl
2016/02/03 21:27:32
Done.
| |
| 441 void vmulqf(const Operand *OpQd, const Operand *OpQn, const Operand *OpQm); | |
| 442 | |
| 436 void vmuls(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, | 443 void vmuls(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, |
| 437 CondARM32::Cond Cond); | 444 CondARM32::Cond Cond); |
| 438 | 445 |
| 439 void vorrq(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn); | 446 void vorrq(const Operand *OpQd, const Operand *OpQm, const Operand *OpQn); |
| 440 | 447 |
| 441 void vpop(const Variable *OpBaseReg, SizeT NumConsecRegs, | 448 void vpop(const Variable *OpBaseReg, SizeT NumConsecRegs, |
| 442 CondARM32::Cond Cond); | 449 CondARM32::Cond Cond); |
| 443 | 450 |
| 444 void vpush(const Variable *OpBaseReg, SizeT NumConsecRegs, | 451 void vpush(const Variable *OpBaseReg, SizeT NumConsecRegs, |
| 445 CondARM32::Cond Cond); | 452 CondARM32::Cond Cond); |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 662 | 669 |
| 663 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, | 670 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, |
| 664 const Operand *OpSn, const Operand *OpSm, | 671 const Operand *OpSn, const Operand *OpSm, |
| 665 const char *InstName); | 672 const char *InstName); |
| 666 }; | 673 }; |
| 667 | 674 |
| 668 } // end of namespace ARM32 | 675 } // end of namespace ARM32 |
| 669 } // end of namespace Ice | 676 } // end of namespace Ice |
| 670 | 677 |
| 671 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H | 678 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H |
| OLD | NEW |