Jia Liu | 31d157a | 2012-02-18 12:03:15 +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 | |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 17 | #include "ARM.h" |
Craig Topper | acf2077 | 2012-03-25 23:49:58 +0000 | [diff] [blame] | 18 | #include "ARMBaseInstrInfo.h" |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 19 | #include "Thumb2RegisterInfo.h" |
| 20 | |
| 21 | namespace llvm { |
Evan Cheng | 86050dc | 2010-06-18 23:09:54 +0000 | [diff] [blame] | 22 | class ARMSubtarget; |
| 23 | class ScheduleHazardRecognizer; |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 24 | |
| 25 | class Thumb2InstrInfo : public ARMBaseInstrInfo { |
| 26 | Thumb2RegisterInfo RI; |
| 27 | public: |
| 28 | explicit Thumb2InstrInfo(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 | |
Evan Cheng | 86050dc | 2010-06-18 23:09:54 +0000 | [diff] [blame] | 37 | void ReplaceTailWithBranchTo(MachineBasicBlock::iterator Tail, |
| 38 | MachineBasicBlock *NewDest) const; |
| 39 | |
Evan Cheng | 4d54e5b | 2010-06-22 01:18:16 +0000 | [diff] [blame] | 40 | bool isLegalToSplitMBBAt(MachineBasicBlock &MBB, |
| 41 | MachineBasicBlock::iterator MBBI) const; |
| 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; |
Anton Korobeynikov | b8e9ac8 | 2009-07-16 23:26:06 +0000 | [diff] [blame] | 47 | |
Evan Cheng | 5732ca0 | 2009-07-27 03:14:20 +0000 | [diff] [blame] | 48 | void storeRegToStackSlot(MachineBasicBlock &MBB, |
| 49 | MachineBasicBlock::iterator MBBI, |
| 50 | unsigned SrcReg, bool isKill, int FrameIndex, |
Evan Cheng | 746ad69 | 2010-05-06 19:06:44 +0000 | [diff] [blame] | 51 | const TargetRegisterClass *RC, |
| 52 | const TargetRegisterInfo *TRI) const; |
Evan Cheng | 5732ca0 | 2009-07-27 03:14:20 +0000 | [diff] [blame] | 53 | |
| 54 | void loadRegFromStackSlot(MachineBasicBlock &MBB, |
| 55 | MachineBasicBlock::iterator MBBI, |
| 56 | unsigned DestReg, int FrameIndex, |
Evan Cheng | 746ad69 | 2010-05-06 19:06:44 +0000 | [diff] [blame] | 57 | const TargetRegisterClass *RC, |
| 58 | const TargetRegisterInfo *TRI) const; |
Evan Cheng | 5732ca0 | 2009-07-27 03:14:20 +0000 | [diff] [blame] | 59 | |
Evan Cheng | 68fc2da | 2010-06-09 19:26:01 +0000 | [diff] [blame] | 60 | /// scheduleTwoAddrSource - Schedule the copy / re-mat of the source of the |
| 61 | /// two-addrss instruction inserted by two-address pass. |
| 62 | void scheduleTwoAddrSource(MachineInstr *SrcMI, MachineInstr *UseMI, |
| 63 | const TargetRegisterInfo &TRI) const; |
| 64 | |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 65 | /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As |
| 66 | /// such, whenever a client has an instance of instruction info, it should |
| 67 | /// always be able to get register info as well (through this method). |
| 68 | /// |
| 69 | const Thumb2RegisterInfo &getRegisterInfo() const { return RI; } |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 70 | }; |
Evan Cheng | 4d54e5b | 2010-06-22 01:18:16 +0000 | [diff] [blame] | 71 | |
| 72 | /// getITInstrPredicate - Valid only in Thumb2 mode. This function is identical |
| 73 | /// to llvm::getInstrPredicate except it returns AL for conditional branch |
| 74 | /// instructions which are "predicated", but are not in IT blocks. |
| 75 | ARMCC::CondCodes getITInstrPredicate(const MachineInstr *MI, unsigned &PredReg); |
| 76 | |
| 77 | |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | #endif // THUMB2INSTRUCTIONINFO_H |