| Commit message (Expand) | Author | Age | Files | Lines |
* | Any size of integral indices are allowed in gep for indexing into sequential ... | Sanjiv Gupta | 2009-04-26 | 1 | -3/+2 |
* | testcase and asmparser fix for PR4066 | Chris Lattner | 2009-04-25 | 1 | -2/+5 |
* | Allow aliasee to be a GEP or bitcast instead of just a bitcast. | Chris Lattner | 2009-04-25 | 2 | -7/+9 |
* | Reuse unused val#'s to avoid running out of memory in extreme cases. | Evan Cheng | 2009-04-25 | 1 | -1/+5 |
* | Fix PR4040: APInt's string constructor is too strict | Chris Lattner | 2009-04-25 | 1 | -7/+9 |
* | add support for detecting process features on win64, patch by | Chris Lattner | 2009-04-25 | 1 | -36/+50 |
* | Refactor the code to grab the low and high parts of a value | Dan Gohman | 2009-04-25 | 4 | -126/+38 |
* | Return null instead of false, as appropriate. | Dan Gohman | 2009-04-25 | 1 | -3/+3 |
* | Add several more icmp simplifications. Transform signed comparisons | Dan Gohman | 2009-04-25 | 1 | -82/+159 |
* | Add a top-level comment about DAGCombiner's role in the compiler. | Dan Gohman | 2009-04-25 | 1 | -0/+4 |
* | Handle ands with 0 and shifts by 0 correctly. These aren't | Dan Gohman | 2009-04-25 | 1 | -2/+9 |
* | Fix g++-4.4.0 warning, it was causing llvm-nm to fail on wrapped BC files: | Edwin Török | 2009-04-25 | 1 | -1/+1 |
* | Do not share a single unknown val# for all the live ranges merged into a phys... | Evan Cheng | 2009-04-25 | 1 | -19/+13 |
* | Change LowerCallResult method so that CCValAssign::BCvt can be used with | Bob Wilson | 2009-04-25 | 1 | -16/+16 |
* | Fix PR 4057, a crash doing float->char const folding. | Dale Johannesen | 2009-04-24 | 1 | -3/+4 |
* | Adjust a comment to reflect what the code does. Splitting a 64-bit argument | Bob Wilson | 2009-04-24 | 1 | -1/+1 |
* | Fix up some problems with getCopyToReg and getCopyFromReg nodes being | Bob Wilson | 2009-04-24 | 1 | -8/+12 |
* | Remove unnecessary references to f32 types. After specifying that f32 | Bob Wilson | 2009-04-24 | 1 | -4/+4 |
* | Fix PR 4004 by including the call to __tls_get_addr in X86tlsaddr. This is not | Rafael Espindola | 2009-04-24 | 3 | -37/+26 |
* | Revert 69952. Causes testsuite failures on linux x86-64. | Rafael Espindola | 2009-04-24 | 14 | -1548/+2080 |
* | PR2957 | Nate Begeman | 2009-04-24 | 14 | -2080/+1548 |
* | Instead of requiring TLI.LowerCallTo to return an ISD::BUILD_PAIR, | Dan Gohman | 2009-04-24 | 1 | -60/+118 |
* | Allow i16 type indices to gep. | Sanjiv Gupta | 2009-04-24 | 2 | -7/+3 |
* | Factor out a bit of code that appears in several places into a | Dan Gohman | 2009-04-23 | 3 | -14/+16 |
* | Handle Void types in ComputeValueVTs. This doesn't currently occur, | Dan Gohman | 2009-04-23 | 1 | -0/+3 |
* | Fix spurious indentation in a comment. | Dan Gohman | 2009-04-23 | 1 | -1/+1 |
* | Update comments. | Evan Cheng | 2009-04-23 | 1 | -2/+2 |
* | Fix an obvious type. | Evan Cheng | 2009-04-23 | 1 | -1/+1 |
* | Change SCEVExpander's expandCodeFor to provide more flexibility | Dan Gohman | 2009-04-23 | 2 | -18/+13 |
* | Banksel immediate constant will always immediately follow the GA/ES, so scan ... | Sanjiv Gupta | 2009-04-23 | 1 | -18/+20 |
* | Simplify trunc(extend(x)) in SCEVs, just for completeness. Also fix some odd | Nick Lewycky | 2009-04-23 | 1 | -4/+12 |
* | Add support for printing MO_ExternalSymbol operands in | Dan Gohman | 2009-04-23 | 1 | -2/+4 |
* | Make sure both operands have binary instructions have the same type. | Evan Cheng | 2009-04-22 | 1 | -11/+23 |
* | A few more places where the check of use_empty is needed. | Evan Cheng | 2009-04-22 | 1 | -0/+3 |
* | Avoid deferencing use_begin() if value does not have a use. | Evan Cheng | 2009-04-22 | 1 | -0/+1 |
* | Fix cut-n-pasto. | Devang Patel | 2009-04-22 | 1 | -2/+2 |
* | Simplify trivial cast-of-cast SCEVs. | Dan Gohman | 2009-04-22 | 1 | -0/+12 |
* | SCEVExpander's InsertCastOfTo knows how to move existing cast | Dan Gohman | 2009-04-22 | 1 | -0/+5 |
* | Use BasicBlock::iterator instead of Instruction* for insert points, | Dan Gohman | 2009-04-22 | 1 | -7/+7 |
* | Make the function begin label start after ther data pointer. | Sanjiv Gupta | 2009-04-22 | 3 | -9/+12 |
* | Real fix for PR3549, by using caching for predecessor counts in addition to t... | Owen Anderson | 2009-04-22 | 1 | -11/+13 |
* | Use PredIteratorCache in LCSSA, which gives a 37% overall speedup on the test... | Owen Anderson | 2009-04-22 | 1 | -2/+5 |
* | use predicate instead of hand-rolled loop | Chris Lattner | 2009-04-21 | 1 | -11/+4 |
* | De-pImpl-ify ScalarEvolution. The pImpl pattern doesn't provide much | Dan Gohman | 2009-04-21 | 1 | -452/+165 |
* | It has finally happened. Spiller is now using live interval info. | Evan Cheng | 2009-04-21 | 5 | -40/+68 |
* | When turning (ashr(shl(x, n), n)) into sext(trunc(x)), the width of the | Dan Gohman | 2009-04-21 | 1 | -1/+1 |
* | fix a crash on a pointless but valid zero-length memset, rdar://6808691 | Chris Lattner | 2009-04-21 | 1 | -13/+15 |
* | Silence warnings. | Anton Korobeynikov | 2009-04-21 | 1 | -5/+5 |
* | Drop obsolete reference to __eprintf. | Anton Korobeynikov | 2009-04-21 | 1 | -2/+0 |
* | Get rid of what looks like a copy-and-pasted typo. | Duncan Sands | 2009-04-21 | 1 | -3/+3 |