| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Add an optional argument to lower to a specific constant value instead of | Chris Lattner | 2005-03-03 | 1 | -6/+14 | |
| | | | | | | | to a "sizeof" expression. llvm-svn: 20414 | |||||
| * | Fix the spelling of the word `the' | Misha Brukman | 2005-03-02 | 1 | -1/+1 | |
| | | | | | llvm-svn: 20412 | |||||
| * | Print the module ID as a comment. | Chris Lattner | 2005-03-02 | 1 | -0/+6 | |
| | | | | | llvm-svn: 20411 | |||||
| * | cleanup the cfg after lsr | Chris Lattner | 2005-03-02 | 1 | -2/+6 | |
| | | | | | llvm-svn: 20410 | |||||
| * | remove 32 sign extend after 32 sextload and handle small negative constant | Andrew Lenharth | 2005-03-02 | 1 | -4/+9 | |
| | | | | | llvm-svn: 20408 | |||||
| * | Added LSR as a beta pass for alpha | Andrew Lenharth | 2005-03-02 | 1 | -0/+9 | |
| | | | | | llvm-svn: 20407 | |||||
| * | Add a temporary option for llc-beta: -enable-lsr-for-ppc, which turns on | Chris Lattner | 2005-03-02 | 1 | -0/+10 | |
| | | | | | | | Loop Strength Reduction. llvm-svn: 20399 | |||||
| * | Be slightly more accurate in an error message. | Reid Spencer | 2005-03-02 | 1 | -1/+1 | |
| | | | | | llvm-svn: 20397 | |||||
| * | Fix a nasty order of evaluation bug that Gabor Greif ran into. Here's an | Chris Lattner | 2005-03-02 | 1 | -1/+2 | |
| | | | | | | | | | | | | | | | | | | explanation from IRC: |sabre| I think it's an order of evaluation thing |sabre| for me, the RHS of the assignment is evaluated first |sabre| getTypeDescription checks to see if ConcreteTypeDescription[Ty] contains anything |sabre| since it doesn't, it computes and returns the value |sabre| this gets put into the map. |sabre| For you, the LHS is evaluated first. |sabre| Map[Ty] (aka ConcreteTypeDescriptions[Ty]) inserts an empty string into the map, returning a reference |sabre| getTypeDesc then sees the empty string in the map |sabre| and returns it |sabre| bork :) llvm-svn: 20394 | |||||
| * | Fixed the following LSR bugs: | Jeff Cohen | 2005-03-01 | 1 | -23/+19 | |
| | | | | | | | | | | | | | | | | * Loop invariant code does not dominate the loop header, but rather the end of the loop preheader. * The base for a reduced GEP isn't a constant unless all of its operands (preceding the induction variable) are constant. * Allow induction variable elimination for the simple case after all. Also made changes recommended by Chris for properly deleting instructions. llvm-svn: 20383 | |||||
| * | Lower llvm.isunordered(a, b) into a != a | b != b. | Alkis Evlogimenos | 2005-03-01 | 1 | -3/+8 | |
| | | | | | llvm-svn: 20382 | |||||
| * | Remove tabs from file. | Chris Lattner | 2005-02-28 | 1 | -3/+2 | |
| | | | | | llvm-svn: 20380 | |||||
| * | Add support to the C backend for llvm.prefetch. Patch contributed by | Chris Lattner | 2005-02-28 | 1 | -0/+13 | |
| | | | | | | | Justin Wick! llvm-svn: 20378 | |||||
| * | recognize llvm.prefetch. Patch contributed by Justin Wick! | Chris Lattner | 2005-02-28 | 1 | -0/+3 | |
| | | | | | llvm-svn: 20377 | |||||
| * | Verify llvm.prefetch. | Chris Lattner | 2005-02-28 | 1 | -0/+2 | |
| | | | | | llvm-svn: 20376 | |||||
| * | Lower prefetch to a noop, patch contributed by Justin Wick! | Chris Lattner | 2005-02-28 | 1 | -0/+3 | |
| | | | | | llvm-svn: 20375 | |||||
| * | fix integer division and stuff | Andrew Lenharth | 2005-02-28 | 1 | -5/+5 | |
| | | | | | llvm-svn: 20372 | |||||
| * | Fix crash in LSR due to attempt to remove original induction variable. However, | Jeff Cohen | 2005-02-28 | 1 | -3/+14 | |
| | | | | | | | | for reasons explained in the comments, I also deactivated this code as it needs more thought. llvm-svn: 20367 | |||||
| * | PHI nodes were incorrectly placed when more than one GEP is reduced in a loop. | Jeff Cohen | 2005-02-27 | 1 | -7/+6 | |
| | | | | | llvm-svn: 20360 | |||||
| * | First pass at improved Loop Strength Reduction. Still not yet ready for ↵ | Jeff Cohen | 2005-02-27 | 1 | -35/+39 | |
| | | | | | | | prime time. llvm-svn: 20358 | |||||
| * | Use const iterators where possible. Patch by Evan Jones! | Chris Lattner | 2005-02-27 | 1 | -2/+2 | |
| | | | | | llvm-svn: 20354 | |||||
| * | Teach globalopt how memset/cpy/move affect memory, to allow better optimization. | Chris Lattner | 2005-02-27 | 1 | -25/+40 | |
| | | | | | llvm-svn: 20352 | |||||
| * | Fix spelling, patch contributed by Gabor Greif! | Chris Lattner | 2005-02-27 | 4 | -4/+4 | |
| | | | | | llvm-svn: 20343 | |||||
| * | Fix spelling, patch contributed by Gabor Greif | Chris Lattner | 2005-02-27 | 1 | -1/+1 | |
| | | | | | llvm-svn: 20342 | |||||
| * | Remove some stuff I checked in accidentally | Chris Lattner | 2005-02-27 | 1 | -6/+0 | |
| | | | | | llvm-svn: 20340 | |||||
| * | DCE a dead function | Chris Lattner | 2005-02-26 | 1 | -19/+0 | |
| | | | | | llvm-svn: 20339 | |||||
| * | Implement an isBytecodeArchive method to determine if an archive contains | Reid Spencer | 2005-02-26 | 1 | -0/+29 | |
| | | | | | | | | bytecode file members or not. Patch Contributed By Adam Treat llvm-svn: 20338 | |||||
| * | 1 + 100 + 51 == 152, not 52. | Chris Lattner | 2005-02-26 | 1 | -0/+2 | |
| | | | | | | | | | If we fold three constants together (c1+c2+c3), make sure to keep LHSC updated, instead of reusing (in this case), the 1 instead of the partial sum. llvm-svn: 20337 | |||||
| * | remove extraneous cast | Chris Lattner | 2005-02-26 | 1 | -2/+1 | |
| | | | | | llvm-svn: 20334 | |||||
| * | make BB labels be exported for debuging, add fp negation optimization, ↵ | Andrew Lenharth | 2005-02-25 | 3 | -30/+61 | |
| | | | | | | | further pecimise the FP instructions llvm-svn: 20332 | |||||
| * | Handle null a bit more carefully. | Chris Lattner | 2005-02-25 | 1 | -1/+11 | |
| | | | | | | | | | Actually teach dsa about select instructions. This doesn't affect the graph in any way other than not setting a spurious U marker on pointer nodes that are selected. llvm-svn: 20324 | |||||
| * | This instruction: | Chris Lattner | 2005-02-24 | 1 | -1/+2 | |
| | | | | | | | | | | X = gep null, ... Used to not create a scalar map entry for X, which caused clients to barf. This is bad. llvm-svn: 20316 | |||||
| * | Fix a bug introduced by revision 1.187 of this file. | Chris Lattner | 2005-02-24 | 1 | -1/+2 | |
| | | | | | llvm-svn: 20308 | |||||
| * | fix Allocas. Really. I mean it this time. | Andrew Lenharth | 2005-02-24 | 1 | -1/+6 | |
| | | | | | llvm-svn: 20306 | |||||
| * | Fix some problems where the verifier would crash on invalid input instead of | Chris Lattner | 2005-02-24 | 2 | -3/+7 | |
| | | | | | | | reporting the problem and exiting. llvm-svn: 20302 | |||||
| * | Implement Transforms/SimplifyCFG/switch_thread.ll | Chris Lattner | 2005-02-24 | 1 | -4/+190 | |
| | | | | | | | | | This does a simple form of "jump threading", which eliminates CFG edges that are provably dead. This triggers 90 times in the external tests, and eliminating CFG edges is always always a good thing! :) llvm-svn: 20300 | |||||
| * | switch instructions only allow constantints for their values, be more specific. | Chris Lattner | 2005-02-24 | 1 | -1/+1 | |
| | | | | | llvm-svn: 20298 | |||||
| * | use more specific cast. | Chris Lattner | 2005-02-24 | 1 | -1/+1 | |
| | | | | | llvm-svn: 20297 | |||||
| * | add more checking | Chris Lattner | 2005-02-24 | 1 | -2/+6 | |
| | | | | | llvm-svn: 20296 | |||||
| * | Do not read free'd memory when printing an error message. | Chris Lattner | 2005-02-24 | 1 | -1/+1 | |
| | | | | | llvm-svn: 20295 | |||||
| * | add a new method. | Chris Lattner | 2005-02-24 | 1 | -0/+10 | |
| | | | | | llvm-svn: 20293 | |||||
| * | Only print out machine instructions before modulo scheduling if we are ↵ | Tanya Lattner | 2005-02-24 | 1 | -1/+1 | |
| | | | | | | | actually doing modulo scheduling! :) llvm-svn: 20292 | |||||
| * | Ah the problems you have to fix when you stray from the One True Way (TM) | Andrew Lenharth | 2005-02-23 | 1 | -2/+2 | |
| | | | | | llvm-svn: 20290 | |||||
| * | make this more efficient. Scan up to 16 nodes, not the whole list. | Chris Lattner | 2005-02-23 | 2 | -2/+2 | |
| | | | | | llvm-svn: 20289 | |||||
| * | new method | Chris Lattner | 2005-02-23 | 1 | -0/+13 | |
| | | | | | llvm-svn: 20288 | |||||
| * | Reduce the amount of searching this assertion does. On a testcase of mine, | Chris Lattner | 2005-02-23 | 1 | -1/+3 | |
| | | | | | | | this reduces the time for -simplifycfg in a debug build from 106s to 14.82s llvm-svn: 20286 | |||||
| * | Silence some uninit variable warnings. | Chris Lattner | 2005-02-23 | 1 | -0/+2 | |
| | | | | | llvm-svn: 20284 | |||||
| * | Fixed bug in findAllcircuits. Fixed branch addition to schedule. Added debug ↵ | Tanya Lattner | 2005-02-23 | 4 | -92/+150 | |
| | | | | | | | information. llvm-svn: 20280 | |||||
| * | oops | Andrew Lenharth | 2005-02-22 | 1 | -1/+1 | |
| | | | | | llvm-svn: 20278 | |||||
| * | Remove use of bind_obj, deleter, and finegrainify namespacification. | Chris Lattner | 2005-02-22 | 1 | -18/+15 | |
| | | | | | llvm-svn: 20277 | |||||

