summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/radeon/AMDGPURegisterInfo.h
blob: f4492e9795d1de191a54c7055661d5348065c843 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//===-- AMDGPURegisterInfo.h - TODO: Add brief description -------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// TODO: Add full description
//
//===----------------------------------------------------------------------===//

#ifndef AMDGPUREGISTERINFO_H_
#define AMDGPUREGISTERINFO_H_

#include "AMDILRegisterInfo.h"

namespace llvm {

  class AMDGPUTargetMachine;
  class TargetInstrInfo;

  struct AMDGPURegisterInfo : public AMDILRegisterInfo
  {
    AMDGPUTargetMachine &TM;
    const TargetInstrInfo &TII;

    AMDGPURegisterInfo(AMDGPUTargetMachine &tm, const TargetInstrInfo &tii);

    virtual BitVector getReservedRegs(const MachineFunction &MF) const = 0;

    virtual const TargetRegisterClass *
    getISARegClass(const TargetRegisterClass * rc) const = 0;
  };
} // End namespace llvm

#endif // AMDIDSAREGISTERINFO_H_