LCOV - code coverage report
Current view: top level - lib/Target/AMDGPU - AMDGPUInstructionSelector.h (source / functions) Hit Total Coverage
Test: llvm-toolchain.info Lines: 1 1 100.0 %
Date: 2018-10-20 13:21:21 Functions: 0 0 -
Legend: Lines: hit not hit

          Line data    Source code
       1             : //===- 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             : 
      17             : #include "AMDGPU.h"
      18             : #include "AMDGPUArgumentUsageInfo.h"
      19             : #include "llvm/ADT/ArrayRef.h"
      20             : #include "llvm/ADT/SmallVector.h"
      21             : #include "llvm/CodeGen/GlobalISel/InstructionSelector.h"
      22             : 
      23             : namespace {
      24             : #define GET_GLOBALISEL_PREDICATE_BITSET
      25             : #define AMDGPUSubtarget GCNSubtarget
      26             : #include "AMDGPUGenGlobalISel.inc"
      27             : #undef GET_GLOBALISEL_PREDICATE_BITSET
      28             : #undef AMDGPUSubtarget
      29             : }
      30             : 
      31             : namespace llvm {
      32             : 
      33             : class AMDGPUInstrInfo;
      34             : class AMDGPURegisterBankInfo;
      35             : class GCNSubtarget;
      36             : class MachineInstr;
      37             : class MachineOperand;
      38             : class MachineRegisterInfo;
      39             : class SIInstrInfo;
      40             : class SIMachineFunctionInfo;
      41             : class SIRegisterInfo;
      42             : 
      43             : class AMDGPUInstructionSelector : public InstructionSelector {
      44             : public:
      45             :   AMDGPUInstructionSelector(const GCNSubtarget &STI,
      46             :                             const AMDGPURegisterBankInfo &RBI,
      47             :                             const AMDGPUTargetMachine &TM);
      48             : 
      49             :   bool select(MachineInstr &I, CodeGenCoverage &CoverageInfo) const override;
      50             :   static const char *getName();
      51             : 
      52             : private:
      53             :   struct GEPInfo {
      54             :     const MachineInstr &GEP;
      55             :     SmallVector<unsigned, 2> SgprParts;
      56             :     SmallVector<unsigned, 2> VgprParts;
      57             :     int64_t Imm;
      58         102 :     GEPInfo(const MachineInstr &GEP) : GEP(GEP), Imm(0) { }
      59             :   };
      60             : 
      61             :   /// tblgen-erated 'select' implementation.
      62             :   bool selectImpl(MachineInstr &I, CodeGenCoverage &CoverageInfo) const;
      63             : 
      64             :   MachineOperand getSubOperand64(MachineOperand &MO, unsigned SubIdx) const;
      65             :   bool selectCOPY(MachineInstr &I) const;
      66             :   bool selectG_CONSTANT(MachineInstr &I) const;
      67             :   bool selectG_ADD(MachineInstr &I) const;
      68             :   bool selectG_GEP(MachineInstr &I) const;
      69             :   bool selectG_IMPLICIT_DEF(MachineInstr &I) const;
      70             :   bool selectG_INTRINSIC(MachineInstr &I, CodeGenCoverage &CoverageInfo) const;
      71             :   bool selectG_INTRINSIC_W_SIDE_EFFECTS(MachineInstr &I,
      72             :                                         CodeGenCoverage &CoverageInfo) const;
      73             :   bool hasVgprParts(ArrayRef<GEPInfo> AddrInfo) const;
      74             :   void getAddrModeInfo(const MachineInstr &Load, const MachineRegisterInfo &MRI,
      75             :                        SmallVectorImpl<GEPInfo> &AddrInfo) const;
      76             :   bool selectSMRD(MachineInstr &I, ArrayRef<GEPInfo> AddrInfo) const;
      77             :   bool selectG_LOAD(MachineInstr &I) const;
      78             :   bool selectG_STORE(MachineInstr &I) const;
      79             : 
      80             :   InstructionSelector::ComplexRendererFns
      81             :   selectVCSRC(MachineOperand &Root) const;
      82             : 
      83             :   InstructionSelector::ComplexRendererFns
      84             :   selectVSRC0(MachineOperand &Root) const;
      85             : 
      86             :   InstructionSelector::ComplexRendererFns
      87             :   selectVOP3Mods0(MachineOperand &Root) const;
      88             :   InstructionSelector::ComplexRendererFns
      89             :   selectVOP3OMods(MachineOperand &Root) const;
      90             :   InstructionSelector::ComplexRendererFns
      91             :   selectVOP3Mods(MachineOperand &Root) const;
      92             : 
      93             :   const SIInstrInfo &TII;
      94             :   const SIRegisterInfo &TRI;
      95             :   const AMDGPURegisterBankInfo &RBI;
      96             :   const AMDGPUTargetMachine &TM;
      97             :   const GCNSubtarget &STI;
      98             :   bool EnableLateStructurizeCFG;
      99             : #define GET_GLOBALISEL_PREDICATES_DECL
     100             : #define AMDGPUSubtarget GCNSubtarget
     101             : #include "AMDGPUGenGlobalISel.inc"
     102             : #undef GET_GLOBALISEL_PREDICATES_DECL
     103             : #undef AMDGPUSubtarget
     104             : 
     105             : #define GET_GLOBALISEL_TEMPORARIES_DECL
     106             : #include "AMDGPUGenGlobalISel.inc"
     107             : #undef GET_GLOBALISEL_TEMPORARIES_DECL
     108             : };
     109             : 
     110             : } // End llvm namespace.
     111             : #endif

Generated by: LCOV version 1.13