File indexing completed on 2026-05-10 08:43:51
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #ifndef LLVM_EXECUTIONENGINE_ORC_SHARED_OBJECTFORMATS_H
0014 #define LLVM_EXECUTIONENGINE_ORC_SHARED_OBJECTFORMATS_H
0015
0016 #include "llvm/ADT/StringRef.h"
0017 #include "llvm/ExecutionEngine/Orc/Shared/MachOObjectFormat.h"
0018
0019 namespace llvm {
0020 namespace orc {
0021
0022
0023 extern StringRef ELFEHFrameSectionName;
0024
0025 extern StringRef ELFInitArrayFuncSectionName;
0026 extern StringRef ELFInitFuncSectionName;
0027 extern StringRef ELFFiniArrayFuncSectionName;
0028 extern StringRef ELFFiniFuncSectionName;
0029 extern StringRef ELFCtorArrayFuncSectionName;
0030 extern StringRef ELFDtorArrayFuncSectionName;
0031
0032 extern StringRef ELFInitSectionNames[3];
0033
0034 extern StringRef ELFThreadBSSSectionName;
0035 extern StringRef ELFThreadDataSectionName;
0036
0037 bool isELFInitializerSection(StringRef SecName);
0038
0039 bool isCOFFInitializerSection(StringRef Name);
0040
0041 }
0042 }
0043
0044 #endif