//===-- AMDGPUAsmPrinter.h - Print AMDGPU assembly code ---------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // /// \file /// AMDGPU Assembly printer class. // //===----------------------------------------------------------------------===// #ifndef LLVM_LIB_TARGET_AMDGPU_AMDGPUASMPRINTER_H #define LLVM_LIB_TARGET_AMDGPU_AMDGPUASMPRINTER_H #include "AMDGPUMCResourceInfo.h" #include "SIProgramInfo.h" #include "llvm/CodeGen/AsmPrinter.h" namespace llvm { class AMDGPUMachineFunction; struct AMDGPUResourceUsageAnalysis; class AMDGPUTargetStreamer; class MCCodeEmitter; class MCOperand; class MCResourceInfo; namespace AMDGPU { struct MCKernelDescriptor; struct AMDGPUMCKernelCodeT; namespace HSAMD { class MetadataStreamer; } } // namespace AMDGPU class AMDGPUAsmPrinter final : public AsmPrinter { … }; } // end namespace llvm #endif // LLVM_LIB_TARGET_AMDGPU_AMDGPUASMPRINTER_H