LLVM  8.0.1
AMDGPUPTNote.h
Go to the documentation of this file.
1 //===-- AMDGPUNoteType.h - AMDGPU ELF PT_NOTE section info-------*- 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 ///
12 /// Enums and constants for AMDGPU PT_NOTE sections.
13 ///
14 //
15 //===----------------------------------------------------------------------===//
16 //
17 #ifndef LLVM_LIB_TARGET_AMDGPU_AMDGPUPTNOTE_H
18 #define LLVM_LIB_TARGET_AMDGPU_AMDGPUPTNOTE_H
19 
20 namespace AMDGPU {
21 
22 namespace ElfNote {
23 
24 const char SectionName[] = ".note";
25 
26 const char NoteNameV2[] = "AMD";
27 const char NoteNameV3[] = "AMDGPU";
28 
29 // TODO: Remove this file once we drop code object v2.
30 enum NoteType{
43 };
44 
45 }
46 }
47 
48 #endif // LLVM_LIB_TARGET_AMDGPU_AMDGPUNOTETYPE_H
const char NoteNameV3[]
Definition: AMDGPUPTNote.h:27
const char NoteNameV2[]
Definition: AMDGPUPTNote.h:26
const char SectionName[]
Definition: AMDGPUPTNote.h:24