Fix part 1 of pr4682. PICADD is a 16-bit instruction even in thumb2 mode.
[llvm/avr.git] / lib / Target / ARM / Thumb1RegisterInfo.h
blob05b6ae9cef8c93eb856a9ebc445aab5ad8a2ed05
1 //===- Thumb1RegisterInfo.h - Thumb-1 Register Information Impl ----*- 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-1 implementation of the TargetRegisterInfo class.
12 //===----------------------------------------------------------------------===//
14 #ifndef THUMB1REGISTERINFO_H
15 #define THUMB1REGISTERINFO_H
17 #include "ARM.h"
18 #include "ARMRegisterInfo.h"
19 #include "llvm/Target/TargetRegisterInfo.h"
21 namespace llvm {
22 class ARMSubtarget;
23 class ARMBaseInstrInfo;
24 class Type;
26 struct Thumb1RegisterInfo : public ARMBaseRegisterInfo {
27 public:
28 Thumb1RegisterInfo(const ARMBaseInstrInfo &tii, const ARMSubtarget &STI);
30 /// emitLoadConstPool - Emits a load from constpool to materialize the
31 /// specified immediate.
32 void emitLoadConstPool(MachineBasicBlock &MBB,
33 MachineBasicBlock::iterator &MBBI,
34 DebugLoc dl,
35 unsigned DestReg, unsigned SubIdx, int Val,
36 ARMCC::CondCodes Pred = ARMCC::AL,
37 unsigned PredReg = 0) const;
39 /// Code Generation virtual methods...
40 const TargetRegisterClass *
41 getPhysicalRegisterRegClass(unsigned Reg, MVT VT = MVT::Other) const;
43 bool requiresRegisterScavenging(const MachineFunction &MF) const;
45 bool hasReservedCallFrame(MachineFunction &MF) const;
47 void eliminateCallFramePseudoInstr(MachineFunction &MF,
48 MachineBasicBlock &MBB,
49 MachineBasicBlock::iterator I) const;
51 // rewrite MI to access 'Offset' bytes from the FP. Return the offset that
52 // could not be handled directly in MI.
53 int rewriteFrameIndex(MachineInstr &MI, unsigned FrameRegIdx,
54 unsigned FrameReg, int Offset,
55 unsigned MOVOpc, unsigned ADDriOpc, unsigned SUBriOpc) const;
57 void eliminateFrameIndex(MachineBasicBlock::iterator II,
58 int SPAdj, RegScavenger *RS = NULL) const;
60 void emitPrologue(MachineFunction &MF) const;
61 void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const;
65 #endif // THUMB1REGISTERINFO_H