summaryrefslogtreecommitdiff
path: root/lib/Target/AMDIL/R600RegisterInfo.h
blob: 95a44f971a01df538ef2c151f5e8173c4fc1427b (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
39
40
41
42
43
44
//===-- R600RegisterInfo.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 R600REGISTERINFO_H_
#define R600REGISTERINFO_H_

#include "AMDGPUTargetMachine.h"
#include "AMDILRegisterInfo.h"

namespace llvm {

  class R600TargetMachine;
  class TargetInstrInfo;

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

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

    virtual BitVector getReservedRegs(const MachineFunction &MF) const;

    virtual const TargetRegisterClass *
    getISARegClass(const TargetRegisterClass * rc) const;
    unsigned getHWRegIndex(unsigned reg) const;
    unsigned getHWRegChan(unsigned reg) const;
private:
    unsigned getHWRegChanGen(unsigned reg) const;
    unsigned getHWRegIndexGen(unsigned reg) const;
  };
} // End namespace llvm

#endif // AMDIDSAREGISTERINFO_H_