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

  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.cpp 65 while (!AtExitHandlers.empty()) {
66 callFunction(AtExitHandlers.back(), std::vector<GenericValue>());
67 AtExitHandlers.pop_back();
Interpreter.h 92 // AtExitHandlers - List of functions to call when the program exits,
94 std::vector<Function*> AtExitHandlers;
101 /// atexit(3), which we intercept and store in AtExitHandlers.
192 AtExitHandlers.push_back(F);
  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 771 // AtExitHandlers - List of functions to call when the program exits,
773 static std::vector<void (*)()> AtExitHandlers;
777 /// AtExitHandlers.
780 while (!AtExitHandlers.empty()) {
781 void (*Fn)() = AtExitHandlers.back();
782 AtExitHandlers.pop_back();
830 AtExitHandlers.push_back(Fn); // Take note of atexit handler...
    [all...]

Completed in 551 milliseconds