Searched refs:ObjectFile (Results 51 - 75 of 193) sorted by relevance

12345678

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DIRObjectFile.cpp21 #include "llvm/Object/ObjectFile.h"
74 IRObjectFile::findBitcodeInObject(const ObjectFile &Obj) {
99 Expected<std::unique_ptr<ObjectFile>> ObjFile =
100 ObjectFile::createObjectFile(Object, Type);
H A DSymbolSize.cpp28 static unsigned getSectionID(const ObjectFile &O, SectionRef Sec) {
37 static unsigned getSymbolSectionID(const ObjectFile &O, SymbolRef Sym) {
46 llvm::object::computeSymbolSizes(const ObjectFile &O) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Remarks/
H A DRemarkLinker.cpp24 getRemarksSectionName(const object::ObjectFile &Obj) {
33 llvm::remarks::getRemarksSectionContents(const object::ObjectFile &Obj) {
102 Error RemarkLinker::link(const object::ObjectFile &Obj,
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompactUnwindInfo.h12 #include "lldb/Symbol/ObjectFile.h"
38 CompactUnwindInfo(ObjectFile &objfile, lldb::SectionSP &section);
144 ObjectFile &m_objfile;
H A DDWARFCallFrameInfo.h17 #include "lldb/Symbol/ObjectFile.h"
37 DWARFCallFrameInfo(ObjectFile &objfile, lldb::SectionSP &section, Type type);
145 ObjectFile &m_objfile;
H A DObjectContainer.h147 virtual ObjectFile *GetObjectFileAtIndex(uint32_t object_idx) {
H A DSymbolFile.h265 ObjectFile *GetObjectFile() { return m_objfile_sp.get(); }
266 const ObjectFile *GetObjectFile() const { return m_objfile_sp.get(); }
267 ObjectFile *GetMainObjectFile();
H A DSymtab.h34 Symtab(ObjectFile *objfile);
140 ObjectFile *GetObjectFile() { return m_objfile; }
173 ObjectFile *m_objfile;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.cpp13 #include "Plugins/ObjectFile/ELF/ObjectFileELF.h"
20 #include "lldb/Symbol/ObjectFile.h"
105 ObjectFileSP dsym_objfile_sp = ObjectFile::FindPlugin(
114 dsym_objfile_sp->SetType(ObjectFile::eTypeDebugInfo);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/wasm/
H A DSymbolVendorWasm.cpp13 #include "Plugins/ObjectFile/wasm/ObjectFileWasm.h"
20 #include "lldb/Symbol/ObjectFile.h"
101 ObjectFileSP sym_objfile_sp = ObjectFile::FindPlugin(
108 sym_objfile_sp->SetType(ObjectFile::eTypeDebugInfo);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DRTDyldObjectLinkingLayer.h25 #include "llvm/Object/ObjectFile.h"
43 std::function<void(VModuleKey, const object::ObjectFile &Obj,
127 const object::ObjectFile &Obj,
134 object::OwningBinary<object::ObjectFile> O,
210 std::function<void(VModuleKey, const object::ObjectFile &Obj,
215 std::function<void(VModuleKey, const object::ObjectFile &Obj,
219 using NotifyFreedFtor = std::function<void(VModuleKey, const object::ObjectFile &Obj)>;
222 using OwnedObject = object::OwningBinary<object::ObjectFile>;
414 object::ObjectFile::createObjectFile(ObjBuffer->getMemBufferRef());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp36 OwningBinary<ObjectFile>
37 getObjectForDebug(const ObjectFile &Obj) const override {
38 return OwningBinary<ObjectFile>();
56 const ObjectFile &BaseObjT,
98 const ObjectFile &BaseTObj, const relocation_iterator &RI,
222 bool RuntimeDyldMachO::isCompatibleFile(const object::ObjectFile &Obj) const {
228 RuntimeDyldMachOCRTPBase<Impl>::finalizeLoad(const ObjectFile &Obj,
370 RuntimeDyldMachO::loadObject(const object::ObjectFile &O) {
H A DRuntimeDyld.cpp180 RuntimeDyldImpl::loadObjectImpl(const object::ObjectFile &Obj) {
469 const ObjectFile *Obj = Section.getObject();
492 const ObjectFile *Obj = Section.getObject();
510 const ObjectFile *Obj = Section.getObject();
525 Error RuntimeDyldImpl::computeTotalAllocSize(const ObjectFile &Obj,
638 unsigned RuntimeDyldImpl::computeGOTSize(const ObjectFile &Obj) {
656 unsigned RuntimeDyldImpl::computeSectionStubBufSize(const ObjectFile &Obj,
730 Error RuntimeDyldImpl::emitCommonSymbols(const ObjectFile &Obj,
786 RuntimeDyldImpl::emitSection(const ObjectFile &Obj,
904 RuntimeDyldImpl::findOrEmitSection(const ObjectFile
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DSymbolFile.cpp14 #include "lldb/Symbol/ObjectFile.h"
36 ObjectFile *SymbolFile::GetMainObjectFile() {
49 ObjectFile *module_obj_file = module_sp->GetObjectFile();
209 ObjectFile *module_objfile = GetMainObjectFile();
210 ObjectFile *symfile_objfile = GetObjectFile();
H A DSymbolVendor.cpp14 #include "lldb/Symbol/ObjectFile.h"
48 sym_objfile_sp = ObjectFile::FindPlugin(
H A DUnwindTable.cpp20 #include "lldb/Symbol/ObjectFile.h"
24 // There is one UnwindTable object per ObjectFile. It contains a list of Unwind
25 // objects -- one per function, populated lazily -- for the ObjectFile. Each
36 // We can't do some of this initialization when the ObjectFile is running its
48 ObjectFile *object_file = m_module.GetObjectFile();
206 if (ObjectFile *object_file = m_module.GetObjectFile())
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DWasmDump.cpp22 void objdump::printWasmFileHeader(const object::ObjectFile *Obj) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp23 #include "llvm/Object/ObjectFile.h"
118 void MCJIT::addObjectFile(std::unique_ptr<object::ObjectFile> Obj) {
128 void MCJIT::addObjectFile(object::OwningBinary<object::ObjectFile> Obj) {
129 std::unique_ptr<object::ObjectFile> ObjFile;
215 Expected<std::unique_ptr<object::ObjectFile>> LoadedObject =
216 object::ObjectFile::createObjectFile(ObjectToLoad->getMemBufferRef());
365 std::unique_ptr<object::ObjectFile> OF(
366 static_cast<object::ObjectFile *>(ChildBin.release()));
656 void MCJIT::notifyObjectLoaded(const object::ObjectFile &Obj,
667 void MCJIT::notifyFreeingObject(const object::ObjectFile
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp28 #include "lldb/Symbol/ObjectFile.h"
60 ObjectFile *oso_objfile = oso_module->GetObjectFile();
186 ObjectFile *oso_objfile = GetObjectFile();
200 ObjectFile *exe_objfile = exe_module_sp->GetObjectFile();
267 case ObjectFile::eTypeInvalid:
268 case ObjectFile::eTypeCoreFile:
269 case ObjectFile::eTypeDebugInfo:
270 case ObjectFile::eTypeObjectFile:
271 case ObjectFile::eTypeStubLibrary:
272 case ObjectFile
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-interfaces.h40 typedef ObjectFile *(*ObjectFileCreateInstance)(const lldb::ModuleSP &module_sp,
46 typedef ObjectFile *(*ObjectFileCreateMemoryInstance)(
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DObjectFileTransformer.cpp13 #include "llvm/Object/ObjectFile.h"
25 static std::vector<uint8_t> getUUID(const object::ObjectFile &Obj) {
70 llvm::Error ObjectFileTransformer::convert(const object::ObjectFile &Obj,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCompileUtils.cpp15 #include "llvm/Object/ObjectFile.h"
36 /// Compile a Module to an ObjectFile.
58 auto Obj = object::ObjectFile::createObjectFile(ObjBuffer->getMemBufferRef());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DObjectFileBreakpad.cpp9 #include "Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.h"
10 #include "Plugins/ObjectFile/Breakpad/BreakpadRecords.h"
64 ObjectFile *ObjectFileBreakpad::CreateInstance(
91 ObjectFile *ObjectFileBreakpad::CreateMemoryInstance(
116 : ObjectFile(module_sp, file, offset, length, data_sp, data_offset),
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DObjDumper.cpp17 #include "llvm/Object/ObjectFile.h"
41 getSectionRefsByNameOrIndex(const object::ObjectFile *Obj,
83 void ObjDumper::printSectionsAsString(const object::ObjectFile *Obj,
118 void ObjDumper::printSectionsAsHex(const object::ObjectFile *Obj,
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp380 Expected<std::unique_ptr<ObjectFile>> MaybeObj(
381 ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef()));
391 ObjectFile &Obj = **MaybeObj;
393 OwningBinary<ObjectFile> DebugObj;
395 ObjectFile *SymbolObj = &Obj;
515 Expected<std::unique_ptr<ObjectFile>> MaybeObj(
516 ObjectFile::createObjectFile((*InputBuffer)->getMemBufferRef()));
526 ObjectFile &Obj = **MaybeObj;
907 Expected<std::unique_ptr<ObjectFile>> MaybeObj(
908 ObjectFile
[all...]

Completed in 148 milliseconds

12345678