HomeSort by relevance Sort by last modified time
    Searched refs:ProcessAllSections (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/ExecutionEngine/
RuntimeDyld.h 41 bool ProcessAllSections;
100 void setProcessAllSections(bool ProcessAllSections) {
102 this->ProcessAllSections = ProcessAllSections;
ExecutionEngine.h 476 virtual void setProcessAllSections(bool ProcessAllSections) {
477 llvm_unreachable("No support for ProcessAllSections option");
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 221 bool ProcessAllSections;
352 : MemMgr(mm), ProcessAllSections(false), HasError(false) {
357 void setProcessAllSections(bool ProcessAllSections) {
358 this->ProcessAllSections = ProcessAllSections;
RuntimeDyld.cpp 195 if (I == E && !ProcessAllSections)
687 ProcessAllSections = false;
693 createRuntimeDyldELF(RTDyldMemoryManager *MM, bool ProcessAllSections) {
695 Dyld->setProcessAllSections(ProcessAllSections);
700 createRuntimeDyldMachO(RTDyldMemoryManager *MM, bool ProcessAllSections) {
702 Dyld->setProcessAllSections(ProcessAllSections);
714 Dyld = createRuntimeDyldELF(MM, ProcessAllSections).release();
718 Dyld = createRuntimeDyldMachO(MM, ProcessAllSections).release();
740 Dyld = createRuntimeDyldELF(MM, ProcessAllSections).release();
754 Dyld = createRuntimeDyldMachO(MM, ProcessAllSections).release()
    [all...]
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 254 void setProcessAllSections(bool ProcessAllSections) override {
255 Dyld.setProcessAllSections(ProcessAllSections);

Completed in 71 milliseconds