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 68 while (!AtExitHandlers.empty()) {
69 callFunction(AtExitHandlers.back(), std::vector<GenericValue>());
70 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.
198 AtExitHandlers.push_back(F);
  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 769 // AtExitHandlers - List of functions to call when the program exits,
771 static std::vector<void (*)()> AtExitHandlers;
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...
    [all...]

Completed in 64 milliseconds