Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h288 /// runStaticConstructorsDestructors - This method is used to execute all of
292 virtual void runStaticConstructorsDestructors(bool isDtors);
298 void runStaticConstructorsDestructors(Module &module, bool isDtors);
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp222 unwrap(EE)->runStaticConstructorsDestructors(false); in LLVMRunStaticConstructors()
227 unwrap(EE)->runStaticConstructorsDestructors(true); in LLVMRunStaticDestructors()
H A DExecutionEngine.cpp367 void ExecutionEngine::runStaticConstructorsDestructors(Module &module, in runStaticConstructorsDestructors() function in ExecutionEngine
406 void ExecutionEngine::runStaticConstructorsDestructors(bool isDtors) { in runStaticConstructorsDestructors() function in ExecutionEngine
409 runStaticConstructorsDestructors(*M, isDtors); in runStaticConstructorsDestructors()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp451 ExecutionEngine::runStaticConstructorsDestructors(**I, isDtors); in runStaticConstructorsDestructorsInModulePtrSet()
455 void MCJIT::runStaticConstructorsDestructors(bool isDtors) { in runStaticConstructorsDestructors() function in MCJIT
H A DMCJIT.h250 void runStaticConstructorsDestructors(bool isDtors) override;
/freebsd/contrib/llvm-project/llvm/tools/lli/
H A Dlli.cpp675 EE->runStaticConstructorsDestructors(false); in main()
688 EE->runStaticConstructorsDestructors(true); in main()