Home
last modified time | relevance | path

Searched refs:isDtors (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp443 bool isDtors, ModulePtrSet::iterator I, ModulePtrSet::iterator E) { in runStaticConstructorsDestructorsInModulePtrSet() argument
445 ExecutionEngine::runStaticConstructorsDestructors(**I, isDtors); in runStaticConstructorsDestructorsInModulePtrSet()
449 void MCJIT::runStaticConstructorsDestructors(bool isDtors) { in runStaticConstructorsDestructors() argument
452 isDtors, OwnedModules.begin_added(), OwnedModules.end_added()); in runStaticConstructorsDestructors()
454 isDtors, OwnedModules.begin_loaded(), OwnedModules.end_loaded()); in runStaticConstructorsDestructors()
456 isDtors, OwnedModules.begin_finalized(), OwnedModules.end_finalized()); in runStaticConstructorsDestructors()
DMCJIT.h206 void runStaticConstructorsDestructorsInModulePtrSet(bool isDtors,
258 void runStaticConstructorsDestructors(bool isDtors) override;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DOrcMCJITReplacement.cpp126 void OrcMCJITReplacement::runStaticConstructorsDestructors(bool isDtors) { in runStaticConstructorsDestructors() argument
127 auto &CtorDtorsMap = isDtors ? UnexecutedDestructors : UnexecutedConstructors; in runStaticConstructorsDestructors()
DOrcMCJITReplacement.h377 void runStaticConstructorsDestructors(bool isDtors) override;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/
DExecutionEngine.h284 virtual void runStaticConstructorsDestructors(bool isDtors);
290 void runStaticConstructorsDestructors(Module &module, bool isDtors);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp371 bool isDtors) { in runStaticConstructorsDestructors() argument
372 StringRef Name(isDtors ? "llvm.global_dtors" : "llvm.global_ctors"); in runStaticConstructorsDestructors()
409 void ExecutionEngine::runStaticConstructorsDestructors(bool isDtors) { in runStaticConstructorsDestructors() argument
412 runStaticConstructorsDestructors(*M, isDtors); in runStaticConstructorsDestructors()