Jim Grosbach | 31c24bf | 2009-11-07 22:00:39 +0000 | [diff] [blame] | 1 | //===- Thumb2InstrInfo.h - Thumb-2 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-2 implementation of the TargetInstrInfo class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef THUMB2INSTRUCTIONINFO_H |
| 15 | #define THUMB2INSTRUCTIONINFO_H |
| 16 | |
| 17 | #include "llvm/Target/TargetInstrInfo.h" |
| 18 | #include "ARM.h" |
| 19 | #include "ARMInstrInfo.h" |
| 20 | #include "Thumb2RegisterInfo.h" |
| 21 | |
| 22 | namespace llvm { |
Evan Cheng | 86050dc | 2010-06-18 23:09:54 +0000 | [diff] [blame^] | 23 | class ARMSubtarget; |
| 24 | class ScheduleHazardRecognizer; |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 25 | |
| 26 | class Thumb2InstrInfo : public ARMBaseInstrInfo { |
| 27 | Thumb2RegisterInfo RI; |
| 28 | public: |
| 29 | explicit Thumb2InstrInfo(const ARMSubtarget &STI); |
| 30 | |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 31 | // Return the non-pre/post incrementing version of 'Opc'. Return 0 |
| 32 | // if there is not such an opcode. |
| 33 | unsigned getUnindexedOpcode(unsigned Opc) const; |
| 34 | |
Evan Cheng | 86050dc | 2010-06-18 23:09:54 +0000 | [diff] [blame^] | 35 | void ReplaceTailWithBranchTo(MachineBasicBlock::iterator Tail, |
| 36 | MachineBasicBlock *NewDest) const; |
| 37 | |
Anton Korobeynikov | b8e9ac8 | 2009-07-16 23:26:06 +0000 | [diff] [blame] | 38 | bool copyRegToReg(MachineBasicBlock &MBB, |
| 39 | MachineBasicBlock::iterator I, |
| 40 | unsigned DestReg, unsigned SrcReg, |
| 41 | const TargetRegisterClass *DestRC, |
Dan Gohman | 34dcc6f | 2010-05-06 20:33:48 +0000 | [diff] [blame] | 42 | const TargetRegisterClass *SrcRC, |
| 43 | DebugLoc DL) const; |
Anton Korobeynikov | b8e9ac8 | 2009-07-16 23:26:06 +0000 | [diff] [blame] | 44 | |
Evan Cheng | 5732ca0 | 2009-07-27 03:14:20 +0000 | [diff] [blame] | 45 | void storeRegToStackSlot(MachineBasicBlock &MBB, |
| 46 | MachineBasicBlock::iterator MBBI, |
| 47 | unsigned SrcReg, bool isKill, int FrameIndex, |
Evan Cheng | 746ad69 | 2010-05-06 19:06:44 +0000 | [diff] [blame] | 48 | const TargetRegisterClass *RC, |
| 49 | const TargetRegisterInfo *TRI) const; |
Evan Cheng | 5732ca0 | 2009-07-27 03:14:20 +0000 | [diff] [blame] | 50 | |
| 51 | void loadRegFromStackSlot(MachineBasicBlock &MBB, |
| 52 | MachineBasicBlock::iterator MBBI, |
| 53 | unsigned DestReg, int FrameIndex, |
Evan Cheng | 746ad69 | 2010-05-06 19:06:44 +0000 | [diff] [blame] | 54 | const TargetRegisterClass *RC, |
| 55 | const TargetRegisterInfo *TRI) const; |
Evan Cheng | 5732ca0 | 2009-07-27 03:14:20 +0000 | [diff] [blame] | 56 | |
Evan Cheng | 68fc2da | 2010-06-09 19:26:01 +0000 | [diff] [blame] | 57 | /// scheduleTwoAddrSource - Schedule the copy / re-mat of the source of the |
| 58 | /// two-addrss instruction inserted by two-address pass. |
| 59 | void scheduleTwoAddrSource(MachineInstr *SrcMI, MachineInstr *UseMI, |
| 60 | const TargetRegisterInfo &TRI) const; |
| 61 | |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 62 | /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As |
| 63 | /// such, whenever a client has an instance of instruction info, it should |
| 64 | /// always be able to get register info as well (through this method). |
| 65 | /// |
| 66 | const Thumb2RegisterInfo &getRegisterInfo() const { return RI; } |
Evan Cheng | 86050dc | 2010-06-18 23:09:54 +0000 | [diff] [blame^] | 67 | |
| 68 | ScheduleHazardRecognizer * |
| 69 | CreateTargetPostRAHazardRecognizer(const InstrItineraryData &II) const; |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 70 | }; |
| 71 | } |
| 72 | |
| 73 | #endif // THUMB2INSTRUCTIONINFO_H |