blob: 3f233c47868b216c314628cf1a4a958d072ed98b [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 {
23 class ARMSubtarget;
24
25class Thumb2InstrInfo : public ARMBaseInstrInfo {
26 Thumb2RegisterInfo RI;
27public:
28 explicit Thumb2InstrInfo(const ARMSubtarget &STI);
29
David Goodwin334c2642009-07-08 16:09:28 +000030 // Return the non-pre/post incrementing version of 'Opc'. Return 0
31 // if there is not such an opcode.
32 unsigned getUnindexedOpcode(unsigned Opc) const;
33
Anton Korobeynikovb8e9ac82009-07-16 23:26:06 +000034 bool copyRegToReg(MachineBasicBlock &MBB,
35 MachineBasicBlock::iterator I,
36 unsigned DestReg, unsigned SrcReg,
37 const TargetRegisterClass *DestRC,
Dan Gohman34dcc6f2010-05-06 20:33:48 +000038 const TargetRegisterClass *SrcRC,
39 DebugLoc DL) const;
Anton Korobeynikovb8e9ac82009-07-16 23:26:06 +000040
Evan Cheng5732ca02009-07-27 03:14:20 +000041 void storeRegToStackSlot(MachineBasicBlock &MBB,
42 MachineBasicBlock::iterator MBBI,
43 unsigned SrcReg, bool isKill, int FrameIndex,
Evan Cheng746ad692010-05-06 19:06:44 +000044 const TargetRegisterClass *RC,
45 const TargetRegisterInfo *TRI) const;
Evan Cheng5732ca02009-07-27 03:14:20 +000046
47 void loadRegFromStackSlot(MachineBasicBlock &MBB,
48 MachineBasicBlock::iterator MBBI,
49 unsigned DestReg, int FrameIndex,
Evan Cheng746ad692010-05-06 19:06:44 +000050 const TargetRegisterClass *RC,
51 const TargetRegisterInfo *TRI) const;
Evan Cheng5732ca02009-07-27 03:14:20 +000052
Evan Cheng68fc2da2010-06-09 19:26:01 +000053 /// scheduleTwoAddrSource - Schedule the copy / re-mat of the source of the
54 /// two-addrss instruction inserted by two-address pass.
55 void scheduleTwoAddrSource(MachineInstr *SrcMI, MachineInstr *UseMI,
56 const TargetRegisterInfo &TRI) const;
57
David Goodwinb50ea5c2009-07-02 22:18:33 +000058 /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
59 /// such, whenever a client has an instance of instruction info, it should
60 /// always be able to get register info as well (through this method).
61 ///
62 const Thumb2RegisterInfo &getRegisterInfo() const { return RI; }
David Goodwinb50ea5c2009-07-02 22:18:33 +000063};
64}
65
66#endif // THUMB2INSTRUCTIONINFO_H