| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | 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 |
* | Make APFloat->int conversions deterministic even in | Dale Johannesen | 2007-09-25 | 1 | -2/+0 |
* | Add missing end-of-file newlines. | Duncan Sands | 2007-09-25 | 2 | -2/+2 |
* | float->int conversion rounds toward 0. Duh. | Dale Johannesen | 2007-09-24 | 1 | -1/+1 |
* | Merge significant portions of the DomTree and PostDomTree implementations. | Owen Anderson | 2007-09-24 | 2 | -109/+148 |
* | Just use APFloat for const / const. Fixes | Dale Johannesen | 2007-09-24 | 1 | -17/+0 |
* | Move DFSPass back down into DominatorTree. I need to figure out what the dif... | Owen Anderson | 2007-09-23 | 1 | -1/+1 |
* | Fix header. | Owen Anderson | 2007-09-23 | 1 | -1/+1 |
* | Factor the dominator tree calculation details out into DominatorCalculation.h... | Owen Anderson | 2007-09-23 | 2 | -267/+294 |
* | Fix dumb regression in constant folding (Regression/C/casts) | Dale Johannesen | 2007-09-20 | 1 | -1/+1 |
* | reject things like "declare internal @foo" | Chris Lattner | 2007-09-19 | 1 | -2/+11 |
* | Fix some long double issues. | Dale Johannesen | 2007-09-19 | 1 | -19/+21 |
* | Partial fix for PR1678: correct some parts of constant | Duncan Sands | 2007-09-19 | 1 | -2/+4 |
* | Tests of the ocaml (and thus C) bindings for constants. | Gordon Henriksen | 2007-09-18 | 1 | -0/+8 |
* | Incorporating review feedback for GC verifier patch. | Gordon Henriksen | 2007-09-18 | 1 | -11/+5 |
* | C bindings for libLLVMCore.a and libLLVMBitWriter.a. | Gordon Henriksen | 2007-09-18 | 1 | -0/+322 |
* | Add support for appending a suffix to the end of a mangled name. | Bill Wendling | 2007-09-17 | 1 | -2/+2 |
* | Fix for PR1633: Verifier doesn't fully verify GC intrinsics | Gordon Henriksen | 2007-09-17 | 1 | -0/+36 |
* | Merge DenseMapKeyInfo & DenseMapValueInfo into DenseMapInfo | Chris Lattner | 2007-09-17 | 1 | -1/+7 |
* | Remove the assumption that FP's are either float or | Dale Johannesen | 2007-09-14 | 1 | -10/+15 |
* | Revise previous patch per review comments. | Dale Johannesen | 2007-09-12 | 3 | -40/+83 |
* | Add APInt interfaces to APFloat (allows directly | Dale Johannesen | 2007-09-11 | 1 | -13/+8 |
* | Two ParamAttrsVectors which differ by a permutation | Duncan Sands | 2007-09-11 | 1 | -0/+4 |
* | Fix a buggy constant folding transformation when handling aliases. | Chris Lattner | 2007-09-10 | 1 | -4/+7 |
* | Add lengthof and endof templates that hide a lot of sizeof computations. | Owen Anderson | 2007-09-07 | 1 | -3/+2 |
* | Next round of APFloat changes. | Dale Johannesen | 2007-09-06 | 3 | -98/+111 |
* | Update GEP constructors to use an iterator interface to fix | David Greene | 2007-09-04 | 5 | -79/+11 |
* | Change LegalFPImmediates to use APFloat. | Dale Johannesen | 2007-08-30 | 1 | -7/+38 |
* | Update InvokeInst to work like CallInst | David Greene | 2007-08-27 | 1 | -22/+0 |
* | Poison APFloat::operator==. Replace existing uses with bitwiseIsEqual. | Dale Johannesen | 2007-08-24 | 1 | -10/+21 |
* | sink clone() down the class hierarchy from CmpInst into ICmpInst/FCmpInst. | Chris Lattner | 2007-08-24 | 1 | -2/+5 |
* | Revised per review feedback from previous patch. | Dale Johannesen | 2007-08-24 | 1 | -20/+9 |
* | Change internal representation of ConstantFP to use APFloat. | Dale Johannesen | 2007-08-24 | 1 | -33/+33 |