2005-02-05 04:25:52 +08:00
|
|
|
//===- AlphaInstrInfo.h - Alpha Instruction Information ---------*- C++ -*-===//
|
2005-04-22 07:13:11 +08:00
|
|
|
//
|
2005-01-23 07:41:55 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 07:13:11 +08:00
|
|
|
//
|
2005-01-23 07:41:55 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the Alpha implementation of the TargetInstrInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef ALPHAINSTRUCTIONINFO_H
|
|
|
|
#define ALPHAINSTRUCTIONINFO_H
|
|
|
|
|
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
|
|
|
#include "AlphaRegisterInfo.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2008-01-01 09:03:04 +08:00
|
|
|
class AlphaInstrInfo : public TargetInstrInfoImpl {
|
2005-01-23 07:41:55 +08:00
|
|
|
const AlphaRegisterInfo RI;
|
|
|
|
public:
|
|
|
|
AlphaInstrInfo();
|
|
|
|
|
|
|
|
/// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
|
|
|
|
/// such, whenever a client has an instance of instruction info, it should
|
|
|
|
/// always be able to get register info as well (through this method).
|
|
|
|
///
|
2008-05-14 09:58:56 +08:00
|
|
|
virtual const AlphaRegisterInfo &getRegisterInfo() const { return RI; }
|
2005-01-23 07:41:55 +08:00
|
|
|
|
2009-01-21 03:12:24 +08:00
|
|
|
/// Return true if the instruction is a register to register move and return
|
|
|
|
/// the source and dest operands and their sub-register indices by reference.
|
2005-01-23 07:41:55 +08:00
|
|
|
virtual bool isMoveInstr(const MachineInstr &MI,
|
2009-01-21 03:12:24 +08:00
|
|
|
unsigned &SrcReg, unsigned &DstReg,
|
|
|
|
unsigned &SrcSubIdx, unsigned &DstSubIdx) const;
|
2006-02-03 04:12:32 +08:00
|
|
|
|
2008-11-19 03:49:32 +08:00
|
|
|
virtual unsigned isLoadFromStackSlot(const MachineInstr *MI,
|
|
|
|
int &FrameIndex) const;
|
|
|
|
virtual unsigned isStoreToStackSlot(const MachineInstr *MI,
|
|
|
|
int &FrameIndex) const;
|
2006-10-25 00:41:36 +08:00
|
|
|
|
2007-05-18 08:05:48 +08:00
|
|
|
virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
|
2006-10-25 00:41:36 +08:00
|
|
|
MachineBasicBlock *FBB,
|
2008-08-15 06:49:33 +08:00
|
|
|
const SmallVectorImpl<MachineOperand> &Cond) const;
|
2008-08-27 02:03:31 +08:00
|
|
|
virtual bool copyRegToReg(MachineBasicBlock &MBB,
|
2007-12-31 14:32:00 +08:00
|
|
|
MachineBasicBlock::iterator MI,
|
|
|
|
unsigned DestReg, unsigned SrcReg,
|
|
|
|
const TargetRegisterClass *DestRC,
|
|
|
|
const TargetRegisterClass *SrcRC) const;
|
2008-01-02 05:11:32 +08:00
|
|
|
virtual void storeRegToStackSlot(MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MBBI,
|
|
|
|
unsigned SrcReg, bool isKill, int FrameIndex,
|
|
|
|
const TargetRegisterClass *RC) const;
|
|
|
|
|
|
|
|
virtual void loadRegFromStackSlot(MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MBBI,
|
|
|
|
unsigned DestReg, int FrameIndex,
|
|
|
|
const TargetRegisterClass *RC) const;
|
2008-01-07 09:35:02 +08:00
|
|
|
|
2008-12-04 02:43:12 +08:00
|
|
|
virtual MachineInstr* foldMemoryOperandImpl(MachineFunction &MF,
|
|
|
|
MachineInstr* MI,
|
|
|
|
const SmallVectorImpl<unsigned> &Ops,
|
|
|
|
int FrameIndex) const;
|
2008-01-07 09:35:02 +08:00
|
|
|
|
2008-12-04 02:43:12 +08:00
|
|
|
virtual MachineInstr* foldMemoryOperandImpl(MachineFunction &MF,
|
|
|
|
MachineInstr* MI,
|
|
|
|
const SmallVectorImpl<unsigned> &Ops,
|
|
|
|
MachineInstr* LoadMI) const {
|
2008-01-07 09:35:02 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-11-01 00:49:55 +08:00
|
|
|
bool AnalyzeBranch(MachineBasicBlock &MBB,MachineBasicBlock *&TBB,
|
|
|
|
MachineBasicBlock *&FBB,
|
2009-02-09 15:14:22 +08:00
|
|
|
SmallVectorImpl<MachineOperand> &Cond,
|
|
|
|
bool AllowModify) const;
|
2007-05-18 08:05:48 +08:00
|
|
|
unsigned RemoveBranch(MachineBasicBlock &MBB) const;
|
2006-11-01 00:49:55 +08:00
|
|
|
void insertNoop(MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MI) const;
|
2008-10-16 09:49:15 +08:00
|
|
|
bool BlockHasNoFallThrough(const MachineBasicBlock &MBB) const;
|
2008-08-15 06:49:33 +08:00
|
|
|
bool ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const;
|
2009-06-04 04:30:14 +08:00
|
|
|
|
|
|
|
/// getGlobalBaseReg - Return a virtual register initialized with the
|
|
|
|
/// the global base register value. Output instructions required to
|
|
|
|
/// initialize the register in the function entry block, if necessary.
|
|
|
|
///
|
|
|
|
unsigned getGlobalBaseReg(MachineFunction *MF) const;
|
|
|
|
|
|
|
|
/// getGlobalRetAddr - Return a virtual register initialized with the
|
|
|
|
/// the global return address register value. Output instructions required to
|
|
|
|
/// initialize the register in the function entry block, if necessary.
|
|
|
|
///
|
|
|
|
unsigned getGlobalRetAddr(MachineFunction *MF) const;
|
2005-01-23 07:41:55 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|