[llvm-exegesis][NFC] Pass Instruction instead of bare Opcode
[llvm-core.git] / lib / Target / AMDGPU / AMDGPUAsmPrinter.h
blob462b5feca6a3f35c761ca139d788f88e948e35e6
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 /// AMDGPU Assembly printer class.
13 //===----------------------------------------------------------------------===//
15 #ifndef LLVM_LIB_TARGET_AMDGPU_AMDGPUASMPRINTER_H
16 #define LLVM_LIB_TARGET_AMDGPU_AMDGPUASMPRINTER_H
18 #include "AMDGPU.h"
19 #include "AMDKernelCodeT.h"
20 #include "AMDGPUHSAMetadataStreamer.h"
21 #include "SIProgramInfo.h"
22 #include "llvm/ADT/StringRef.h"
23 #include "llvm/CodeGen/AsmPrinter.h"
24 #include "llvm/Support/AMDHSAKernelDescriptor.h"
25 #include <cstddef>
26 #include <cstdint>
27 #include <limits>
28 #include <memory>
29 #include <string>
30 #include <vector>
32 namespace llvm {
34 class AMDGPUMachineFunction;
35 class AMDGPUTargetStreamer;
36 class MCOperand;
37 class GCNSubtarget;
39 class AMDGPUAsmPrinter final : public AsmPrinter {
40 private:
41 // Track resource usage for callee functions.
42 struct SIFunctionResourceInfo {
43 // Track the number of explicitly used VGPRs. Special registers reserved at
44 // the end are tracked separately.
45 int32_t NumVGPR = 0;
46 int32_t NumExplicitSGPR = 0;
47 uint64_t PrivateSegmentSize = 0;
48 bool UsesVCC = false;
49 bool UsesFlatScratch = false;
50 bool HasDynamicallySizedStack = false;
51 bool HasRecursion = false;
53 int32_t getTotalNumSGPRs(const GCNSubtarget &ST) const;
56 SIProgramInfo CurrentProgramInfo;
57 DenseMap<const Function *, SIFunctionResourceInfo> CallGraphResourceInfo;
59 AMDGPU::HSAMD::MetadataStreamer HSAMetadataStream;
60 std::map<uint32_t, uint32_t> PALMetadataMap;
62 uint64_t getFunctionCodeSize(const MachineFunction &MF) const;
63 SIFunctionResourceInfo analyzeResourceUsage(const MachineFunction &MF) const;
65 void readPALMetadata(Module &M);
66 void getSIProgramInfo(SIProgramInfo &Out, const MachineFunction &MF);
67 void getAmdKernelCode(amd_kernel_code_t &Out, const SIProgramInfo &KernelInfo,
68 const MachineFunction &MF) const;
69 void findNumUsedRegistersSI(const MachineFunction &MF,
70 unsigned &NumSGPR,
71 unsigned &NumVGPR) const;
73 /// Emit register usage information so that the GPU driver
74 /// can correctly setup the GPU state.
75 void EmitProgramInfoSI(const MachineFunction &MF,
76 const SIProgramInfo &KernelInfo);
77 void EmitPALMetadata(const MachineFunction &MF,
78 const SIProgramInfo &KernelInfo);
79 void emitCommonFunctionComments(uint32_t NumVGPR,
80 uint32_t NumSGPR,
81 uint64_t ScratchSize,
82 uint64_t CodeSize,
83 const AMDGPUMachineFunction* MFI);
85 uint16_t getAmdhsaKernelCodeProperties(
86 const MachineFunction &MF) const;
88 amdhsa::kernel_descriptor_t getAmdhsaKernelDescriptor(
89 const MachineFunction &MF,
90 const SIProgramInfo &PI) const;
92 public:
93 explicit AMDGPUAsmPrinter(TargetMachine &TM,
94 std::unique_ptr<MCStreamer> Streamer);
96 StringRef getPassName() const override;
98 const MCSubtargetInfo* getSTI() const;
100 AMDGPUTargetStreamer* getTargetStreamer() const;
102 bool doFinalization(Module &M) override;
103 bool runOnMachineFunction(MachineFunction &MF) override;
105 /// Wrapper for MCInstLowering.lowerOperand() for the tblgen'erated
106 /// pseudo lowering.
107 bool lowerOperand(const MachineOperand &MO, MCOperand &MCOp) const;
109 /// Lower the specified LLVM Constant to an MCExpr.
110 /// The AsmPrinter::lowerConstantof does not know how to lower
111 /// addrspacecast, therefore they should be lowered by this function.
112 const MCExpr *lowerConstant(const Constant *CV) override;
114 /// tblgen'erated driver function for lowering simple MI->MC pseudo
115 /// instructions.
116 bool emitPseudoExpansionLowering(MCStreamer &OutStreamer,
117 const MachineInstr *MI);
119 /// Implemented in AMDGPUMCInstLower.cpp
120 void EmitInstruction(const MachineInstr *MI) override;
122 void EmitFunctionBodyStart() override;
124 void EmitFunctionBodyEnd() override;
126 void EmitFunctionEntryLabel() override;
128 void EmitBasicBlockStart(const MachineBasicBlock &MBB) const override;
130 void EmitGlobalVariable(const GlobalVariable *GV) override;
132 void EmitStartOfAsmFile(Module &M) override;
134 void EmitEndOfAsmFile(Module &M) override;
136 bool isBlockOnlyReachableByFallthrough(
137 const MachineBasicBlock *MBB) const override;
139 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
140 unsigned AsmVariant, const char *ExtraCode,
141 raw_ostream &O) override;
143 protected:
144 mutable std::vector<std::string> DisasmLines, HexLines;
145 mutable size_t DisasmLineMaxLen;
148 } // end namespace llvm
150 #endif // LLVM_LIB_TARGET_AMDGPU_AMDGPUASMPRINTER_H