aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine
Commit message (Expand)AuthorAgeFilesLines
* 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
* Get rid of some leaks found by VC leak detector.Reid Spencer2004-12-131-0/+5
* Properly implement a fix for PR475Chris Lattner2004-12-052-13/+15
* Revert this patch, it broke a ton of programs.Chris Lattner2004-12-051-4/+0
* Fix PR475.Alkis Evlogimenos2004-12-051-0/+4
* Remove darwin specific majikChris Lattner2004-12-031-24/+0
* Do not look here for elegance.Chris Lattner2004-12-031-0/+24
* Remove unneeded cast.Chris Lattner2004-12-011-1/+0
* Fix the JIT when being used from llvm-dbChris Lattner2004-11-301-1/+1
* Use System/DynamicLibrary instead of Support/DynamicLinkerReid Spencer2004-11-294-12/+20
* Rename Emitter.cpp -> JITEmitter.cppChris Lattner2004-11-221-20/+20
* Fix the FIXME, nuke the JIT specific forceCompilationOf method.Chris Lattner2004-11-221-11/+0
* These methods are obsoleteChris Lattner2004-11-221-21/+1
* Support targets that require stubs for external functions betterChris Lattner2004-11-221-2/+18
* Clean up DEBUG outputChris Lattner2004-11-211-5/+5
* Allow targets to avoid emitting a stub for EVERY lazily resolved call. InChris Lattner2004-11-211-9/+30
* Implement relocation support by adding a target independent resolver interface.Chris Lattner2004-11-201-12/+133
* This method does not exist any longer.Chris Lattner2004-11-201-4/+0
* Add getCurrentPCOffset() and addRelocation() methods.Chris Lattner2004-11-201-6/+40
* Add accessorChris Lattner2004-11-201-0/+4
* Match change in MachineCodeEmitter prototype.Chris Lattner2004-11-191-2/+2
* This is a horrible hack to work around libstdc++ bugs :(Chris Lattner2004-11-191-2/+6
* Now that we have ghost linkage, we can force resolution of external symbolsChris Lattner2004-11-151-3/+8
* There is no reason to try to materialize the function from bytecode if itChris Lattner2004-11-151-9/+12
* Implement ExecutionEngine::freeMachineCodeForFunction()Misha Brukman2004-11-073-0/+15
* When emitting debug msgs for function stubs, don't truncate theBrian Gaeke2004-10-291-1/+1
* Fix library name.Reid Spencer2004-10-282-2/+2
* Change Library Names Not To Conflict With Others When InstalledReid Spencer2004-10-271-1/+1
* Changes to support rand48 testsReid Spencer2004-10-271-0/+15
* Fix the interpreter crash that Michael McCracken foundChris Lattner2004-10-261-0/+1
* Use cleaner quoting and eliminate blank spaceMisha Brukman2004-10-221-3/+3
* We won't use automakeReid Spencer2004-10-226-2170/+0
* Initial automake generated Makefile templateReid Spencer2004-10-183-0/+2097
* Add support for unreachableChris Lattner2004-10-162-0/+6
* Add support for undefChris Lattner2004-10-161-1/+3
* Update to reflect changes in Makefile rules.Reid Spencer2004-10-133-12/+14
* Initial version of automake Makefile.am file.Reid Spencer2004-10-103-0/+71
* Convert code to compile with vc7.1.Reid Spencer2004-09-151-2/+3
* Simplify the sys::Memory interface per Chris' request.Reid Spencer2004-09-131-2/+2
* Convert the Emitter to use the lib/System "Memory" interface instead of theReid Spencer2004-09-111-2/+5
* Changes For Bug 352Reid Spencer2004-09-017-12/+12
* Add a special case for argc,argvChris Lattner2004-08-161-2/+13
* Don't pass too many arguments into runFunctionChris Lattner2004-08-161-8/+15
* Finally, add support for calling arbitrary non-varargs functions.Chris Lattner2004-08-161-9/+58
* Handle all nullary functions, of any valid return type.Chris Lattner2004-08-151-7/+46
* Fine, go all of the way and check that the argument types are correct as well.Chris Lattner2004-08-151-13/+27
* These only really work if returning int or voidChris Lattner2004-08-151-17/+21
* Handle zero arg function caseChris Lattner2004-08-151-1/+5