blob: 22164a63e5219bb2372277ea2fc7f664eff0e237 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- MipsInstrInfo.h - Mips Instruction Information -----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +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 Lopes2e6f4302007-08-18 01:59:45 +000023namespace Mips {
24
Bruno Cardoso Lopes7c19d332007-08-28 05:06:17 +000025 // Mips Condition Codes
Bruno Cardoso Lopes2e6f4302007-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 Lattnerd2fd6db2008-01-01 01:03:04 +000045class MipsInstrInfo : public TargetInstrInfoImpl {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000046 MipsTargetMachine &TM;
47 const MipsRegisterInfo RI;
48public:
49 MipsInstrInfo(MipsTargetMachine &TM);
50
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 ///
55 virtual const MRegisterInfo &getRegisterInfo() const { return RI; }
56
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 Lopes2e6f4302007-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;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
Bruno Cardoso Lopes2e6f4302007-08-18 01:59:45 +000083 MachineBasicBlock *FBB,
Dan Gohmanf17a25c2007-07-18 16:29:46 +000084 const std::vector<MachineOperand> &Cond) const;
Owen Anderson8f2c8932007-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;
Bruno Cardoso Lopes2e6f4302007-08-18 01:59:45 +000089 virtual bool BlockHasNoFallThrough(MachineBasicBlock &MBB) const;
90 virtual bool ReverseBranchCondition(std::vector<MachineOperand> &Cond) const;
91
92 /// Insert nop instruction when hazard condition is found
93 virtual void insertNoop(MachineBasicBlock &MBB,
94 MachineBasicBlock::iterator MI) const;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000095};
96
97}
98
99#endif