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

  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 309 /// runStaticConstructorsDestructors - This method is used to execute all of
313 virtual void runStaticConstructorsDestructors(bool isDtors);
315 /// runStaticConstructorsDestructors - This method is used to execute all of
319 void runStaticConstructorsDestructors(Module *module, bool isDtors);
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 243 unwrap(EE)->runStaticConstructorsDestructors(false);
247 unwrap(EE)->runStaticConstructorsDestructors(true);
ExecutionEngine.cpp 306 void ExecutionEngine::runStaticConstructorsDestructors(Module *module,
345 void ExecutionEngine::runStaticConstructorsDestructors(bool isDtors) {
348 runStaticConstructorsDestructors(Modules[i], isDtors);
    [all...]
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.h 273 /// runStaticConstructorsDestructors - This method is used to execute all of
277 void runStaticConstructorsDestructors(bool isDtors) override;
MCJIT.cpp 78 // runStaticConstructorsDestructors could be moved back to EE as well.
396 ExecutionEngine::runStaticConstructorsDestructors(*I, isDtors);
400 void MCJIT::runStaticConstructorsDestructors(bool isDtors) {

Completed in 81 milliseconds