summaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine/JIT/Intercept.cpp
Commit message (Expand)AuthorAgeFilesLines
* Fix a comment.NAKAMURA Takumi2010-08-301-1/+1
* EE/JIT: Do not invoke parent's ctors/dtors from main()! (PR3897)NAKAMURA Takumi2010-08-301-0/+12
* rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner2010-04-071-1/+1
* remove some uses of llvm/Support/Streams.hChris Lattner2009-08-231-1/+0
* This void is implicit in C++.Dan Gohman2009-08-121-1/+1
* Fix a bunch of namespace pollution.Dan Gohman2009-08-071-0/+2
* llvm_report_error already prints "LLVM ERROR:". So stop reporting errors like...Benjamin Kramer2009-08-031-1/+1
* Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin2009-07-111-3/+3
* stat64/open64/lseek64 for the interpreterTorok Edwin2009-05-231-1/+4
* Fix misplaced right parentheses.Evan Cheng2009-01-051-2/+2
* Handle weak_extern in the JIT. This fixesDan Gohman2009-01-051-6/+9
* Add a new flag that disables symbol lookup with dlsym when set. This allowsChris Lattner2008-06-161-33/+35
* Add #includes to make some dependencies explicit.Dan Gohman2008-05-231-0/+1
* Remove symbols that don't exist, remove tabs, fix comment typoChris Lattner2008-01-031-17/+15
* Fix PR1873, a problem finding stat-related symbols on linux, due toChris Lattner2008-01-031-9/+20
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* for consistency, allow a fallthrough if the final check returns null.Chris Lattner2007-11-281-1/+2
* Make this actually work on systems that support ppc long double.Chris Lattner2007-11-271-3/+8
* Unbreak all of the darwin/ppc32 JIT failures having to do Chris Lattner2007-11-271-0/+10
* add a mechanism for the JIT to invoke a function to lazily create functions a...Chris Lattner2007-10-221-0/+5
* llvm-gcc3 is dead, along with it __main.Chris Lattner2007-10-221-12/+0
* Removing even more <iostream> includes.Bill Wendling2006-12-071-3/+2
* Fix handling of asm specifiers for external globals. This unbreaks many programsChris Lattner2006-07-281-1/+12
* Fix warning on linuxChris Lattner2006-07-271-8/+8
* Silence some -pedantic warnings.Chris Lattner2006-06-011-4/+6
* Convert llvm.cs.uiuc.edu -> llvm.orgReid Spencer2006-03-141-1/+1
* Remove trailing whitespaceMisha Brukman2005-04-211-5/+5
* Be double sure about including sys/stat.h by wrapping the inclusion inReid Spencer2004-12-201-0/+3
* Move the #include of sys/stat.h inside the linux "hack" for the statReid Spencer2004-12-171-3/+1
* Only #include sys/stat.h if we're on linux where we have the PR274 problem.Reid Spencer2004-12-171-0/+2
* Remove darwin specific majikChris Lattner2004-12-031-24/+0
* Do not look here for elegance.Chris Lattner2004-12-031-0/+24
* Use System/DynamicLibrary instead of Support/DynamicLinkerReid Spencer2004-11-291-2/+2
* Changes For Bug 352Reid Spencer2004-09-011-1/+1
* Implement PR315: abort, don't warn, when missing external functions encounteredChris Lattner2004-06-011-9/+17
* My fix for PR274 broke the build on Darwin/PPC. As I'm fairly certain thisBrian Gaeke2004-03-101-2/+4
* Address PR274 - '[JIT] Programs cannot resolve the fstat function'Brian Gaeke2004-03-091-0/+18
* No longer run atExit functions from run()Chris Lattner2003-12-261-2/+2
* Cleanup the JIT as per PR176. This renames the VM class to JIT, and merges theChris Lattner2003-12-201-4/+4
* Finegrainify namespacificationChris Lattner2003-12-081-4/+1
* Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke2003-11-111-0/+4
* Added LLVM project notice to the top of every C++ source file.John Criswell2003-10-201-0/+7
* Change to use GetAddressOfSymbol instead of dlsym.Brian Gaeke2003-10-101-10/+5
* Make CreateArgv part of lli rather than part of ExecutionEngine.Brian Gaeke2003-09-051-10/+15
* Clean up code dealing with RTLD_SELF differences on Sparc and X86.Misha Brukman2003-07-281-5/+5
* Merged in autoconf branch. This provides configuration via the autoconfJohn Criswell2003-06-301-1/+1
* Sparc's dlsym() requires the special operand RTLD_SELF to find a symbol in theMisha Brukman2003-06-041-0/+4
* Add support for atexit handlers to the JIT, fixing 2003-05-14-AtExit.cChris Lattner2003-05-141-3/+16
* Fix compilation problems with previous checking *blush*Chris Lattner2003-05-141-3/+4
* Add a framework for intercepting system callsChris Lattner2003-05-141-0/+52