Searched refs:AtExitHandlers (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp68 while (!AtExitHandlers.empty()) {
69 callFunction(AtExitHandlers.back(), std::vector<GenericValue>());
70 AtExitHandlers.pop_back();
H A DInterpreter.h92 // AtExitHandlers - List of functions to call when the program exits,
94 std::vector<Function*> AtExitHandlers; member in class:llvm::Interpreter
101 /// atexit(3), which we intercept and store in AtExitHandlers.
198 AtExitHandlers.push_back(F);
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITMemoryManager.cpp769 // AtExitHandlers - List of functions to call when the program exits,
771 static std::vector<void (*)()> AtExitHandlers; variable
775 /// AtExitHandlers.
778 while (!AtExitHandlers.empty()) {
779 void (*Fn)() = AtExitHandlers.back();
780 AtExitHandlers.pop_back();
828 AtExitHandlers.push_back(Fn); // Take note of atexit handler...

Completed in 98 milliseconds