Home
last modified time | relevance | path

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

/external/llvm/include/llvm/ExecutionEngine/
DRuntimeDyld.h41 bool ProcessAllSections; variable
100 void setProcessAllSections(bool ProcessAllSections) { in setProcessAllSections() argument
102 this->ProcessAllSections = ProcessAllSections; in setProcessAllSections()
DExecutionEngine.h476 virtual void setProcessAllSections(bool ProcessAllSections) { in setProcessAllSections() argument
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldImpl.h221 bool ProcessAllSections; variable
352 : MemMgr(mm), ProcessAllSections(false), HasError(false) { in RuntimeDyldImpl()
357 void setProcessAllSections(bool ProcessAllSections) { in setProcessAllSections() argument
358 this->ProcessAllSections = ProcessAllSections; in setProcessAllSections()
DRuntimeDyld.cpp195 if (I == E && !ProcessAllSections) in loadObject()
687 ProcessAllSections = false; in RuntimeDyld()
693 createRuntimeDyldELF(RTDyldMemoryManager *MM, bool ProcessAllSections) { in createRuntimeDyldELF() argument
695 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldELF()
700 createRuntimeDyldMachO(RTDyldMemoryManager *MM, bool ProcessAllSections) { in createRuntimeDyldMachO() argument
702 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldMachO()
714 Dyld = createRuntimeDyldELF(MM, ProcessAllSections).release(); in loadObject()
718 Dyld = createRuntimeDyldMachO(MM, ProcessAllSections).release(); in loadObject()
740 Dyld = createRuntimeDyldELF(MM, ProcessAllSections).release(); in loadObject()
754 Dyld = createRuntimeDyldMachO(MM, ProcessAllSections).release(); in loadObject()
/external/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.h254 void setProcessAllSections(bool ProcessAllSections) override { in setProcessAllSections() argument
255 Dyld.setProcessAllSections(ProcessAllSections); in setProcessAllSections()