blob: 44c3d8232aaa0895fc1a6281a8ab99b25f58fb43 [file] [log] [blame]
David Goodwinb50ea5c2009-07-02 22:18:33 +00001//===- Thumb2InstrInfo.h - Thumb-2 Instruction Information ----------*- C++ -*-===//
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
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
34 // Return the opcode that implements 'Op', or 0 if no opcode
35 unsigned getOpcode(ARMII::Op Op) const;
36
37 // Return true if the block does not fall through.
38 bool BlockHasNoFallThrough(const MachineBasicBlock &MBB) const;
39
Anton Korobeynikovb8e9ac82009-07-16 23:26:06 +000040 bool copyRegToReg(MachineBasicBlock &MBB,
41 MachineBasicBlock::iterator I,
42 unsigned DestReg, unsigned SrcReg,
43 const TargetRegisterClass *DestRC,
44 const TargetRegisterClass *SrcRC) const;
45
Evan Cheng5732ca02009-07-27 03:14:20 +000046 void storeRegToStackSlot(MachineBasicBlock &MBB,
47 MachineBasicBlock::iterator MBBI,
48 unsigned SrcReg, bool isKill, int FrameIndex,
49 const TargetRegisterClass *RC) const;
50
51 void loadRegFromStackSlot(MachineBasicBlock &MBB,
52 MachineBasicBlock::iterator MBBI,
53 unsigned DestReg, int FrameIndex,
54 const TargetRegisterClass *RC) const;
55
David Goodwinb50ea5c2009-07-02 22:18:33 +000056 /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
57 /// such, whenever a client has an instance of instruction info, it should
58 /// always be able to get register info as well (through this method).
59 ///
60 const Thumb2RegisterInfo &getRegisterInfo() const { return RI; }
David Goodwinb50ea5c2009-07-02 22:18:33 +000061};
62}
63
64#endif // THUMB2INSTRUCTIONINFO_H