1 //===-- MCTargetDesc/AMDGPUMCAsmInfo.h - AMDGPU MCAsm Interface -*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_AMDGPU_MCTARGETDESC_AMDGPUMCASMINFO_H
14 #define LLVM_LIB_TARGET_AMDGPU_MCTARGETDESC_AMDGPUMCASMINFO_H
16 #include "llvm/MC/MCAsmInfoELF.h"
21 // If you need to create another MCAsmInfo class, which inherits from MCAsmInfo,
22 // you will need to make sure your new class sets PrivateGlobalPrefix to
23 // a prefix that won't appear in a function name. The default value
24 // for PrivateGlobalPrefix is 'L', so it will consider any function starting
25 // with 'L' as a local symbol.
26 class AMDGPUMCAsmInfo
: public MCAsmInfoELF
{
28 explicit AMDGPUMCAsmInfo(const Triple
&TT
);
29 bool shouldOmitSectionDirective(StringRef SectionName
) const override
;
30 unsigned getMaxInstLength(const MCSubtargetInfo
*STI
) const override
;