summaryrefslogtreecommitdiff
path: root/lib/Target/AMDIL/AMDILCodeEmitter.h
blob: b0ea1455cf924f015e0214fa3ebb5e839968b780 (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
45
46
//                     The LLVM Compiler Infrastructure
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-- AMDILCodeEmitter.h - TODO: Add brief description -------===//
//===-- AMDILCodeEmitter.h - TODO: Add brief description -------===//
//===-- AMDILCodeEmitter.h - TODO: Add brief description -------===//
//
//                     The LLVM Compiler Infrastructure
//

#ifndef AMDILCODEEMITTER_H
#define AMDILCODEEMITTER_H

namespace llvm {

  /* XXX: Temp HACK to work around tablegen name generation */
  class AMDILCodeEmitter {
  public:
    uint64_t getBinaryCodeForInstr(const MachineInstr &MI) const;
    virtual uint64_t getMachineOpValue(const MachineInstr &MI,
                                   const MachineOperand &MO) const { return 0; }
    virtual unsigned GPR4AlignEncode(const MachineInstr  &MI,
                                     unsigned OpNo) const {
      return 0;
    }
    virtual unsigned GPR2AlignEncode(const MachineInstr &MI,
                                     unsigned OpNo) const {
      return 0;
    }
    virtual uint64_t VOPPostEncode(const MachineInstr &MI,
                                   uint64_t Value) const {
      return Value;
    }
    virtual uint64_t i32LiteralEncode(const MachineInstr &MI,
                                      unsigned OpNo) const {
      return 0;
    }
  };

} // End namespace llvm

#endif // AMDILCODEEMITTER_H