clang 20.0.0 (based on r547379) from build 12806354. Bug: http://b/379133546 Test: N/A Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
82 lines
2.9 KiB
C++
82 lines
2.9 KiB
C++
//===------ ObjectFormats.h - Object format details for ORC -----*- 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// ORC-specific object format details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_EXECUTIONENGINE_ORC_SHARED_OBJECTFORMATS_H
|
|
#define LLVM_EXECUTIONENGINE_ORC_SHARED_OBJECTFORMATS_H
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
namespace llvm {
|
|
namespace orc {
|
|
|
|
// MachO section names.
|
|
|
|
extern StringRef MachODataCommonSectionName;
|
|
extern StringRef MachODataDataSectionName;
|
|
extern StringRef MachOEHFrameSectionName;
|
|
extern StringRef MachOCompactUnwindInfoSectionName;
|
|
extern StringRef MachOCStringSectionName;
|
|
extern StringRef MachOModInitFuncSectionName;
|
|
extern StringRef MachOObjCCatListSectionName;
|
|
extern StringRef MachOObjCCatList2SectionName;
|
|
extern StringRef MachOObjCClassListSectionName;
|
|
extern StringRef MachOObjCClassNameSectionName;
|
|
extern StringRef MachOObjCClassRefsSectionName;
|
|
extern StringRef MachOObjCConstSectionName;
|
|
extern StringRef MachOObjCDataSectionName;
|
|
extern StringRef MachOObjCImageInfoSectionName;
|
|
extern StringRef MachOObjCMethNameSectionName;
|
|
extern StringRef MachOObjCMethTypeSectionName;
|
|
extern StringRef MachOObjCNLCatListSectionName;
|
|
extern StringRef MachOObjCNLClassListSectionName;
|
|
extern StringRef MachOObjCProtoListSectionName;
|
|
extern StringRef MachOObjCProtoRefsSectionName;
|
|
extern StringRef MachOObjCSelRefsSectionName;
|
|
extern StringRef MachOSwift5ProtoSectionName;
|
|
extern StringRef MachOSwift5ProtosSectionName;
|
|
extern StringRef MachOSwift5TypesSectionName;
|
|
extern StringRef MachOSwift5TypeRefSectionName;
|
|
extern StringRef MachOSwift5FieldMetadataSectionName;
|
|
extern StringRef MachOSwift5EntrySectionName;
|
|
extern StringRef MachOThreadBSSSectionName;
|
|
extern StringRef MachOThreadDataSectionName;
|
|
extern StringRef MachOThreadVarsSectionName;
|
|
|
|
extern StringRef MachOInitSectionNames[22];
|
|
|
|
// ELF section names.
|
|
extern StringRef ELFEHFrameSectionName;
|
|
|
|
extern StringRef ELFInitArrayFuncSectionName;
|
|
extern StringRef ELFInitFuncSectionName;
|
|
extern StringRef ELFFiniArrayFuncSectionName;
|
|
extern StringRef ELFFiniFuncSectionName;
|
|
extern StringRef ELFCtorArrayFuncSectionName;
|
|
extern StringRef ELFDtorArrayFuncSectionName;
|
|
|
|
extern StringRef ELFInitSectionNames[3];
|
|
|
|
extern StringRef ELFThreadBSSSectionName;
|
|
extern StringRef ELFThreadDataSectionName;
|
|
|
|
bool isMachOInitializerSection(StringRef SegName, StringRef SecName);
|
|
bool isMachOInitializerSection(StringRef QualifiedName);
|
|
|
|
bool isELFInitializerSection(StringRef SecName);
|
|
|
|
bool isCOFFInitializerSection(StringRef Name);
|
|
|
|
} // end namespace orc
|
|
} // end namespace llvm
|
|
|
|
#endif // LLVM_EXECUTIONENGINE_ORC_SHARED_MEMORYFLAGS_H
|