Fix uninitialized variable
[llvm-core.git] / lib / Target / Sparc / SparcInstrInfo.h
blob524b5d054163243651671e9acf84ce715b829080
1 //===-- SparcInstrInfo.h - Sparc 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 Sparc implementation of the TargetInstrInfo class.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_LIB_TARGET_SPARC_SPARCINSTRINFO_H
15 #define LLVM_LIB_TARGET_SPARC_SPARCINSTRINFO_H
17 #include "SparcRegisterInfo.h"
18 #include "llvm/CodeGen/TargetInstrInfo.h"
20 #define GET_INSTRINFO_HEADER
21 #include "SparcGenInstrInfo.inc"
23 namespace llvm {
25 class SparcSubtarget;
27 /// SPII - This namespace holds all of the target specific flags that
28 /// instruction info tracks.
29 ///
30 namespace SPII {
31 enum {
32 Pseudo = (1<<0),
33 Load = (1<<1),
34 Store = (1<<2),
35 DelaySlot = (1<<3)
39 class SparcInstrInfo : public SparcGenInstrInfo {
40 const SparcRegisterInfo RI;
41 const SparcSubtarget& Subtarget;
42 virtual void anchor();
43 public:
44 explicit SparcInstrInfo(SparcSubtarget &ST);
46 /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
47 /// such, whenever a client has an instance of instruction info, it should
48 /// always be able to get register info as well (through this method).
49 ///
50 const SparcRegisterInfo &getRegisterInfo() const { return RI; }
52 /// isLoadFromStackSlot - If the specified machine instruction is a direct
53 /// load from a stack slot, return the virtual or physical register number of
54 /// the destination along with the FrameIndex of the loaded stack slot. If
55 /// not, return 0. This predicate must return 0 if the instruction has
56 /// any side effects other than loading from the stack slot.
57 unsigned isLoadFromStackSlot(const MachineInstr &MI,
58 int &FrameIndex) const override;
60 /// isStoreToStackSlot - If the specified machine instruction is a direct
61 /// store to a stack slot, return the virtual or physical register number of
62 /// the source reg along with the FrameIndex of the loaded stack slot. If
63 /// not, return 0. This predicate must return 0 if the instruction has
64 /// any side effects other than storing to the stack slot.
65 unsigned isStoreToStackSlot(const MachineInstr &MI,
66 int &FrameIndex) const override;
68 bool analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
69 MachineBasicBlock *&FBB,
70 SmallVectorImpl<MachineOperand> &Cond,
71 bool AllowModify = false) const override;
73 unsigned removeBranch(MachineBasicBlock &MBB,
74 int *BytesRemoved = nullptr) const override;
76 unsigned insertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
77 MachineBasicBlock *FBB, ArrayRef<MachineOperand> Cond,
78 const DebugLoc &DL,
79 int *BytesAdded = nullptr) const override;
81 bool
82 reverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const override;
84 void copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
85 const DebugLoc &DL, unsigned DestReg, unsigned SrcReg,
86 bool KillSrc) const override;
88 void storeRegToStackSlot(MachineBasicBlock &MBB,
89 MachineBasicBlock::iterator MBBI,
90 unsigned SrcReg, bool isKill, int FrameIndex,
91 const TargetRegisterClass *RC,
92 const TargetRegisterInfo *TRI) const override;
94 void loadRegFromStackSlot(MachineBasicBlock &MBB,
95 MachineBasicBlock::iterator MBBI,
96 unsigned DestReg, int FrameIndex,
97 const TargetRegisterClass *RC,
98 const TargetRegisterInfo *TRI) const override;
100 unsigned getGlobalBaseReg(MachineFunction *MF) const;
102 // Lower pseudo instructions after register allocation.
103 bool expandPostRAPseudo(MachineInstr &MI) const override;
108 #endif