- f58815e Interpreter cleanups: by Brian Gaeke · 22 years ago
- 82d8277 ExecutionEngine.cpp: Move execution engine creation stuff into a new by Brian Gaeke · 22 years ago
- 253aef8e Preselection is now integrated into the Sparc target library by Chris Lattner · 22 years ago
- 0748a39 Sparc peephole optimizer moved out of post-opts library into Sparc target library by Chris Lattner · 22 years ago
- c879e8f Consult the target data, not the module, about how large the current pointer by Chris Lattner · 22 years ago
- 39c0726 Targets now configure themselves based on the source module, not on the by Chris Lattner · 22 years ago
- 1543e40 Add preliminary support for "any" pointersize/endianness. This will need by Chris Lattner · 22 years ago
- 05a1a30 Minor cleanups: wrap at 80 lines. Convert file comment to doxygen format and by Chris Lattner · 22 years ago
- 69582b3 The JIT now passes the environment pointer to the main() function when it by John Criswell · 22 years ago
- c88a4ea no really, implement it! by Chris Lattner · 22 years ago
- 74cf819 Add support for casting any pointer to any integer type by Chris Lattner · 22 years ago
- 5560c9d Spell `necessary' correctly. by Misha Brukman · 22 years ago
- 80df463 rename selection library to selectiondag by Chris Lattner · 22 years ago
- 688506d Implement a _REAL_ memory manager for the code generated by the JIT. This by Chris Lattner · 22 years ago
- fb0ef2e Deconstify parameter to getPointerToFunction(). by Brian Gaeke · 22 years ago
- c227c1f Deconstify parameter to getPointerToFunction(). by Brian Gaeke · 22 years ago
- 71d8478 Deconstify parameter to getPointerToFunction(). by Brian Gaeke · 22 years ago
- 37df460 In ExecutionEngine::getPointerToGlobal(), throw away const qualifier by Brian Gaeke · 22 years ago
- 4c7fc1e Incorporate mapping library into the sparc library by Chris Lattner · 22 years ago
- 4c08840 Include the new selection library for the X86 target by Chris Lattner · 22 years ago
- 3785fad Specify DEBUG_TYPE's for the JIT debug messages by Chris Lattner · 22 years ago
- c648dab DEBUG got moved to Debug.h by Chris Lattner · 22 years ago
- 89e8be0 * Stop hard-coding a value for beginning of emitted code on Sparc since we can by Misha Brukman · 22 years ago
- fd31a78 Add rationale for the MAP_ANONYMOUS vs. MAP_ANON flags. by Misha Brukman · 22 years ago
- d69c1e6 Add ability for external C code to get pointers to functions given their name. by Misha Brukman · 22 years ago
- d94a50f Clean up code dealing with RTLD_SELF differences on Sparc and X86. by Misha Brukman · 22 years ago
- df38dae Fix reference to architecture. by Misha Brukman · 22 years ago
- 248ea32 Add in support to load shared objects (-load is provided by Support library). by Misha Brukman · 22 years ago
- a84983e Fix space by Chris Lattner · 22 years ago
- 832688a Remove redundant const qualifier by Chris Lattner · 22 years ago
- 06dabfa Cleaned up the code which chooses the appropriate value for the file descriptor by Misha Brukman · 22 years ago
- 859e09f Clean up my last checkin: code is easier to read and explains the differences in by Misha Brukman · 22 years ago
- 291c2c5 On Sparc/Solaris, the special handle RTLD_SELF is used as a handle referring to by Misha Brukman · 22 years ago
- 8274291 * If compiling on X86 or Sparc, automagically enable the JIT for that arch by Misha Brukman · 22 years ago
- 7a73b80 Merged in autoconf branch. This provides configuration via the autoconf system. by John Criswell · 22 years ago
- 02c26b6 Get rid of the duplicate '0x' in debug mode. by Brian Gaeke · 22 years ago
- 7033798 Include <cmath> instead of <math.h> by Brian Gaeke · 22 years ago
- 4399a49 Add #ifdef hack for MAP_ANONYMOUS being spelled MAP_ANON on some platforms. by Brian Gaeke · 22 years ago
- 5285270 Use $(PLATFORMLIBDL) to selectively bring in -ldl only on those platforms where by Brian Gaeke · 22 years ago
- 1d0acac Use std::isnan instead of isnan. Brought back to you from the by Brian Gaeke · 22 years ago
- f25b772 Life is too short. Link in too much stuff on Linux to make building on sun easier by Chris Lattner · 22 years ago
- da60140 The never-ending odyssey trying to get sparc to link by Chris Lattner · 22 years ago
- d562436 Make sure to get the value of ARCH before we use it by Chris Lattner · 22 years ago
- 2bf4c61 Do not link in the Sparc JIT when building on X86. Eventually the sparc will not by Chris Lattner · 22 years ago
- de3209b Apparently "sparc" is a macro on sparcs. Ugh. :) by Chris Lattner · 22 years ago
- 7a5500e Whoops, didn't mean to check that in :( by Chris Lattner · 22 years ago
- 97ac14f Use more structured command line option processing by Chris Lattner · 22 years ago
- 7aefa96 #ifdef out code that only applies when the HOSTARCH = sparc by Chris Lattner · 22 years ago
- 08d5e1f Add #include for older GCC's by Chris Lattner · 22 years ago
- 4e8c999 ::: HACK ALERT ::: HACK ALERT ::: HACK ALERT ::: HACK ALERT ::: HACK ALERT ::: by Misha Brukman · 22 years ago
- 1d44085 Output function address as hex. by Misha Brukman · 22 years ago
- cf614a3 Removed debug print statement. by Misha Brukman · 22 years ago
- 3a55e8a * Institute a hack for the Sparc call to mmap() to get our generated code to be by Misha Brukman · 22 years ago
- 88fe358 Sparc's dlsym() requires the special operand RTLD_SELF to find a symbol in the by Misha Brukman · 22 years ago
- 906f5fa * Removed SparcEmitter.cpp; rolled into lib/Target/Sparc/SparcV9CodeEmitter.cpp by Misha Brukman · 22 years ago
- 24a26e5 The flag modifications weren't picking up the old values of the by Brian Gaeke · 22 years ago
- d5af63f Remove obsolete code by Chris Lattner · 22 years ago
- bba1b6d Move target specific code to target files. The new MachineCodeEmitter by Chris Lattner · 22 years ago
- 63b99f9 Fix induction variable name clash in for loops, in finishFunction(). by Brian Gaeke · 22 years ago
- f86d635 Fixed rewriting of branches -- they now work forward and backward. by Misha Brukman · 22 years ago
- 417a7c0 Since malloc is no longer used, no need to free() memory. by Misha Brukman · 22 years ago
- 6607fbe Fix call to mmap, so that it can be used on sparc. by Brian Gaeke · 22 years ago
- 8e5bf70 mmap() seems to be failing on Sparc, so just use malloc()/free() . by Misha Brukman · 22 years ago
- 1df4d5e Link in Sparc libs for the JIT, even on X86 to be able to support debugging by Misha Brukman · 22 years ago
- abb027c Allow for specification of which JIT to run on the commandline. by Misha Brukman · 22 years ago
- 6b2125c Fix typeos by Chris Lattner · 22 years ago
- 9a23122 Add support for more constant expressions by Chris Lattner · 22 years ago
- 44edb6b Add support for atexit function, remove support for __main function by Chris Lattner · 22 years ago
- 22080f9 Add support for atexit handlers to the JIT, fixing 2003-05-14-AtExit.c by Chris Lattner · 22 years ago
- 1b72216 Fix compilation problems with previous checking *blush* by Chris Lattner · 22 years ago
- 6701a86 Add a framework for intercepting system calls by Chris Lattner · 22 years ago
- 7e52742 Clean up cast by Chris Lattner · 22 years ago
- 56adf15 Make sure that globals are emitted AFTER the passmanager is set up for the JIT, by Chris Lattner · 22 years ago
- d7916e9 switch main LLI core execution to use an InstVisitor instead of a switch statement by Chris Lattner · 22 years ago
- 77113b6 Fix testcase: SingleSource/UnitTests/2003-05-02-DependantPHI.c by Chris Lattner · 22 years ago
- 6125fdd Add support for function stubs, which allow calling functions which need to by Chris Lattner · 22 years ago
- eb5a93b Minor speedup by avoiding callbacks to functions already generated by Chris Lattner · 22 years ago
- c309a76 Improve efficiency of JIT by having it use direct function calls instead of by Chris Lattner · 22 years ago
- 66a8494 assert early instead of late for unimplemented feature by Chris Lattner · 22 years ago
- 374344c Implement varargs support for LLI! by Chris Lattner · 22 years ago
- f88b9a6 Add a pointersize/endianness safe load routine to match the store routine by Chris Lattner · 22 years ago
- da82ed5 A large number of simple changes: by Chris Lattner · 22 years ago
- cdf5178 Add support for recording arguments passed through the ... of a varargs function by Chris Lattner · 22 years ago
- b2abb5a Fix bug: Jello/2003-05-07-ArgumentTest.llx Also fixes yacr2/ks benchmarks by Chris Lattner · 22 years ago
- 10daaa1 Remove two fields from TargetData which are target specific. by Chris Lattner · 22 years ago
- 7471c48 Only do the %ld -> %lld promotion when running a 64 bit bytecode on a 32 bit host by Chris Lattner · 22 years ago
- c8cff9e Add __strdup by Chris Lattner · 22 years ago
- 6b73fec MAke sure that LLI properly configures align_of(double) by Chris Lattner · 22 years ago
- d5bc41a Fix problem where we would read 64 bits worth of pointer information, even on 32 bit targets! by Chris Lattner · 22 years ago
- 2be5079 Fix bug where pointers were assumed to always be 64 bits in size! by Chris Lattner · 22 years ago
- 5f311a7 Add memcpy by Chris Lattner · 22 years ago
- fd506f5 Fix a problem with setcc instructions and pointers by Chris Lattner · 22 years ago
- 957d62a Implement a bunch of new external functions by Chris Lattner · 22 years ago
- 669b76a Implement &|^ on bool values by Chris Lattner · 22 years ago
- f87a198 Add support for _IO_getc function used on linux by Chris Lattner · 22 years ago
- d8c03bf * Implement access to external variables in LLI by Chris Lattner · 22 years ago
- cf31784 We now need to link libscalar to get the switch lowering pass by Chris Lattner · 22 years ago
- 0286835 Kill using declarations Kill code for invalid operations on pointers by Chris Lattner · 22 years ago
- 5bff50d Implement cast to bool by Chris Lattner · 22 years ago
- b945e4d Get rid of extraneous arguments to implementation functions by Chris Lattner · 22 years ago