aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
AgeCommit message (Expand)Author
2010-01-28Replace strcpy with memcpy when we have the length around anyway.Benjamin Kramer
2010-01-05These should probably be errs().David Greene
2010-01-05Change errs() to dbgs().David Greene
2009-11-18Fix passing of float arguments through ffi.Nick Lewycky
2009-11-17Fail less mysteriously; inform the user that their LLVM was not built withNick Lewycky
2009-11-08Remove ByteswapSCANFResults, it is dead.Daniel Dunbar
2009-11-08We don't need to byteswap, the interpreter assumes the program is runningNick Lewycky
2009-09-18Stop using alloca.Nick Lewycky
2009-09-17Some platforms may need malloc.h for alloca.Daniel Dunbar
2009-08-23remove some uses of llvm/Support/Streams.hChris Lattner
2009-08-13Push LLVMContexts through the IntegerType APIs.Owen Anderson
2009-08-12This void is implicit in C++.Dan Gohman
2009-08-07MSVC warning fixes; patch by Stein Roger!Daniel Dunbar
2009-07-24Switch to getNameStr().Daniel Dunbar
2009-07-22Simplify some uses of Value::getName()Daniel Dunbar
2009-07-11Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin
2009-07-07Have scoped mutexes take referenes instead of pointers.Owen Anderson
2009-06-22Add locking around the external function lookup table for the interpreter.Owen Anderson
2009-04-13Link against libffi if available, fall back to "no external calls fromNick Lewycky
2009-02-04Reapply patch from r62553, with a fix to avoid looking for an ffi.h that isn'tNick Lewycky
2009-01-22Revert r62553 and r62616 due to issues with portability.Tanya Lattner
2009-01-20Fix typo. Patch by Alexei Svitkine.Duncan Sands
2009-01-20Make the Interpreter use libffi if it's available. Patch from Alexei Svitkine!Nick Lewycky
2008-10-08Add <cstdio> include where needed by gcc-4.4.Duncan Sands
2008-08-05Use strcpy instead of sprintf here. This avoids a GCC 4.3 format-stringDan Gohman
2008-02-20Unbreak build with gcc 4.3: provide missed includes and silence most annoying...Anton Korobeynikov
2008-02-20Added memmove to interpreter external functions list. Patch by Daniel Dunbar.Evan Cheng
2008-01-29Use empty() instead of comparing size() with zero.Dan Gohman
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-12-14Add explicit keywords, and fix a minor typo that they uncovered.Dan Gohman
2007-12-12Add a guard to cxxabi header as other platform mayZhou Sheng
2007-12-12Fixed PR1629.Zhou Sheng
2007-12-10It looks like this has been broken for some time -Duncan Sands
2007-07-30Add a comment: don't expect from external function resolver in interpreterAnton Korobeynikov
2007-07-27VStudio compiler errors and placing Function*->ExFunc map under ManagedStatic...Chuck Rose III
2007-05-19On Linux platforms and at optimization levels -O1 and above, llvm-gcc canReid Spencer
2007-04-21We only need one putchar which gives it a shot at getting matched by itsReid Spencer
2007-03-30For PR1293:Reid Spencer
2007-03-06Adjust and simplify external function processing now that GenericValue hasReid Spencer
2007-01-12For PR1064:Reid Spencer
2007-01-11Rename BoolTy as Int1Ty. Patch by Sheng Zhou.Reid Spencer
2006-12-31For PR950:Reid Spencer
2006-12-07Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, areBill Wendling
2006-12-02Unbreak VC++ build.Jeff Cohen
2006-11-27Removed #include <iostream> and replaced streams with llvm streams.Bill Wendling
2006-11-08Remove redundant <cmath>.Jim Laskey
2006-08-16initial changes to support JIT'ing from multiple module providers, implicitlyChris Lattner
2006-06-01Fix -pedantic warningsChris Lattner
2006-05-24For PR786:Reid Spencer
2005-04-22Convert tabs to spacesMisha Brukman