blob: 649d9c55a2c892bc3d7f1d5ffa13b58c60790196 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- AlphaInstrInfo.h - Alpha 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 Alpha implementation of the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef ALPHAINSTRUCTIONINFO_H
15#define ALPHAINSTRUCTIONINFO_H
16
17#include "llvm/Target/TargetInstrInfo.h"
18#include "AlphaRegisterInfo.h"
19
20namespace llvm {
21
22class AlphaInstrInfo : public TargetInstrInfo {
23 const AlphaRegisterInfo RI;
24public:
25 AlphaInstrInfo();
26
27 /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
28 /// such, whenever a client has an instance of instruction info, it should
29 /// always be able to get register info as well (through this method).
30 ///
31 virtual const MRegisterInfo &getRegisterInfo() const { return RI; }
32
33 /// Return true if the instruction is a register to register move and
34 /// leave the source and dest operands in the passed parameters.
35 ///
36 virtual bool isMoveInstr(const MachineInstr &MI,
37 unsigned &SrcReg, unsigned &DstReg) const;
38
39 virtual unsigned isLoadFromStackSlot(MachineInstr *MI, int &FrameIndex) const;
40 virtual unsigned isStoreToStackSlot(MachineInstr *MI, int &FrameIndex) const;
41
42 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
43 MachineBasicBlock *FBB,
44 const std::vector<MachineOperand> &Cond) const;
45 bool AnalyzeBranch(MachineBasicBlock &MBB,MachineBasicBlock *&TBB,
46 MachineBasicBlock *&FBB,
47 std::vector<MachineOperand> &Cond) const;
48 unsigned RemoveBranch(MachineBasicBlock &MBB) const;
49 void insertNoop(MachineBasicBlock &MBB,
50 MachineBasicBlock::iterator MI) const;
51 bool BlockHasNoFallThrough(MachineBasicBlock &MBB) const;
52 bool ReverseBranchCondition(std::vector<MachineOperand> &Cond) const;
53};
54
55}
56
57#endif