Rafael Espindola | 7bc59bc | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 1 | //===- ARMInstrInfo.h - ARM Instruction Information --------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by the "Instituto Nokia de Tecnologia" and |
| 6 | // is distributed under the University of Illinois Open Source |
| 7 | // License. See LICENSE.TXT for details. |
| 8 | // |
| 9 | //===----------------------------------------------------------------------===// |
| 10 | // |
| 11 | // This file contains the ARM implementation of the TargetInstrInfo class. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #ifndef ARMINSTRUCTIONINFO_H |
| 16 | #define ARMINSTRUCTIONINFO_H |
| 17 | |
| 18 | #include "llvm/Target/TargetInstrInfo.h" |
| 19 | #include "ARMRegisterInfo.h" |
| 20 | |
| 21 | namespace llvm { |
| 22 | |
| 23 | class ARMInstrInfo : public TargetInstrInfo { |
| 24 | const ARMRegisterInfo RI; |
| 25 | public: |
| 26 | ARMInstrInfo(); |
| 27 | |
| 28 | /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As |
| 29 | /// such, whenever a client has an instance of instruction info, it should |
| 30 | /// always be able to get register info as well (through this method). |
| 31 | /// |
| 32 | virtual const MRegisterInfo &getRegisterInfo() const { return RI; } |
| 33 | |
| 34 | /// Return true if the instruction is a register to register move and |
| 35 | /// leave the source and dest operands in the passed parameters. |
| 36 | /// |
| 37 | virtual bool isMoveInstr(const MachineInstr &MI, |
| 38 | unsigned &SrcReg, unsigned &DstReg) const; |
Rafael Espindola | 7bc59bc | 2006-05-14 22:18:28 +0000 | [diff] [blame] | 39 | }; |
| 40 | |
| 41 | } |
| 42 | |
| 43 | #endif |