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/ |
D | MCJIT.cpp | 443 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()
|
D | MCJIT.h | 206 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/ |
D | OrcMCJITReplacement.cpp | 126 void OrcMCJITReplacement::runStaticConstructorsDestructors(bool isDtors) { in runStaticConstructorsDestructors() argument 127 auto &CtorDtorsMap = isDtors ? UnexecutedDestructors : UnexecutedConstructors; in runStaticConstructorsDestructors()
|
D | OrcMCJITReplacement.h | 377 void runStaticConstructorsDestructors(bool isDtors) override;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/ |
D | ExecutionEngine.h | 284 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/ |
D | ExecutionEngine.cpp | 371 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()
|