aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine
Commit message (Expand)AuthorAgeFilesLines
* Move target specific code to target files. The new MachineCodeEmitterChris Lattner2003-06-016-196/+80
* Fix induction variable name clash in for loops, in finishFunction().Brian Gaeke2003-06-011-3/+8
* Fixed rewriting of branches -- they now work forward and backward.Misha Brukman2003-05-311-4/+9
* Since malloc is no longer used, no need to free() memory.Misha Brukman2003-05-301-15/+11
* Fix call to mmap, so that it can be used on sparc.Brian Gaeke2003-05-301-10/+5
* mmap() seems to be failing on Sparc, so just use malloc()/free() .Misha Brukman2003-05-281-4/+29
* Link in Sparc libs for the JIT, even on X86 to be able to support debuggingMisha Brukman2003-05-271-3/+19
* Allow for specification of which JIT to run on the commandline.Misha Brukman2003-05-275-14/+271
* Fix typeosChris Lattner2003-05-141-4/+4
* Add support for more constant expressionsChris Lattner2003-05-141-6/+35
* Add support for atexit function, remove support for __main functionChris Lattner2003-05-145-14/+37
* Add support for atexit handlers to the JIT, fixing 2003-05-14-AtExit.cChris Lattner2003-05-144-4/+35
* Fix compilation problems with previous checking *blush*Chris Lattner2003-05-141-3/+4
* Add a framework for intercepting system callsChris Lattner2003-05-142-21/+54
* Clean up castChris Lattner2003-05-131-1/+1
* Make sure that globals are emitted AFTER the passmanager is set up for the JIT,Chris Lattner2003-05-122-0/+2
* switch main LLI core execution to use an InstVisitor instead of a switch stat...Chris Lattner2003-05-102-67/+61
* Fix testcase: SingleSource/UnitTests/2003-05-02-DependantPHI.cChris Lattner2003-05-102-34/+55
* Add support for function stubs, which allow calling functions which need toChris Lattner2003-05-095-8/+81
* Minor speedup by avoiding callbacks to functions already generatedChris Lattner2003-05-082-6/+9
* Improve efficiency of JIT by having it use direct function calls instead ofChris Lattner2003-05-084-36/+34
* assert early instead of late for unimplemented featureChris Lattner2003-05-081-3/+10
* Implement varargs support for LLI!Chris Lattner2003-05-082-73/+56
* Add a pointersize/endianness safe load routine to match the store routineChris Lattner2003-05-081-0/+76
* A large number of simple changes:Chris Lattner2003-05-087-178/+95
* Add support for recording arguments passed through the ... of a varargs functionChris Lattner2003-05-082-10/+17
* Fix bug: Jello/2003-05-07-ArgumentTest.llxChris Lattner2003-05-071-17/+33
* Remove two fields from TargetData which are target specific.Chris Lattner2003-04-261-1/+0
* Only do the %ld -> %lld promotion when running a 64 bit bytecode on a 32 bit ...Chris Lattner2003-04-251-1/+2
* Add __strdupChris Lattner2003-04-251-0/+7
* MAke sure that LLI properly configures align_of(double)Chris Lattner2003-04-251-0/+1
* Fix problem where we would read 64 bits worth of pointer information, even on...Chris Lattner2003-04-251-10/+10
* Fix bug where pointers were assumed to always be 64 bits in size!Chris Lattner2003-04-231-4/+8
* Add memcpyChris Lattner2003-04-231-0/+7
* Fix a problem with setcc instructions and pointersChris Lattner2003-04-231-6/+15
* Implement a bunch of new external functionsChris Lattner2003-04-231-0/+54
* Implement &|^ on bool valuesChris Lattner2003-04-231-0/+3
* Add support for _IO_getc function used on linuxChris Lattner2003-04-231-0/+6
* * Implement access to external variables in LLIChris Lattner2003-04-231-10/+31
* We now need to link libscalar to get the switch lowering passChris Lattner2003-04-231-2/+2
* Kill using declarationsChris Lattner2003-04-221-96/+101
* Implement cast to boolChris Lattner2003-04-221-0/+2
* Get rid of extraneous arguments to implementation functionsChris Lattner2003-04-221-31/+31
* Add support to LLI for switch instructionChris Lattner2003-04-221-0/+22
* Make stderr, stdout, stdin work with LLIChris Lattner2003-04-211-0/+6
* Fix wierd idiomChris Lattner2003-04-211-1/+1
* fprintf CAN take exactly 2 argsChris Lattner2003-04-211-1/+1
* Implement scanf and fix sscanf to actually endian swap the results correctlyChris Lattner2003-03-311-2/+97
* Fix typeoChris Lattner2003-02-251-1/+1
* Fix warnings on sparcChris Lattner2003-01-291-4/+5