blob: c87102e55dfb0d0b15d40ace3586e1f7b2144500 [file] [log] [blame]
Tom Stellardca166212017-01-30 21:56:46 +00001//===- AMDGPUInstructionSelector --------------------------------*- C++ -*-==//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9/// \file
10/// This file declares the targeting of the InstructionSelector class for
11/// AMDGPU.
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_LIB_TARGET_AMDGPU_AMDGPUINSTRUCTIONSELECTOR_H
15#define LLVM_LIB_TARGET_AMDGPU_AMDGPUINSTRUCTIONSELECTOR_H
16
Yaxun Liu1a14bfa2017-03-27 14:04:01 +000017#include "AMDGPU.h"
Tom Stellardca166212017-01-30 21:56:46 +000018#include "llvm/CodeGen/GlobalISel/InstructionSelector.h"
19#include "llvm/ADT/ArrayRef.h"
20#include "llvm/ADT/SmallVector.h"
21
22namespace llvm {
23
24class AMDGPUInstrInfo;
25class AMDGPURegisterBankInfo;
26class MachineInstr;
27class MachineOperand;
28class MachineRegisterInfo;
29class SIInstrInfo;
30class SIRegisterInfo;
31class SISubtarget;
32
33class AMDGPUInstructionSelector : public InstructionSelector {
34public:
35 AMDGPUInstructionSelector(const SISubtarget &STI,
36 const AMDGPURegisterBankInfo &RBI);
37
38 bool select(MachineInstr &I) const override;
Tom Stellardca166212017-01-30 21:56:46 +000039private:
40 struct GEPInfo {
41 const MachineInstr &GEP;
42 SmallVector<unsigned, 2> SgprParts;
43 SmallVector<unsigned, 2> VgprParts;
44 int64_t Imm;
45 GEPInfo(const MachineInstr &GEP) : GEP(GEP), Imm(0) { }
46 };
47
48 MachineOperand getSubOperand64(MachineOperand &MO, unsigned SubIdx) const;
49 bool selectG_CONSTANT(MachineInstr &I) const;
50 bool selectG_ADD(MachineInstr &I) const;
51 bool selectG_GEP(MachineInstr &I) const;
52 bool hasVgprParts(ArrayRef<GEPInfo> AddrInfo) const;
53 void getAddrModeInfo(const MachineInstr &Load, const MachineRegisterInfo &MRI,
54 SmallVectorImpl<GEPInfo> &AddrInfo) const;
55 bool selectSMRD(MachineInstr &I, ArrayRef<GEPInfo> AddrInfo) const;
56 bool selectG_LOAD(MachineInstr &I) const;
57 bool selectG_STORE(MachineInstr &I) const;
58
59 const SIInstrInfo &TII;
60 const SIRegisterInfo &TRI;
61 const AMDGPURegisterBankInfo &RBI;
Yaxun Liu1a14bfa2017-03-27 14:04:01 +000062protected:
63 AMDGPUAS AMDGPUASI;
Tom Stellardca166212017-01-30 21:56:46 +000064};
65
66} // End llvm namespace.
67#endif