blob: 3a9f8b194d3cda1deeb98579eac17ea94d05b594 [file] [log] [blame]
Jim Grosbach31c24bf2009-11-07 22:00:39 +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
17#include "llvm/Target/TargetInstrInfo.h"
18#include "ARM.h"
19#include "ARMInstrInfo.h"
20#include "Thumb2RegisterInfo.h"
21
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
David Goodwin334c2642009-07-08 16:09:28 +000031 // 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 Cheng86050dc2010-06-18 23:09:54 +000035 void ReplaceTailWithBranchTo(MachineBasicBlock::iterator Tail,
36 MachineBasicBlock *NewDest) const;
37
Evan Cheng4d54e5b2010-06-22 01:18:16 +000038 bool isLegalToSplitMBBAt(MachineBasicBlock &MBB,
39 MachineBasicBlock::iterator MBBI) const;
40
Evan Cheng13151432010-06-25 22:42:03 +000041 bool isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumInstrs) const;
42
43 bool isProfitableToIfCvt(MachineBasicBlock &TMBB, unsigned NumTInstrs,
44 MachineBasicBlock &FMBB, unsigned NumFInstrs) const;
45
Jakob Stoklund Olesenac273662010-07-11 06:33:54 +000046 void copyPhysReg(MachineBasicBlock &MBB,
47 MachineBasicBlock::iterator I, DebugLoc DL,
48 unsigned DestReg, unsigned SrcReg,
49 bool KillSrc) const;
Anton Korobeynikovb8e9ac82009-07-16 23:26:06 +000050
Evan Cheng5732ca02009-07-27 03:14:20 +000051 void storeRegToStackSlot(MachineBasicBlock &MBB,
52 MachineBasicBlock::iterator MBBI,
53 unsigned SrcReg, bool isKill, int FrameIndex,
Evan Cheng746ad692010-05-06 19:06:44 +000054 const TargetRegisterClass *RC,
55 const TargetRegisterInfo *TRI) const;
Evan Cheng5732ca02009-07-27 03:14:20 +000056
57 void loadRegFromStackSlot(MachineBasicBlock &MBB,
58 MachineBasicBlock::iterator MBBI,
59 unsigned DestReg, int FrameIndex,
Evan Cheng746ad692010-05-06 19:06:44 +000060 const TargetRegisterClass *RC,
61 const TargetRegisterInfo *TRI) const;
Evan Cheng5732ca02009-07-27 03:14:20 +000062
Evan Cheng68fc2da2010-06-09 19:26:01 +000063 /// scheduleTwoAddrSource - Schedule the copy / re-mat of the source of the
64 /// two-addrss instruction inserted by two-address pass.
65 void scheduleTwoAddrSource(MachineInstr *SrcMI, MachineInstr *UseMI,
66 const TargetRegisterInfo &TRI) const;
67
David Goodwinb50ea5c2009-07-02 22:18:33 +000068 /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
69 /// such, whenever a client has an instance of instruction info, it should
70 /// always be able to get register info as well (through this method).
71 ///
72 const Thumb2RegisterInfo &getRegisterInfo() const { return RI; }
Evan Cheng86050dc2010-06-18 23:09:54 +000073
74 ScheduleHazardRecognizer *
75 CreateTargetPostRAHazardRecognizer(const InstrItineraryData &II) const;
David Goodwinb50ea5c2009-07-02 22:18:33 +000076};
Evan Cheng4d54e5b2010-06-22 01:18:16 +000077
78/// getITInstrPredicate - Valid only in Thumb2 mode. This function is identical
79/// to llvm::getInstrPredicate except it returns AL for conditional branch
80/// instructions which are "predicated", but are not in IT blocks.
81ARMCC::CondCodes getITInstrPredicate(const MachineInstr *MI, unsigned &PredReg);
82
83
David Goodwinb50ea5c2009-07-02 22:18:33 +000084}
85
86#endif // THUMB2INSTRUCTIONINFO_H