Merge isLoadFromStackSlot into one since it behaves the same regardless of sub-target.
[oota-llvm.git] / lib / Target / ARM / Thumb1InstrInfo.h
1 //===- Thumb1InstrInfo.h - Thumb-1 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-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
22 namespace llvm {
23   class ARMSubtarget;
24
25 class Thumb1InstrInfo : public ARMBaseInstrInfo {
26   Thumb1RegisterInfo RI;
27 public:
28   explicit Thumb1InstrInfo(const ARMSubtarget &STI);
29
30   // 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
40   /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info.  As
41   /// such, whenever a client has an instance of instruction info, it should
42   /// always be able to get register info as well (through this method).
43   ///
44   const Thumb1RegisterInfo &getRegisterInfo() const { return RI; }
45
46   bool spillCalleeSavedRegisters(MachineBasicBlock &MBB,
47                                  MachineBasicBlock::iterator MI,
48                                  const std::vector<CalleeSavedInfo> &CSI) const;
49   bool restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
50                                    MachineBasicBlock::iterator MI,
51                                    const std::vector<CalleeSavedInfo> &CSI) const;
52
53   bool copyRegToReg(MachineBasicBlock &MBB,
54                             MachineBasicBlock::iterator I,
55                             unsigned DestReg, unsigned SrcReg,
56                             const TargetRegisterClass *DestRC,
57                             const TargetRegisterClass *SrcRC) const;
58   void storeRegToStackSlot(MachineBasicBlock &MBB,
59                                    MachineBasicBlock::iterator MBBI,
60                                    unsigned SrcReg, bool isKill, int FrameIndex,
61                                    const TargetRegisterClass *RC) const;
62
63   void loadRegFromStackSlot(MachineBasicBlock &MBB,
64                                     MachineBasicBlock::iterator MBBI,
65                                     unsigned DestReg, int FrameIndex,
66                                     const TargetRegisterClass *RC) const;
67
68   bool canFoldMemoryOperand(const MachineInstr *MI,
69                                     const SmallVectorImpl<unsigned> &Ops) const;
70
71   MachineInstr* foldMemoryOperandImpl(MachineFunction &MF,
72                                       MachineInstr* MI,
73                                       const SmallVectorImpl<unsigned> &Ops,
74                                       int FrameIndex) const;
75  
76   MachineInstr* foldMemoryOperandImpl(MachineFunction &MF,
77                                       MachineInstr* MI,
78                                       const SmallVectorImpl<unsigned> &Ops,
79                                       MachineInstr* LoadMI) const {
80     return 0;
81   }
82 };
83 }
84
85 #endif // THUMB1INSTRUCTIONINFO_H