LLVM 20.0.0git
|
#include "llvm/ExecutionEngine/Orc/ObjectFileInterface.h"
#include "llvm/ExecutionEngine/Orc/COFFPlatform.h"
#include "llvm/ExecutionEngine/Orc/ELFNixPlatform.h"
#include "llvm/ExecutionEngine/Orc/MachOPlatform.h"
#include "llvm/ExecutionEngine/Orc/Shared/ObjectFormats.h"
#include "llvm/Object/COFF.h"
#include "llvm/Object/ELFObjectFile.h"
#include "llvm/Object/MachO.h"
#include "llvm/Object/ObjectFile.h"
#include "llvm/Support/Debug.h"
#include <optional>
Go to the source code of this file.
Namespaces | |
namespace | llvm |
This is an optimization pass for GlobalISel generic memory operations. | |
namespace | llvm::orc |
Macros | |
#define | DEBUG_TYPE "orc" |
Functions | |
void | llvm::orc::addInitSymbol (MaterializationUnit::Interface &I, ExecutionSession &ES, StringRef ObjFileName) |
Adds an initializer symbol to the given MU interface. | |
static Expected< MaterializationUnit::Interface > | llvm::orc::getMachOObjectFileSymbolInfo (ExecutionSession &ES, const object::MachOObjectFile &Obj) |
static Expected< MaterializationUnit::Interface > | llvm::orc::getELFObjectFileSymbolInfo (ExecutionSession &ES, const object::ELFObjectFileBase &Obj) |
static Expected< MaterializationUnit::Interface > | llvm::orc::getCOFFObjectFileSymbolInfo (ExecutionSession &ES, const object::COFFObjectFile &Obj) |
Expected< MaterializationUnit::Interface > | llvm::orc::getGenericObjectFileSymbolInfo (ExecutionSession &ES, const object::ObjectFile &Obj) |
Expected< MaterializationUnit::Interface > | llvm::orc::getObjectFileInterface (ExecutionSession &ES, MemoryBufferRef ObjBuffer) |
Returns a MaterializationUnit::Interface for the object file contained in the given buffer, or an error if the buffer does not contain a valid object file. | |
#define DEBUG_TYPE "orc" |
Definition at line 21 of file ObjectFileInterface.cpp.