blob: 4d97626925d1b63541f36e5bd0e8e969ea05cd8c [file] [log] [blame]
Jia Liu31d157a2012-02-18 12:03:15 +00001//===-- Thumb1InstrInfo.h - Thumb-1 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-1 implementation of the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef THUMB1INSTRUCTIONINFO_H
15#define THUMB1INSTRUCTIONINFO_H
16
17#include "llvm/Target/TargetInstrInfo.h"
18#include "ARM.h"
19#include "ARMInstrInfo.h"
20#include "Thumb1RegisterInfo.h"
21
22namespace llvm {
23 class ARMSubtarget;
24
25class Thumb1InstrInfo : public ARMBaseInstrInfo {
26 Thumb1RegisterInfo RI;
27public:
28 explicit Thumb1InstrInfo(const ARMSubtarget &STI);
29
Jim Grosbachc01810e2012-02-28 23:53:30 +000030 /// getNoopForMachoTarget - Return the noop instruction to use for a noop.
31 void getNoopForMachoTarget(MCInst &NopInst) const;
32
David Goodwin334c2642009-07-08 16:09:28 +000033 // 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
David Goodwinb50ea5c2009-07-02 22:18:33 +000037 /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
38 /// such, whenever a client has an instance of instruction info, it should
39 /// always be able to get register info as well (through this method).
40 ///
41 const Thumb1RegisterInfo &getRegisterInfo() const { return RI; }
42
Jakob Stoklund Olesenac273662010-07-11 06:33:54 +000043 void copyPhysReg(MachineBasicBlock &MBB,
44 MachineBasicBlock::iterator I, DebugLoc DL,
45 unsigned DestReg, unsigned SrcReg,
46 bool KillSrc) const;
David Goodwinb50ea5c2009-07-02 22:18:33 +000047 void storeRegToStackSlot(MachineBasicBlock &MBB,
Eric Christopher00ed59a2010-10-15 22:49:28 +000048 MachineBasicBlock::iterator MBBI,
49 unsigned SrcReg, bool isKill, int FrameIndex,
Evan Cheng746ad692010-05-06 19:06:44 +000050 const TargetRegisterClass *RC,
51 const TargetRegisterInfo *TRI) const;
David Goodwinb50ea5c2009-07-02 22:18:33 +000052
David Goodwinb50ea5c2009-07-02 22:18:33 +000053 void loadRegFromStackSlot(MachineBasicBlock &MBB,
Eric Christopher00ed59a2010-10-15 22:49:28 +000054 MachineBasicBlock::iterator MBBI,
55 unsigned DestReg, int FrameIndex,
Evan Cheng746ad692010-05-06 19:06:44 +000056 const TargetRegisterClass *RC,
57 const TargetRegisterInfo *TRI) const;
David Goodwinb50ea5c2009-07-02 22:18:33 +000058
David Goodwinb50ea5c2009-07-02 22:18:33 +000059};
60}
61
62#endif // THUMB1INSTRUCTIONINFO_H