| 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 CondARM32::Cond Cond, const TargetLowering *Lowering) { | 380 CondARM32::Cond Cond, const TargetLowering *Lowering) { |
| 381 const TargetInfo TInfo(Lowering); | 381 const TargetInfo TInfo(Lowering); |
| 382 vldrs(OpSd, OpAddress, Cond, TInfo); | 382 vldrs(OpSd, OpAddress, Cond, TInfo); |
| 383 } | 383 } |
| 384 | 384 |
| 385 void vmovd(const Operand *OpDn, const OperandARM32FlexFpImm *OpFpImm, | 385 void vmovd(const Operand *OpDn, const OperandARM32FlexFpImm *OpFpImm, |
| 386 CondARM32::Cond Cond); | 386 CondARM32::Cond Cond); |
| 387 | 387 |
| 388 void vmovdd(const Operand *OpDd, const Operand *OpDm, CondARM32::Cond Cond); | 388 void vmovdd(const Operand *OpDd, const Operand *OpDm, CondARM32::Cond Cond); |
| 389 | 389 |
| 390 void vmovrs(const Operand *OpRt, const Operand *OpSn, CondARM32::Cond Cond); |
| 391 |
| 390 void vmovs(const Operand *OpSn, const OperandARM32FlexFpImm *OpFpImm, | 392 void vmovs(const Operand *OpSn, const OperandARM32FlexFpImm *OpFpImm, |
| 391 CondARM32::Cond Cond); | 393 CondARM32::Cond Cond); |
| 392 | 394 |
| 393 void vmovss(const Operand *OpDd, const Operand *OpDm, CondARM32::Cond Cond); | 395 void vmovss(const Operand *OpDd, const Operand *OpDm, CondARM32::Cond Cond); |
| 394 | 396 |
| 395 void vmovsr(const Operand *OpSn, const Operand *OpRt, CondARM32::Cond Cond); | 397 void vmovsr(const Operand *OpSn, const Operand *OpRt, CondARM32::Cond Cond); |
| 396 | 398 |
| 397 void vmlad(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, | 399 void vmlad(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm, |
| 398 CondARM32::Cond Cond); | 400 CondARM32::Cond Cond); |
| 399 | 401 |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 | 610 |
| 609 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, | 611 void emitVFPsss(CondARM32::Cond Cond, IValueT Opcode, const Operand *OpSd, |
| 610 const Operand *OpSn, const Operand *OpSm, | 612 const Operand *OpSn, const Operand *OpSm, |
| 611 const char *InstName); | 613 const char *InstName); |
| 612 }; | 614 }; |
| 613 | 615 |
| 614 } // end of namespace ARM32 | 616 } // end of namespace ARM32 |
| 615 } // end of namespace Ice | 617 } // end of namespace Ice |
| 616 | 618 |
| 617 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H | 619 #endif // SUBZERO_SRC_ICEASSEMBLERARM32_H |
| OLD | NEW |