summaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
Commit message (Expand)AuthorAge
* [C++] Use 'nullptr'.Craig Topper2014-04-24
* Don't expose symbols of lle_ functions.Benjamin Kramer2013-09-11
* llvm interpreter: select, shuffle and insertelement instructions.Elena Demikhovsky2013-09-02
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-02
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* Revert the majority of the next patch in the address space series:Chandler Carruth2012-11-01
* Resubmit the changes to llvm core to update the functions to support differen...Micah Villmow2012-10-15
* Revert 165732 for further review.Micah Villmow2012-10-11
* Add in the first iteration of support for llvm/clang/lldb to allow variable p...Micah Villmow2012-10-11
* Move TargetData to DataLayout.Micah Villmow2012-10-08
* EE/Interpreter/ExternalFunctions.cpp: Staticize lle_X_() entries. They can be...NAKAMURA Takumi2012-02-24
* EE/Interpreter/ExternalFunctions.cpp: Prune "C" linkage to suppress warnings ...NAKAMURA Takumi2012-02-24
* Using the new external-linkage warning recently added instead of disabling al...Aaron Ballman2012-02-14
* Fixing warning due to the new "UTD return type in extern 'C'".Aaron Ballman2012-02-14
* More dead code removal (using -Wunreachable-code)David Blaikie2012-01-20
* Remove all remaining uses of Value::getNameStr().Benjamin Kramer2011-11-15
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-18
* Land the long talked about "type system rewrite" patch. ThisChris Lattner2011-07-09
* eliminate the Type::getDescription() method, using "<<" instead. This Chris Lattner2011-06-18
* Merge System into Support.Michael J. Spencer2010-11-29
* Convert some tab stops into spaces.Duncan Sands2010-07-12
* rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner2010-04-07
* Typo noticed by Duncan.Torok Edwin2010-03-30
* Don't overwrite previous value, if it succeeded.Torok Edwin2010-03-30
* Honour addGlobalMapping() in the interpreter, if it was used to add mappings forTorok Edwin2010-03-30
* Replace strcpy with memcpy when we have the length around anyway.Benjamin Kramer2010-01-28
* These should probably be errs().David Greene2010-01-05
* Change errs() to dbgs().David Greene2010-01-05
* Fix passing of float arguments through ffi.Nick Lewycky2009-11-18
* Fail less mysteriously; inform the user that their LLVM was not built withNick Lewycky2009-11-17
* Remove ByteswapSCANFResults, it is dead.Daniel Dunbar2009-11-08
* We don't need to byteswap, the interpreter assumes the program is runningNick Lewycky2009-11-08
* Stop using alloca.Nick Lewycky2009-09-18
* Some platforms may need malloc.h for alloca.Daniel Dunbar2009-09-17
* remove some uses of llvm/Support/Streams.hChris Lattner2009-08-23
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-13
* This void is implicit in C++.Dan Gohman2009-08-12
* MSVC warning fixes; patch by Stein Roger!Daniel Dunbar2009-08-07
* Switch to getNameStr().Daniel Dunbar2009-07-24
* Simplify some uses of Value::getName()Daniel Dunbar2009-07-22
* Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin2009-07-11
* Have scoped mutexes take referenes instead of pointers.Owen Anderson2009-07-07
* Add locking around the external function lookup table for the interpreter.Owen Anderson2009-06-22
* Link against libffi if available, fall back to "no external calls fromNick Lewycky2009-04-13
* Reapply patch from r62553, with a fix to avoid looking for an ffi.h that isn'tNick Lewycky2009-02-04
* Revert r62553 and r62616 due to issues with portability.Tanya Lattner2009-01-22
* Fix typo. Patch by Alexei Svitkine.Duncan Sands2009-01-20
* Make the Interpreter use libffi if it's available. Patch from Alexei Svitkine!Nick Lewycky2009-01-20
* Add <cstdio> include where needed by gcc-4.4.Duncan Sands2008-10-08
* Use strcpy instead of sprintf here. This avoids a GCC 4.3 format-stringDan Gohman2008-08-05