Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 1 | //===-- Intercept.cpp - System function interception routines -------------===// |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 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. |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 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 | |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 18 | #include "JIT.h" |
Reid Spencer | df5a37e | 2004-11-29 14:11:29 +0000 | [diff] [blame] | 19 | #include "llvm/System/DynamicLibrary.h" |
Reid Spencer | 099557b | 2004-12-20 06:34:02 +0000 | [diff] [blame] | 20 | #include "llvm/Config/config.h" |
Chris Lattner | 1b72216 | 2003-05-14 13:27:36 +0000 | [diff] [blame] | 21 | #include <iostream> |
Chris Lattner | c19aade | 2003-12-08 08:06:28 +0000 | [diff] [blame] | 22 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 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 | ff0f1bb | 2003-12-26 06:13:47 +0000 | [diff] [blame] | 32 | static void 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 | |
Brian Gaeke | 00f0a29 | 2004-03-09 05:22:10 +0000 | [diff] [blame] | 44 | // Force the following functions to be linked in to anything that uses the |
| 45 | // JIT. This is a hack designed to work around the all-too-clever Glibc |
| 46 | // strategy of making these functions work differently when inlined vs. when |
| 47 | // not inlined, and hiding their real definitions in a separate archive file |
| 48 | // that the dynamic linker can't see. For more info, search for |
Reid Spencer | 9dce2b3 | 2006-03-14 05:54:52 +0000 | [diff] [blame] | 49 | // 'libc_nonshared.a' on Google, or read http://llvm.org/PR274. |
Brian Gaeke | d0f3c5e | 2004-03-10 17:38:28 +0000 | [diff] [blame] | 50 | #if defined(__linux__) |
Reid Spencer | 099557b | 2004-12-20 06:34:02 +0000 | [diff] [blame] | 51 | #if defined(HAVE_SYS_STAT_H) |
Reid Spencer | 6b4bd6b | 2004-12-17 19:09:16 +0000 | [diff] [blame] | 52 | #include <sys/stat.h> |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 53 | #endif |
Brian Gaeke | 00f0a29 | 2004-03-09 05:22:10 +0000 | [diff] [blame] | 54 | void *FunctionPointers[] = { |
| 55 | (void *) stat, |
Brian Gaeke | 00f0a29 | 2004-03-09 05:22:10 +0000 | [diff] [blame] | 56 | (void *) fstat, |
Brian Gaeke | 00f0a29 | 2004-03-09 05:22:10 +0000 | [diff] [blame] | 57 | (void *) lstat, |
Brian Gaeke | d0f3c5e | 2004-03-10 17:38:28 +0000 | [diff] [blame] | 58 | (void *) stat64, |
| 59 | (void *) fstat64, |
Brian Gaeke | 00f0a29 | 2004-03-09 05:22:10 +0000 | [diff] [blame] | 60 | (void *) lstat64, |
| 61 | (void *) atexit, |
| 62 | (void *) mknod |
| 63 | }; |
Brian Gaeke | d0f3c5e | 2004-03-10 17:38:28 +0000 | [diff] [blame] | 64 | #endif // __linux__ |
Brian Gaeke | 00f0a29 | 2004-03-09 05:22:10 +0000 | [diff] [blame] | 65 | |
Chris Lattner | abf1cd3 | 2004-06-01 21:49:00 +0000 | [diff] [blame] | 66 | // __mainFunc - If the program does not have a linked in __main function, allow |
| 67 | // it to run, but print a warning. |
| 68 | static void __mainFunc() { |
| 69 | fprintf(stderr, "WARNING: Program called __main but was not linked to " |
| 70 | "libcrtend.a.\nThis probably won't hurt anything unless the " |
| 71 | "program is written in C++.\n"); |
| 72 | } |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 73 | |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 74 | // jit_exit - Used to intercept the "exit" library call. |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 75 | static void jit_exit(int Status) { |
Chris Lattner | ff0f1bb | 2003-12-26 06:13:47 +0000 | [diff] [blame] | 76 | runAtExitHandlers(); // Run atexit handlers... |
Chris Lattner | 22080f9 | 2003-05-14 13:53:40 +0000 | [diff] [blame] | 77 | exit(Status); |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 78 | } |
| 79 | |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 80 | // jit_atexit - Used to intercept the "atexit" library call. |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 81 | static int jit_atexit(void (*Fn)(void)) { |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 82 | AtExitHandlers.push_back(Fn); // Take note of atexit handler... |
Chris Lattner | 22080f9 | 2003-05-14 13:53:40 +0000 | [diff] [blame] | 83 | return 0; // Always successful |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | //===----------------------------------------------------------------------===// |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 87 | // |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 88 | /// getPointerToNamedFunction - This method returns the address of the specified |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 89 | /// function by using the dynamic loader interface. As such it is only useful |
Brian Gaeke | 322cdb2 | 2003-10-10 17:02:42 +0000 | [diff] [blame] | 90 | /// for resolving library symbols, not code generated symbols. |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 91 | /// |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 92 | void *JIT::getPointerToNamedFunction(const std::string &Name) { |
Chris Lattner | fea34a1 | 2006-06-01 17:12:14 +0000 | [diff] [blame] | 93 | // Check to see if this is one of the functions we want to intercept. Note, |
| 94 | // we cast to intptr_t here to silence a -pedantic warning that complains |
| 95 | // about casting a function pointer to a normal pointer. |
| 96 | if (Name == "exit") return (void*)(intptr_t)&jit_exit; |
| 97 | if (Name == "atexit") return (void*)(intptr_t)&jit_atexit; |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 98 | |
Chris Lattner | abf1cd3 | 2004-06-01 21:49:00 +0000 | [diff] [blame] | 99 | // If the program does not have a linked in __main function, allow it to run, |
| 100 | // but print a warning. |
Chris Lattner | fea34a1 | 2006-06-01 17:12:14 +0000 | [diff] [blame] | 101 | if (Name == "__main") return (void*)(intptr_t)&__mainFunc; |
Chris Lattner | abf1cd3 | 2004-06-01 21:49:00 +0000 | [diff] [blame] | 102 | |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 103 | // If it's an external function, look it up in the process image... |
Reid Spencer | df5a37e | 2004-11-29 14:11:29 +0000 | [diff] [blame] | 104 | void *Ptr = sys::DynamicLibrary::SearchForAddressOfSymbol(Name); |
Chris Lattner | abf1cd3 | 2004-06-01 21:49:00 +0000 | [diff] [blame] | 105 | if (Ptr) return Ptr; |
| 106 | |
| 107 | std::cerr << "ERROR: Program used external function '" << Name |
| 108 | << "' which could not be resolved!\n"; |
| 109 | abort(); |
| 110 | return 0; |
Chris Lattner | 6701a86 | 2003-05-14 13:26:47 +0000 | [diff] [blame] | 111 | } |