Remove unused include
[oota-llvm.git] / lib / Target / R600 / AMDGPUAsmPrinter.h
1 //===-- AMDGPUAsmPrinter.h - Print AMDGPU assembly code ---------*- 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 //
10 /// \file
11 /// \brief AMDGPU Assembly printer class.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef AMDGPU_ASMPRINTER_H
16 #define AMDGPU_ASMPRINTER_H
17
18 #include "llvm/CodeGen/AsmPrinter.h"
19 #include <vector>
20
21 namespace llvm {
22
23 class AMDGPUAsmPrinter : public AsmPrinter {
24 private:
25   struct SIProgramInfo {
26     SIProgramInfo() :
27       NumVGPR(0),
28       NumSGPR(0),
29       Priority(0),
30       FloatMode(0),
31       Priv(0),
32       DX10Clamp(0),
33       DebugMode(0),
34       IEEEMode(0),
35       CodeLen(0) {}
36
37     // Fields set in PGM_RSRC1 pm4 packet.
38     uint32_t NumVGPR;
39     uint32_t NumSGPR;
40     uint32_t Priority;
41     uint32_t FloatMode;
42     uint32_t Priv;
43     uint32_t DX10Clamp;
44     uint32_t DebugMode;
45     uint32_t IEEEMode;
46
47     // Bonus information for debugging.
48     uint64_t CodeLen;
49   };
50
51   void getSIProgramInfo(SIProgramInfo &Out, const MachineFunction &MF) const;
52   void findNumUsedRegistersSI(const MachineFunction &MF,
53                               unsigned &NumSGPR,
54                               unsigned &NumVGPR) const;
55
56   /// \brief Emit register usage information so that the GPU driver
57   /// can correctly setup the GPU state.
58   void EmitProgramInfoR600(const MachineFunction &MF);
59   void EmitProgramInfoSI(const MachineFunction &MF, const SIProgramInfo &KernelInfo);
60
61 public:
62   explicit AMDGPUAsmPrinter(TargetMachine &TM, MCStreamer &Streamer);
63
64   bool runOnMachineFunction(MachineFunction &MF) override;
65
66   const char *getPassName() const override {
67     return "AMDGPU Assembly Printer";
68   }
69
70   /// Implemented in AMDGPUMCInstLower.cpp
71   void EmitInstruction(const MachineInstr *MI) override;
72
73 protected:
74   bool DisasmEnabled;
75   std::vector<std::string> DisasmLines, HexLines;
76   size_t DisasmLineMaxLen;
77 };
78
79 } // End anonymous llvm
80
81 #endif //AMDGPU_ASMPRINTER_H