Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 1 | //===-- Intercept.cpp - System function interception routines -------------===// |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 9 | // |
| 10 | // If a function call occurs to an external function, the JIT is designed to use |
Brian Gaeke | 322cdb2 | 2003-10-10 17:02:42 +0000 | [diff] [blame] | 11 | // the dynamic loader interface to find a function to call. This is useful for |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 12 | // calling system calls and library functions that are not available in LLVM. |
| 13 | // Some system calls, however, need to be handled specially. For this reason, |
| 14 | // we intercept some of them here and use our own stubs to handle them. |
| 15 | // |
| 16 | //===----------------------------------------------------------------------===// |
| 17 | |
| 18 | #include "VM.h" |
Brian Gaeke | 322cdb2 | 2003-10-10 17:02:42 +0000 | [diff] [blame] | 19 | #include "Support/DynamicLinker.h" |
Chris Lattner | 1b72216 | 2003-05-14 13:27:36 +0000 | [diff] [blame] | 20 | #include <iostream> |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 21 | |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame^] | 22 | namespace llvm { |
| 23 | |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 24 | // AtExitHandlers - List of functions to call when the program exits, |
| 25 | // registered with the atexit() library function. |
| 26 | static std::vector<void (*)()> AtExitHandlers; |
Chris Lattner | 22080f9 | 2003-05-14 13:53:40 +0000 | [diff] [blame] | 27 | |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 28 | /// runAtExitHandlers - Run any functions registered by the program's |
| 29 | /// calls to atexit(3), which we intercept and store in |
| 30 | /// AtExitHandlers. |
| 31 | /// |
Chris Lattner | 22080f9 | 2003-05-14 13:53:40 +0000 | [diff] [blame] | 32 | void VM::runAtExitHandlers() { |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 33 | while (!AtExitHandlers.empty()) { |
| 34 | void (*Fn)() = AtExitHandlers.back(); |
| 35 | AtExitHandlers.pop_back(); |
Chris Lattner | 22080f9 | 2003-05-14 13:53:40 +0000 | [diff] [blame] | 36 | Fn(); |
| 37 | } |
| 38 | } |
| 39 | |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 40 | //===----------------------------------------------------------------------===// |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 41 | // Function stubs that are invoked instead of certain library calls |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 42 | //===----------------------------------------------------------------------===// |
| 43 | |
| 44 | // NoopFn - Used if we have nothing else to call... |
| 45 | static void NoopFn() {} |
| 46 | |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 47 | // jit_exit - Used to intercept the "exit" library call. |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 48 | static void jit_exit(int Status) { |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 49 | VM::runAtExitHandlers(); // Run atexit handlers... |
Chris Lattner | 22080f9 | 2003-05-14 13:53:40 +0000 | [diff] [blame] | 50 | exit(Status); |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 51 | } |
| 52 | |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 53 | // jit_atexit - Used to intercept the "atexit" library call. |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 54 | static int jit_atexit(void (*Fn)(void)) { |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 55 | AtExitHandlers.push_back(Fn); // Take note of atexit handler... |
Chris Lattner | 22080f9 | 2003-05-14 13:53:40 +0000 | [diff] [blame] | 56 | return 0; // Always successful |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | //===----------------------------------------------------------------------===// |
| 60 | // |
| 61 | /// getPointerToNamedFunction - This method returns the address of the specified |
Brian Gaeke | 322cdb2 | 2003-10-10 17:02:42 +0000 | [diff] [blame] | 62 | /// function by using the dynamic loader interface. As such it is only useful |
| 63 | /// for resolving library symbols, not code generated symbols. |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 64 | /// |
| 65 | void *VM::getPointerToNamedFunction(const std::string &Name) { |
| 66 | // Check to see if this is one of the functions we want to intercept... |
Chris Lattner | 1b72216 | 2003-05-14 13:27:36 +0000 | [diff] [blame] | 67 | if (Name == "exit") return (void*)&jit_exit; |
Chris Lattner | 22080f9 | 2003-05-14 13:53:40 +0000 | [diff] [blame] | 68 | if (Name == "atexit") return (void*)&jit_atexit; |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 69 | |
| 70 | // If it's an external function, look it up in the process image... |
Brian Gaeke | 322cdb2 | 2003-10-10 17:02:42 +0000 | [diff] [blame] | 71 | void *Ptr = GetAddressOfSymbol(Name); |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 72 | if (Ptr == 0) { |
| 73 | std::cerr << "WARNING: Cannot resolve fn '" << Name |
| 74 | << "' using a dummy noop function instead!\n"; |
| 75 | Ptr = (void*)NoopFn; |
| 76 | } |
| 77 | |
| 78 | return Ptr; |
| 79 | } |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame^] | 80 | |
| 81 | } // End llvm namespace |