Jia Liu | 31d157a | 2012-02-18 12:03:15 +0000 | [diff] [blame] | 1 | //===-- Thumb1InstrInfo.h - Thumb-1 Instruction Information -----*- C++ -*-===// |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file contains the Thumb-1 implementation of the TargetInstrInfo class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef THUMB1INSTRUCTIONINFO_H |
| 15 | #define THUMB1INSTRUCTIONINFO_H |
| 16 | |
| 17 | #include "llvm/Target/TargetInstrInfo.h" |
| 18 | #include "ARM.h" |
| 19 | #include "ARMInstrInfo.h" |
| 20 | #include "Thumb1RegisterInfo.h" |
| 21 | |
| 22 | namespace llvm { |
| 23 | class ARMSubtarget; |
| 24 | |
| 25 | class Thumb1InstrInfo : public ARMBaseInstrInfo { |
| 26 | Thumb1RegisterInfo RI; |
| 27 | public: |
| 28 | explicit Thumb1InstrInfo(const ARMSubtarget &STI); |
| 29 | |
Jim Grosbach | c01810e | 2012-02-28 23:53:30 +0000 | [diff] [blame^] | 30 | /// getNoopForMachoTarget - Return the noop instruction to use for a noop. |
| 31 | void getNoopForMachoTarget(MCInst &NopInst) const; |
| 32 | |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 33 | // Return the non-pre/post incrementing version of 'Opc'. Return 0 |
| 34 | // if there is not such an opcode. |
| 35 | unsigned getUnindexedOpcode(unsigned Opc) const; |
| 36 | |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 37 | /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As |
| 38 | /// such, whenever a client has an instance of instruction info, it should |
| 39 | /// always be able to get register info as well (through this method). |
| 40 | /// |
| 41 | const Thumb1RegisterInfo &getRegisterInfo() const { return RI; } |
| 42 | |
Jakob Stoklund Olesen | ac27366 | 2010-07-11 06:33:54 +0000 | [diff] [blame] | 43 | void copyPhysReg(MachineBasicBlock &MBB, |
| 44 | MachineBasicBlock::iterator I, DebugLoc DL, |
| 45 | unsigned DestReg, unsigned SrcReg, |
| 46 | bool KillSrc) const; |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 47 | void storeRegToStackSlot(MachineBasicBlock &MBB, |
Eric Christopher | 00ed59a | 2010-10-15 22:49:28 +0000 | [diff] [blame] | 48 | MachineBasicBlock::iterator MBBI, |
| 49 | unsigned SrcReg, bool isKill, int FrameIndex, |
Evan Cheng | 746ad69 | 2010-05-06 19:06:44 +0000 | [diff] [blame] | 50 | const TargetRegisterClass *RC, |
| 51 | const TargetRegisterInfo *TRI) const; |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 52 | |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 53 | void loadRegFromStackSlot(MachineBasicBlock &MBB, |
Eric Christopher | 00ed59a | 2010-10-15 22:49:28 +0000 | [diff] [blame] | 54 | MachineBasicBlock::iterator MBBI, |
| 55 | unsigned DestReg, int FrameIndex, |
Evan Cheng | 746ad69 | 2010-05-06 19:06:44 +0000 | [diff] [blame] | 56 | const TargetRegisterClass *RC, |
| 57 | const TargetRegisterInfo *TRI) const; |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 58 | |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 59 | }; |
| 60 | } |
| 61 | |
| 62 | #endif // THUMB1INSTRUCTIONINFO_H |