aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
AgeCommit message (Expand)AuthorFilesLines
2010-11-29Merge System into Support.Michael J. Spencer1-2/+2
2010-07-12Convert some tab stops into spaces.Duncan Sands1-1/+1
2010-04-07rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner1-5/+5
2010-03-30Typo noticed by Duncan.Torok Edwin1-1/+1
2010-03-30Don't overwrite previous value, if it succeeded.Torok Edwin1-1/+2
2010-03-30Honour addGlobalMapping() in the interpreter, if it was used to add mappings forTorok Edwin1-0/+1
2010-01-28Replace strcpy with memcpy when we have the length around anyway.Benjamin Kramer1-3/+4
2010-01-05These should probably be errs().David Greene1-3/+3
2010-01-05Change errs() to dbgs().David Greene1-3/+3
2009-11-18Fix passing of float arguments through ffi.Nick Lewycky1-1/+1
2009-11-17Fail less mysteriously; inform the user that their LLVM was not built withNick Lewycky1-0/+3
2009-11-08Remove ByteswapSCANFResults, it is dead.Daniel Dunbar1-76/+0
2009-11-08We don't need to byteswap, the interpreter assumes the program is runningNick Lewycky1-8/+1
2009-09-18Stop using alloca.Nick Lewycky1-17/+14
2009-09-17Some platforms may need malloc.h for alloca.Daniel Dunbar1-3/+6
2009-08-23remove some uses of llvm/Support/Streams.hChris Lattner1-4/+4
2009-08-13Push LLVMContexts through the IntegerType APIs.Owen Anderson1-9/+12
2009-08-12This void is implicit in C++.Dan Gohman1-1/+1
2009-08-07MSVC warning fixes; patch by Stein Roger!Daniel Dunbar1-0/+11
2009-07-24Switch to getNameStr().Daniel Dunbar1-3/+3
2009-07-22Simplify some uses of Value::getName()Daniel Dunbar1-2/+2
2009-07-11Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin1-11/+13
2009-07-07Have scoped mutexes take referenes instead of pointers.Owen Anderson1-2/+2
2009-06-22Add locking around the external function lookup table for the interpreter.Owen Anderson1-1/+12
2009-04-13Link against libffi if available, fall back to "no external calls fromNick Lewycky1-8/+8
2009-02-04Reapply patch from r62553, with a fix to avoid looking for an ffi.h that isn'tNick Lewycky1-496/+212
2009-01-22Revert r62553 and r62616 due to issues with portability.Tanya Lattner1-206/+496
2009-01-20Fix typo. Patch by Alexei Svitkine.Duncan Sands1-1/+1
2009-01-20Make the Interpreter use libffi if it's available. Patch from Alexei Svitkine!Nick Lewycky1-496/+206
2008-10-08Add <cstdio> include where needed by gcc-4.4.Duncan Sands1-0/+1
2008-08-05Use strcpy instead of sprintf here. This avoids a GCC 4.3 format-stringDan Gohman1-1/+1
2008-02-20Unbreak build with gcc 4.3: provide missed includes and silence most annoying...Anton Korobeynikov1-0/+1
2008-02-20Added memmove to interpreter external functions list. Patch by Daniel Dunbar.Evan Cheng1-0/+9
2008-01-29Use empty() instead of comparing size() with zero.Dan Gohman1-3/+3
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner1-2/+2
2007-12-14Add explicit keywords, and fix a minor typo that they uncovered.Dan Gohman1-1/+1
2007-12-12Add a guard to cxxabi header as other platform mayZhou Sheng1-0/+12
2007-12-12Fixed PR1629.Zhou Sheng1-0/+40
2007-12-10It looks like this has been broken for some time -Duncan Sands1-2/+2
2007-07-30Add a comment: don't expect from external function resolver in interpreterAnton Korobeynikov1-0/+5
2007-07-27VStudio compiler errors and placing Function*->ExFunc map under ManagedStatic...Chuck Rose III1-4/+5
2007-05-19On Linux platforms and at optimization levels -O1 and above, llvm-gcc canReid Spencer1-3/+14
2007-04-21We only need one putchar which gives it a shot at getting matched by itsReid Spencer1-17/+4
2007-03-30For PR1293:Reid Spencer1-49/+67
2007-03-06Adjust and simplify external function processing now that GenericValue hasReid Spencer1-33/+41
2007-01-12For PR1064:Reid Spencer1-5/+9
2007-01-11Rename BoolTy as Int1Ty. Patch by Sheng Zhou.Reid Spencer1-1/+1
2006-12-31For PR950:Reid Spencer1-50/+46
2006-12-07Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, areBill Wendling1-7/+7
2006-12-02Unbreak VC++ build.Jeff Cohen1-0/+1