| Commit message (Expand) | Author | Age | Files | Lines |
* | Increasing the inline limit from (overly conservative) 200 to 300. Given each... | Evan Cheng | 2008-03-24 | 5 | -11/+54 |
* | Small format/grammar changes. | Bill Wendling | 2008-03-24 | 1 | -2/+2 |
* | Grammar Nazi strikes! :-) | Bill Wendling | 2008-03-24 | 1 | -35/+34 |
* | Update Function type documentation to clarify how multiple return values are ... | Devang Patel | 2008-03-24 | 1 | -2/+9 |
* | Temporarily disabling memset forming optimization. Add an option. | Evan Cheng | 2008-03-24 | 1 | -0/+8 |
* | Be sure to remove intervals after we've joined them. Also, remove some dupli... | Owen Anderson | 2008-03-24 | 1 | -46/+18 |
* | Ignoring per-user file. | Gordon Henriksen | 2008-03-24 | 0 | -0/+0 |
* | Ignoring generated files. | Gordon Henriksen | 2008-03-24 | 0 | -0/+0 |
* | Transform (zext (or (icmp), (icmp))) to (or (zext (cimp), (zext icmp))) if at... | Evan Cheng | 2008-03-24 | 2 | -96/+164 |
* | Remove duplicated entries. | Evan Cheng | 2008-03-23 | 1 | -35/+0 |
* | Another typo. | Gordon Henriksen | 2008-03-23 | 1 | -1/+1 |
* | Fix a typo. | Gordon Henriksen | 2008-03-23 | 1 | -1/+1 |
* | Objective Caml bindings for basic block, function, global, and arg iterators. | Gordon Henriksen | 2008-03-23 | 6 | -20/+605 |
* | Minor typo fixes. Also add another FIXME. | Anton Korobeynikov | 2008-03-23 | 1 | -5/+6 |
* | Update project to reflect deleted files. | Gordon Henriksen | 2008-03-23 | 1 | -12/+0 |
* | Preserve calling convention during function cloning | Anton Korobeynikov | 2008-03-23 | 1 | -0/+3 |
* | Add license header | Anton Korobeynikov | 2008-03-23 | 1 | -0/+13 |
* | Add Win64 compilation callback. This allows easy examples to be JITed on Win64! | Anton Korobeynikov | 2008-03-23 | 2 | -5/+58 |
* | Use C-style comments :) | Anton Korobeynikov | 2008-03-23 | 1 | -2/+2 |
* | Provide a JIT selector on win64 | Anton Korobeynikov | 2008-03-23 | 1 | -1/+1 |
* | Hack out the PIC mode on Win64 targets. This needs to be investigated later. | Anton Korobeynikov | 2008-03-23 | 1 | -1/+3 |
* | Code cleanup. Provide generic way of selecting JIT pointer bitwidth regardless | Anton Korobeynikov | 2008-03-23 | 1 | -22/+30 |
* | Remove old-standing obsolete code. | Anton Korobeynikov | 2008-03-23 | 1 | -9/+11 |
* | Add Mikhail to credits file | Anton Korobeynikov | 2008-03-23 | 1 | -0/+4 |
* | Add first proof-of-concept universal compiler driver framework based | Anton Korobeynikov | 2008-03-23 | 19 | -3/+2019 |
* | New testcase. | Bill Wendling | 2008-03-22 | 1 | -0/+10 |
* | Don't strip things when we're doing a debug build. | Bill Wendling | 2008-03-22 | 1 | -3/+5 |
* | Honour built-in defines on win64 targets for automatically subtarget recognize. | Anton Korobeynikov | 2008-03-22 | 1 | -2/+3 |
* | Recognize "windows" in target triple, not only "win32" | Anton Korobeynikov | 2008-03-22 | 1 | -0/+2 |
* | Use normal naming convention for test. | Owen Anderson | 2008-03-22 | 1 | -0/+0 |
* | Add information about callee-saved registers on Win64 | Anton Korobeynikov | 2008-03-22 | 2 | -6/+28 |
* | Add convenient helper for win64 check. Simplify things slightly. | Anton Korobeynikov | 2008-03-22 | 3 | -3/+5 |
* | Initial support for Win64 calling conventions. Still in early state. | Anton Korobeynikov | 2008-03-22 | 2 | -5/+54 |
* | Register EH frames emitted in JIT when using gcc unwinding runtime | Anton Korobeynikov | 2008-03-22 | 1 | -1/+9 |
* | Fix merge error | Anton Korobeynikov | 2008-03-22 | 1 | -1/+0 |
* | Add testcase for prev. commit. Minor fixes | Anton Korobeynikov | 2008-03-22 | 2 | -2/+8 |
* | Aliasing chains cleanups: update langref, add check into verifier | Anton Korobeynikov | 2008-03-22 | 2 | -3/+8 |
* | Support chained aliases for LLVM IR printing. This fixes PR2145 | Anton Korobeynikov | 2008-03-22 | 2 | -0/+5 |
* | Another comments fixing | Anton Korobeynikov | 2008-03-22 | 2 | -2/+3 |
* | Slightly increase default set size. It's cheap and won't hurt. | Anton Korobeynikov | 2008-03-22 | 1 | -1/+1 |
* | Typo fixes | Anton Korobeynikov | 2008-03-22 | 1 | -3/+3 |
* | implement an initial hack at a straight-line store -> memset optimization. | Chris Lattner | 2008-03-22 | 2 | -6/+114 |
* | implement the logic for memset insertion and store deletion. | Chris Lattner | 2008-03-22 | 1 | -11/+49 |
* | Add a comment, and fix a bug where AllocateRW recurred to AllocateRWX instead... | Owen Anderson | 2008-03-22 | 2 | -1/+9 |
* | Add an AllocateRW to match AllocateRWX. | Owen Anderson | 2008-03-22 | 3 | -0/+75 |
* | Teach DAG combiner to commute commutable binary nodes in order to achieve sdi... | Evan Cheng | 2008-03-22 | 4 | -0/+63 |
* | This is a partially implemented and currently disabled start of a store | Chris Lattner | 2008-03-22 | 1 | -0/+159 |
* | Don't include <map> in Pass.h, which doesn't need it. This requires | Dan Gohman | 2008-03-21 | 18 | -1/+18 |
* | Avoid calling array_endof in a static initializer, as it incurs | Dan Gohman | 2008-03-21 | 1 | -2/+2 |
* | Specialize FORCE_DEFINING_FILE_TO_BE_LINKED using a GCC trick | Dan Gohman | 2008-03-21 | 2 | -5/+18 |