blob: b1972e9b72546c80b8261365bfa8b5617ea31772 [file] [log] [blame]
Justin Holewinski49683f32012-05-04 20:18:50 +00001//===- NVPTXInstrInfo.h - NVPTX Instruction Information----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the niversity of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the NVPTX implementation of the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef NVPTXINSTRUCTIONINFO_H
15#define NVPTXINSTRUCTIONINFO_H
16
17#include "NVPTX.h"
18#include "NVPTXRegisterInfo.h"
19#include "llvm/Target/TargetInstrInfo.h"
20
21#define GET_INSTRINFO_HEADER
22#include "NVPTXGenInstrInfo.inc"
23
24namespace llvm {
25
Justin Holewinski3639ce22013-03-30 14:29:21 +000026class NVPTXInstrInfo : public NVPTXGenInstrInfo {
Justin Holewinski49683f32012-05-04 20:18:50 +000027 NVPTXTargetMachine &TM;
28 const NVPTXRegisterInfo RegInfo;
29public:
30 explicit NVPTXInstrInfo(NVPTXTargetMachine &TM);
31
32 virtual const NVPTXRegisterInfo &getRegisterInfo() const { return RegInfo; }
33
34 /* The following virtual functions are used in register allocation.
35 * They are not implemented because the existing interface and the logic
36 * at the caller side do not work for the elementized vector load and store.
37 *
38 * virtual unsigned isLoadFromStackSlot(const MachineInstr *MI,
39 * int &FrameIndex) const;
40 * virtual unsigned isStoreToStackSlot(const MachineInstr *MI,
41 * int &FrameIndex) const;
42 * virtual void storeRegToStackSlot(MachineBasicBlock &MBB,
43 * MachineBasicBlock::iterator MBBI,
44 * unsigned SrcReg, bool isKill, int FrameIndex,
45 * const TargetRegisterClass *RC) const;
46 * virtual void loadRegFromStackSlot(MachineBasicBlock &MBB,
47 * MachineBasicBlock::iterator MBBI,
48 * unsigned DestReg, int FrameIndex,
49 * const TargetRegisterClass *RC) const;
50 */
51
Justin Holewinski3639ce22013-03-30 14:29:21 +000052 virtual void copyPhysReg(
53 MachineBasicBlock &MBB, MachineBasicBlock::iterator I, DebugLoc DL,
54 unsigned DestReg, unsigned SrcReg, bool KillSrc) const;
55 virtual bool isMoveInstr(const MachineInstr &MI, unsigned &SrcReg,
Justin Holewinski49683f32012-05-04 20:18:50 +000056 unsigned &DestReg) const;
57 bool isLoadInstr(const MachineInstr &MI, unsigned &AddrSpace) const;
58 bool isStoreInstr(const MachineInstr &MI, unsigned &AddrSpace) const;
59 bool isReadSpecialReg(MachineInstr &MI) const;
60
Justin Holewinski3639ce22013-03-30 14:29:21 +000061 virtual bool CanTailMerge(const MachineInstr *MI) const;
Justin Holewinski49683f32012-05-04 20:18:50 +000062 // Branch analysis.
Justin Holewinski3639ce22013-03-30 14:29:21 +000063 virtual bool AnalyzeBranch(
64 MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB,
65 SmallVectorImpl<MachineOperand> &Cond, bool AllowModify) const;
Justin Holewinski49683f32012-05-04 20:18:50 +000066 virtual unsigned RemoveBranch(MachineBasicBlock &MBB) const;
Justin Holewinski3639ce22013-03-30 14:29:21 +000067 virtual unsigned InsertBranch(
68 MachineBasicBlock &MBB, MachineBasicBlock *TBB, MachineBasicBlock *FBB,
69 const SmallVectorImpl<MachineOperand> &Cond, DebugLoc DL) const;
Justin Holewinski49683f32012-05-04 20:18:50 +000070 unsigned getLdStCodeAddrSpace(const MachineInstr &MI) const {
Justin Holewinski3639ce22013-03-30 14:29:21 +000071 return MI.getOperand(2).getImm();
Justin Holewinski49683f32012-05-04 20:18:50 +000072 }
73
74};
75
76} // namespace llvm
77
78#endif