Home
last modified time | relevance | path

Searched refs:ProcessAllSections (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DRuntimeDyld.h262 void setProcessAllSections(bool ProcessAllSections) { in setProcessAllSections() argument
264 this->ProcessAllSections = ProcessAllSections; in setProcessAllSections()
290 bool ProcessAllSections,
303 bool ProcessAllSections; variable
316 bool ProcessAllSections,
H A DExecutionEngine.h438 virtual void setProcessAllSections(bool ProcessAllSections) { in setProcessAllSections() argument
439 llvm_unreachable("No support for ProcessAllSections option"); in setProcessAllSections()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DRTDyldObjectLinkingLayer.h84 RTDyldObjectLinkingLayer &setProcessAllSections(bool ProcessAllSections) { in setProcessAllSections() argument
85 this->ProcessAllSections = ProcessAllSections; in setProcessAllSections()
150 bool ProcessAllSections = false; variable
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp379 if (I == E && !ProcessAllSections) in loadObjectImpl()
431 if (ProcessAllSections) { in loadObjectImpl()
550 bool IsRequired = isRequiredForExecution(Section) || ProcessAllSections; in computeTotalAllocSize()
857 if (IsRequired || ProcessAllSections) { in emitSection()
1304 ProcessAllSections = false; in RuntimeDyld()
1312 JITSymbolResolver &Resolver, bool ProcessAllSections, in createRuntimeDyldCOFF() argument
1316 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldCOFF()
1323 JITSymbolResolver &Resolver, bool ProcessAllSections, in createRuntimeDyldELF() argument
1327 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldELF()
1336 bool ProcessAllSections, in createRuntimeDyldMachO() argument
[all …]
H A DRuntimeDyldImpl.h296 bool ProcessAllSections; variable
462 ProcessAllSections(false), HasError(false) { in RuntimeDyldImpl()
467 void setProcessAllSections(bool ProcessAllSections) { in setProcessAllSections() argument
468 this->ProcessAllSections = ProcessAllSections; in setProcessAllSections()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.h227 void setProcessAllSections(bool ProcessAllSections) override { in setProcessAllSections() argument
228 Dyld.setProcessAllSections(ProcessAllSections); in setProcessAllSections()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DRTDyldObjectLinkingLayer.cpp191 MemMgrRef, Resolver, ProcessAllSections, in emit()