aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
Commit message (Expand)AuthorAgeFilesLines
* Convert some tab stops into spaces.Duncan Sands2010-07-121-1/+1
* rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner2010-04-071-5/+5
* Typo noticed by Duncan.Torok Edwin2010-03-301-1/+1
* Don't overwrite previous value, if it succeeded.Torok Edwin2010-03-301-1/+2
* Honour addGlobalMapping() in the interpreter, if it was used to add mappings forTorok Edwin2010-03-301-0/+1
* Replace strcpy with memcpy when we have the length around anyway.Benjamin Kramer2010-01-281-3/+4
* These should probably be errs().David Greene2010-01-051-3/+3
* Change errs() to dbgs().David Greene2010-01-051-3/+3
* Fix passing of float arguments through ffi.Nick Lewycky2009-11-181-1/+1
* Fail less mysteriously; inform the user that their LLVM was not built withNick Lewycky2009-11-171-0/+3
* Remove ByteswapSCANFResults, it is dead.Daniel Dunbar2009-11-081-76/+0
* We don't need to byteswap, the interpreter assumes the program is runningNick Lewycky2009-11-081-8/+1
* Stop using alloca.Nick Lewycky2009-09-181-17/+14
* Some platforms may need malloc.h for alloca.Daniel Dunbar2009-09-171-3/+6
* remove some uses of llvm/Support/Streams.hChris Lattner2009-08-231-4/+4
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-131-9/+12
* This void is implicit in C++.Dan Gohman2009-08-121-1/+1
* MSVC warning fixes; patch by Stein Roger!Daniel Dunbar2009-08-071-0/+11
* Switch to getNameStr().Daniel Dunbar2009-07-241-3/+3
* Simplify some uses of Value::getName()Daniel Dunbar2009-07-221-2/+2
* Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin2009-07-111-11/+13
* Have scoped mutexes take referenes instead of pointers.Owen Anderson2009-07-071-2/+2
* Add locking around the external function lookup table for the interpreter.Owen Anderson2009-06-221-1/+12
* Link against libffi if available, fall back to "no external calls fromNick Lewycky2009-04-131-8/+8
* Reapply patch from r62553, with a fix to avoid looking for an ffi.h that isn'tNick Lewycky2009-02-041-496/+212
* Revert r62553 and r62616 due to issues with portability.Tanya Lattner2009-01-221-206/+496
* Fix typo. Patch by Alexei Svitkine.Duncan Sands2009-01-201-1/+1
* Make the Interpreter use libffi if it's available. Patch from Alexei Svitkine!Nick Lewycky2009-01-201-496/+206
* Add <cstdio> include where needed by gcc-4.4.Duncan Sands2008-10-081-0/+1
* Use strcpy instead of sprintf here. This avoids a GCC 4.3 format-stringDan Gohman2008-08-051-1/+1
* Unbreak build with gcc 4.3: provide missed includes and silence most annoying...Anton Korobeynikov2008-02-201-0/+1
* Added memmove to interpreter external functions list. Patch by Daniel Dunbar.Evan Cheng2008-02-201-0/+9
* Use empty() instead of comparing size() with zero.Dan Gohman2008-01-291-3/+3
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Add explicit keywords, and fix a minor typo that they uncovered.Dan Gohman2007-12-141-1/+1
* Add a guard to cxxabi header as other platform mayZhou Sheng2007-12-121-0/+12
* Fixed PR1629.Zhou Sheng2007-12-121-0/+40
* It looks like this has been broken for some time -Duncan Sands2007-12-101-2/+2
* Add a comment: don't expect from external function resolver in interpreterAnton Korobeynikov2007-07-301-0/+5
* VStudio compiler errors and placing Function*->ExFunc map under ManagedStatic...Chuck Rose III2007-07-271-4/+5
* On Linux platforms and at optimization levels -O1 and above, llvm-gcc canReid Spencer2007-05-191-3/+14
* We only need one putchar which gives it a shot at getting matched by itsReid Spencer2007-04-211-17/+4
* For PR1293:Reid Spencer2007-03-301-49/+67
* Adjust and simplify external function processing now that GenericValue hasReid Spencer2007-03-061-33/+41
* For PR1064:Reid Spencer2007-01-121-5/+9
* Rename BoolTy as Int1Ty. Patch by Sheng Zhou.Reid Spencer2007-01-111-1/+1
* For PR950:Reid Spencer2006-12-311-50/+46
* Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, areBill Wendling2006-12-071-7/+7
* Unbreak VC++ build.Jeff Cohen2006-12-021-0/+1
* Removed #include <iostream> and replaced streams with llvm streams.Bill Wendling2006-11-271-6/+7