| Commit message (Expand) | Author | Age | Files | Lines |
* | Don't barf on empty basic blocks. Do not rely on assert | Duncan Sands | 2007-11-01 | 1 | -9/+21 |
* | remove verifier command line option: this should be part of the API, not | Chris Lattner | 2007-11-01 | 1 | -11/+0 |
* | Now with less tabs! | Owen Anderson | 2007-11-01 | 1 | -5/+5 |
* | Fix InstCombine/2007-10-31-StringCrash.ll by removing an obvious | Chris Lattner | 2007-11-01 | 1 | -12/+8 |
* | Fix a regression in test/CodeGen/X86/2007-04-24-VectorCrash.ll introduced | Dan Gohman | 2007-10-31 | 1 | -4/+3 |
* | Add a preverifier pass to check that every basic block ends in a terminator, ... | Owen Anderson | 2007-10-31 | 1 | -1/+20 |
* | Add support for folding binary operators with vector zero operands. | Dan Gohman | 2007-10-30 | 1 | -19/+29 |
* | I am not sure this is a good idea to be an option, but rename the option for | Chris Lattner | 2007-10-29 | 1 | -1/+1 |
* | Add 'pedantic' mode to verifier rejecting syntactically valid, but 'bad' due ... | Anton Korobeynikov | 2007-10-28 | 1 | -3/+14 |
* | Make DomTree and PostDomTree thin wrappers around DomTreeBase, rather than in... | Owen Anderson | 2007-10-23 | 1 | -11/+1 |
* | The #include <iterator> isn't needed in this header. | Dan Gohman | 2007-10-22 | 1 | -3/+0 |
* | this doesn't need dynamic_cast. | Chris Lattner | 2007-10-18 | 1 | -1/+1 |
* | Reduce reliance on rtti info | Chris Lattner | 2007-10-18 | 1 | -2/+1 |
* | fix typo | Chris Lattner | 2007-10-18 | 1 | -1/+1 |
* | Define a helper function ConstantVector::getSplatValue for testing for | Dan Gohman | 2007-10-17 | 1 | -0/+11 |
* | Move splitBlock into DomTreeBase from DomTree. | Owen Anderson | 2007-10-17 | 1 | -82/+0 |
* | Disable attempts to constant fold PPC f128. | Dale Johannesen | 2007-10-16 | 1 | -0/+4 |
* | Template DominatorTreeBase by node type. This is the next major step towards | Owen Anderson | 2007-10-16 | 1 | -199/+5 |
* | Initial infrastructure for arbitrary precision integer | Duncan Sands | 2007-10-16 | 1 | -15/+7 |
* | avoid an APFloat copy. | Chris Lattner | 2007-10-15 | 1 | -1/+1 |
* | Disable some compile-time optimizations on PPC | Dale Johannesen | 2007-10-14 | 1 | -0/+12 |
* | Next PPC long double bits. First cut at constants. | Dale Johannesen | 2007-10-11 | 2 | -2/+13 |
* | C and Objective Caml bindings for PHINode::addIncoming etc. | Gordon Henriksen | 2007-10-08 | 1 | -1/+21 |
* | Remove debugging printf to get build going on x86-64. | Evan Cheng | 2007-10-08 | 1 | -2/+0 |
* | Add explicit keywords. | Dan Gohman | 2007-10-08 | 1 | -5/+7 |
* | Begin the process of allowing DomTree on MBB's. Step One: template DomTreeNo... | Owen Anderson | 2007-10-08 | 1 | -16/+0 |
* | C and Objective Caml bindings for getFunction and getNamedGlobal. Also enhanced | Gordon Henriksen | 2007-10-08 | 1 | -0/+8 |
* | C and Objective Caml bindings for GlobalVariable::isConstant. | Gordon Henriksen | 2007-10-07 | 1 | -0/+11 |
* | convertFromInteger, as originally written, expected sign-extended | Neil Booth | 2007-10-07 | 1 | -1/+1 |
* | C and Objective Caml bindings for PATypeHolder. | Gordon Henriksen | 2007-10-07 | 1 | -0/+18 |
* | Adopting a uniform naming convention for type constructors in bindings. | Gordon Henriksen | 2007-10-06 | 1 | -10/+10 |
* | Adopting a uniform naming convention for constant constructors in bindings. | Gordon Henriksen | 2007-10-06 | 1 | -13/+12 |
* | Adding C and Ocaml bindings for ConstantExpr. | Gordon Henriksen | 2007-10-06 | 2 | -2/+203 |
* | Wrapping Value::dump. | Gordon Henriksen | 2007-10-06 | 1 | -0/+4 |
* | Removing the silly CHelpers header by rolling wrap and unwrap into the C | Gordon Henriksen | 2007-10-05 | 1 | -14/+0 |
* | Fix bug in updating dominance frontier after loop | Devang Patel | 2007-10-05 | 1 | -2/+5 |
* | Completely merge the implementation details of DomTree and PostDomTree. | Owen Anderson | 2007-10-03 | 2 | -108/+5 |
* | Use empty() member functions when that's what's being tested for instead | Dan Gohman | 2007-10-03 | 1 | -2/+2 |
* | Fix a using namespace llvm; in a header file. | Dan Gohman | 2007-10-03 | 1 | -0/+1 |
* | Factor some code from the DomTree and PostDomTree calculate methods up into | Owen Anderson | 2007-10-03 | 2 | -2/+6 |
* | Constant fold int-to-long-double conversions; | Dale Johannesen | 2007-09-30 | 1 | -17/+9 |
* | Template-ize more of the DomTree internal implementation details. Only the c... | Owen Anderson | 2007-09-30 | 2 | -143/+3 |
* | Check that the second parameter of init_trampoline | Duncan Sands | 2007-09-29 | 1 | -2/+6 |
* | Demoting CHelpers.h to include/llvm/Support. | Gordon Henriksen | 2007-09-29 | 1 | -1/+1 |
* | Make Value::getNameLen not crash on an empty name, fixing PR1712. | Chris Lattner | 2007-09-28 | 1 | -1/+1 |
* | Have PostDomTree use the newly templated DFSPass. | Owen Anderson | 2007-09-28 | 1 | -5/+0 |
* | Convert DFSPass into a templated friend function, in preparation for making i... | Owen Anderson | 2007-09-27 | 3 | -66/+5 |
* | Make temporaries explicit to avoid premature | Dale Johannesen | 2007-09-26 | 1 | -1/+3 |
* | Added C and Ocaml bindings for functions, basic blocks, and | Gordon Henriksen | 2007-09-26 | 1 | -9/+453 |
* | Remove no-longer-used variable. | Dale Johannesen | 2007-09-25 | 1 | -3/+2 |