Jim Grosbach | 31c24bf | 2009-11-07 22:00:39 +0000 | [diff] [blame] | 1 | //===- Thumb1InstrInfo.h - Thumb-1 Instruction Information ------*- C++ -*-===// |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 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 | |
David Goodwin | 334c264 | 2009-07-08 16:09:28 +0000 | [diff] [blame] | 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 | |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 34 | /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As |
| 35 | /// such, whenever a client has an instance of instruction info, it should |
| 36 | /// always be able to get register info as well (through this method). |
| 37 | /// |
| 38 | const Thumb1RegisterInfo &getRegisterInfo() const { return RI; } |
| 39 | |
| 40 | bool spillCalleeSavedRegisters(MachineBasicBlock &MBB, |
| 41 | MachineBasicBlock::iterator MI, |
Evan Cheng | 2457f2c | 2010-05-22 01:47:14 +0000 | [diff] [blame^] | 42 | const std::vector<CalleeSavedInfo> &CSI, |
| 43 | const TargetRegisterInfo *TRI) const; |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 44 | bool restoreCalleeSavedRegisters(MachineBasicBlock &MBB, |
| 45 | MachineBasicBlock::iterator MI, |
Evan Cheng | 2457f2c | 2010-05-22 01:47:14 +0000 | [diff] [blame^] | 46 | const std::vector<CalleeSavedInfo> &CSI, |
| 47 | const TargetRegisterInfo *TRI) const; |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 48 | |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 49 | bool copyRegToReg(MachineBasicBlock &MBB, |
| 50 | MachineBasicBlock::iterator I, |
| 51 | unsigned DestReg, unsigned SrcReg, |
| 52 | const TargetRegisterClass *DestRC, |
Dan Gohman | 34dcc6f | 2010-05-06 20:33:48 +0000 | [diff] [blame] | 53 | const TargetRegisterClass *SrcRC, |
| 54 | DebugLoc DL) const; |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 55 | void storeRegToStackSlot(MachineBasicBlock &MBB, |
| 56 | MachineBasicBlock::iterator MBBI, |
| 57 | unsigned SrcReg, bool isKill, int FrameIndex, |
Evan Cheng | 746ad69 | 2010-05-06 19:06:44 +0000 | [diff] [blame] | 58 | const TargetRegisterClass *RC, |
| 59 | const TargetRegisterInfo *TRI) const; |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 60 | |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 61 | void loadRegFromStackSlot(MachineBasicBlock &MBB, |
| 62 | MachineBasicBlock::iterator MBBI, |
| 63 | unsigned DestReg, int FrameIndex, |
Evan Cheng | 746ad69 | 2010-05-06 19:06:44 +0000 | [diff] [blame] | 64 | const TargetRegisterClass *RC, |
| 65 | const TargetRegisterInfo *TRI) const; |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 66 | |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 67 | bool canFoldMemoryOperand(const MachineInstr *MI, |
| 68 | const SmallVectorImpl<unsigned> &Ops) const; |
| 69 | |
| 70 | MachineInstr* foldMemoryOperandImpl(MachineFunction &MF, |
| 71 | MachineInstr* MI, |
| 72 | const SmallVectorImpl<unsigned> &Ops, |
| 73 | int FrameIndex) const; |
Jim Grosbach | 764ab52 | 2009-08-11 15:33:49 +0000 | [diff] [blame] | 74 | |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 75 | MachineInstr* foldMemoryOperandImpl(MachineFunction &MF, |
| 76 | MachineInstr* MI, |
| 77 | const SmallVectorImpl<unsigned> &Ops, |
| 78 | MachineInstr* LoadMI) const { |
| 79 | return 0; |
| 80 | } |
David Goodwin | b50ea5c | 2009-07-02 22:18:33 +0000 | [diff] [blame] | 81 | }; |
| 82 | } |
| 83 | |
| 84 | #endif // THUMB1INSTRUCTIONINFO_H |