blob: 1ae2ef12aacba96b704b8a003eb2a2aa45f4ec8f [file] [log] [blame]
Jia Liu31d157a2012-02-18 12:03:15 +00001//===-- Thumb2InstrInfo.h - Thumb-2 Instruction Information -----*- C++ -*-===//
David Goodwinb50ea5c2009-07-02 22:18:33 +00002//
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 Goodwinb50ea5c2009-07-02 22:18:33 +000017#include "ARM.h"
18#include "ARMInstrInfo.h"
19#include "Thumb2RegisterInfo.h"
Craig Topperc1f6f422012-03-17 07:33:42 +000020#include "llvm/Target/TargetInstrInfo.h"
David Goodwinb50ea5c2009-07-02 22:18:33 +000021
22namespace llvm {
Evan Cheng86050dc2010-06-18 23:09:54 +000023class ARMSubtarget;
24class ScheduleHazardRecognizer;
David Goodwinb50ea5c2009-07-02 22:18:33 +000025
26class Thumb2InstrInfo : public ARMBaseInstrInfo {
27 Thumb2RegisterInfo RI;
28public:
29 explicit Thumb2InstrInfo(const ARMSubtarget &STI);
30
Jim Grosbachc01810e2012-02-28 23:53:30 +000031 /// getNoopForMachoTarget - Return the noop instruction to use for a noop.
32 void getNoopForMachoTarget(MCInst &NopInst) const;
33
David Goodwin334c2642009-07-08 16:09:28 +000034 // Return the non-pre/post incrementing version of 'Opc'. Return 0
35 // if there is not such an opcode.
36 unsigned getUnindexedOpcode(unsigned Opc) const;
37
Evan Cheng86050dc2010-06-18 23:09:54 +000038 void ReplaceTailWithBranchTo(MachineBasicBlock::iterator Tail,
39 MachineBasicBlock *NewDest) const;
40
Evan Cheng4d54e5b2010-06-22 01:18:16 +000041 bool isLegalToSplitMBBAt(MachineBasicBlock &MBB,
42 MachineBasicBlock::iterator MBBI) const;
43
Jakob Stoklund Olesenac273662010-07-11 06:33:54 +000044 void copyPhysReg(MachineBasicBlock &MBB,
45 MachineBasicBlock::iterator I, DebugLoc DL,
46 unsigned DestReg, unsigned SrcReg,
47 bool KillSrc) const;
Anton Korobeynikovb8e9ac82009-07-16 23:26:06 +000048
Evan Cheng5732ca02009-07-27 03:14:20 +000049 void storeRegToStackSlot(MachineBasicBlock &MBB,
50 MachineBasicBlock::iterator MBBI,
51 unsigned SrcReg, bool isKill, int FrameIndex,
Evan Cheng746ad692010-05-06 19:06:44 +000052 const TargetRegisterClass *RC,
53 const TargetRegisterInfo *TRI) const;
Evan Cheng5732ca02009-07-27 03:14:20 +000054
55 void loadRegFromStackSlot(MachineBasicBlock &MBB,
56 MachineBasicBlock::iterator MBBI,
57 unsigned DestReg, int FrameIndex,
Evan Cheng746ad692010-05-06 19:06:44 +000058 const TargetRegisterClass *RC,
59 const TargetRegisterInfo *TRI) const;
Evan Cheng5732ca02009-07-27 03:14:20 +000060
Evan Cheng68fc2da2010-06-09 19:26:01 +000061 /// scheduleTwoAddrSource - Schedule the copy / re-mat of the source of the
62 /// two-addrss instruction inserted by two-address pass.
63 void scheduleTwoAddrSource(MachineInstr *SrcMI, MachineInstr *UseMI,
64 const TargetRegisterInfo &TRI) const;
65
David Goodwinb50ea5c2009-07-02 22:18:33 +000066 /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
67 /// such, whenever a client has an instance of instruction info, it should
68 /// always be able to get register info as well (through this method).
69 ///
70 const Thumb2RegisterInfo &getRegisterInfo() const { return RI; }
David Goodwinb50ea5c2009-07-02 22:18:33 +000071};
Evan Cheng4d54e5b2010-06-22 01:18:16 +000072
73/// getITInstrPredicate - Valid only in Thumb2 mode. This function is identical
74/// to llvm::getInstrPredicate except it returns AL for conditional branch
75/// instructions which are "predicated", but are not in IT blocks.
76ARMCC::CondCodes getITInstrPredicate(const MachineInstr *MI, unsigned &PredReg);
77
78
David Goodwinb50ea5c2009-07-02 22:18:33 +000079}
80
81#endif // THUMB2INSTRUCTIONINFO_H