blob: 9842414dbab89b1fa4032ed090b6a1cbb60b53be [file] [log] [blame]
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001//===- MipsInstrInfo.h - Mips Instruction Information -----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the Mips implementation of the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef MIPSINSTRUCTIONINFO_H
15#define MIPSINSTRUCTIONINFO_H
16
17#include "Mips.h"
18#include "llvm/Target/TargetInstrInfo.h"
19#include "MipsRegisterInfo.h"
20
21namespace llvm {
22
Bruno Cardoso Lopes0b2cd892007-08-18 01:59:45 +000023namespace Mips {
24
Bruno Cardoso Lopesdc0c04c2007-08-28 05:06:17 +000025 // Mips Condition Codes
Bruno Cardoso Lopes0b2cd892007-08-18 01:59:45 +000026 enum CondCode {
27 COND_E,
28 COND_GZ,
29 COND_GEZ,
30 COND_LZ,
31 COND_LEZ,
32 COND_NE,
33 COND_INVALID
34 };
35
36 // Turn condition code into conditional branch opcode.
37 unsigned GetCondBranchFromCond(CondCode CC);
38
39 /// GetOppositeBranchCondition - Return the inverse of the specified cond,
40 /// e.g. turning COND_E to COND_NE.
41 CondCode GetOppositeBranchCondition(Mips::CondCode CC);
42
43}
44
Chris Lattner64105522008-01-01 01:03:04 +000045class MipsInstrInfo : public TargetInstrInfoImpl {
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000046 MipsTargetMachine &TM;
47 const MipsRegisterInfo RI;
48public:
Dan Gohman950a4c42008-03-25 22:06:05 +000049 explicit MipsInstrInfo(MipsTargetMachine &TM);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000050
51 /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
52 /// such, whenever a client has an instance of instruction info, it should
53 /// always be able to get register info as well (through this method).
54 ///
Dan Gohman6f0d0242008-02-10 18:45:23 +000055 virtual const TargetRegisterInfo &getRegisterInfo() const { return RI; }
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000056
57 /// Return true if the instruction is a register to register move and
58 /// leave the source and dest operands in the passed parameters.
59 ///
60 virtual bool isMoveInstr(const MachineInstr &MI,
61 unsigned &SrcReg, unsigned &DstReg) const;
62
63 /// isLoadFromStackSlot - If the specified machine instruction is a direct
64 /// load from a stack slot, return the virtual or physical register number of
65 /// the destination along with the FrameIndex of the loaded stack slot. If
66 /// not, return 0. This predicate must return 0 if the instruction has
67 /// any side effects other than loading from the stack slot.
68 virtual unsigned isLoadFromStackSlot(MachineInstr *MI, int &FrameIndex) const;
69
70 /// isStoreToStackSlot - If the specified machine instruction is a direct
71 /// store to a stack slot, return the virtual or physical register number of
72 /// the source reg along with the FrameIndex of the loaded stack slot. If
73 /// not, return 0. This predicate must return 0 if the instruction has
74 /// any side effects other than storing to the stack slot.
75 virtual unsigned isStoreToStackSlot(MachineInstr *MI, int &FrameIndex) const;
Bruno Cardoso Lopes0b2cd892007-08-18 01:59:45 +000076
77 /// Branch Analysis
78 virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
79 MachineBasicBlock *&FBB,
80 std::vector<MachineOperand> &Cond) const;
81 virtual unsigned RemoveBranch(MachineBasicBlock &MBB) const;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000082 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
Bruno Cardoso Lopes0b2cd892007-08-18 01:59:45 +000083 MachineBasicBlock *FBB,
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000084 const std::vector<MachineOperand> &Cond) const;
Owen Andersond10fd972007-12-31 06:32:00 +000085 virtual void copyRegToReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
86 unsigned DestReg, unsigned SrcReg,
87 const TargetRegisterClass *DestRC,
88 const TargetRegisterClass *SrcRC) const;
Owen Andersonf6372aa2008-01-01 21:11:32 +000089 virtual void storeRegToStackSlot(MachineBasicBlock &MBB,
90 MachineBasicBlock::iterator MBBI,
91 unsigned SrcReg, bool isKill, int FrameIndex,
92 const TargetRegisterClass *RC) const;
93
94 virtual void storeRegToAddr(MachineFunction &MF, unsigned SrcReg, bool isKill,
95 SmallVectorImpl<MachineOperand> &Addr,
96 const TargetRegisterClass *RC,
97 SmallVectorImpl<MachineInstr*> &NewMIs) const;
98
99 virtual void loadRegFromStackSlot(MachineBasicBlock &MBB,
100 MachineBasicBlock::iterator MBBI,
101 unsigned DestReg, int FrameIndex,
102 const TargetRegisterClass *RC) const;
103
104 virtual void loadRegFromAddr(MachineFunction &MF, unsigned DestReg,
105 SmallVectorImpl<MachineOperand> &Addr,
106 const TargetRegisterClass *RC,
107 SmallVectorImpl<MachineInstr*> &NewMIs) const;
Owen Anderson43dbe052008-01-07 01:35:02 +0000108
Evan Cheng5fd79d02008-02-08 21:20:40 +0000109 virtual MachineInstr* foldMemoryOperand(MachineFunction &MF,
110 MachineInstr* MI,
Owen Anderson43dbe052008-01-07 01:35:02 +0000111 SmallVectorImpl<unsigned> &Ops,
112 int FrameIndex) const;
113
Evan Cheng5fd79d02008-02-08 21:20:40 +0000114 virtual MachineInstr* foldMemoryOperand(MachineFunction &MF,
115 MachineInstr* MI,
Owen Anderson43dbe052008-01-07 01:35:02 +0000116 SmallVectorImpl<unsigned> &Ops,
117 MachineInstr* LoadMI) const {
118 return 0;
119 }
120
Bruno Cardoso Lopes0b2cd892007-08-18 01:59:45 +0000121 virtual bool BlockHasNoFallThrough(MachineBasicBlock &MBB) const;
122 virtual bool ReverseBranchCondition(std::vector<MachineOperand> &Cond) const;
123
124 /// Insert nop instruction when hazard condition is found
125 virtual void insertNoop(MachineBasicBlock &MBB,
126 MachineBasicBlock::iterator MI) const;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000127};
128
129}
130
131#endif