| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Corrects an old, old typo in a case that doesn't seem to be reached in practice. | Andrew Trick | 2011-04-27 | 1 | -1/+1 |
* | Simplify cfg inserts a call to trap when unreachable code is detected. Assign... | Devang Patel | 2011-04-27 | 1 | -1/+2 |
* | Also add <imp-def> operands for defined and dead super-registers when rewriting. | Jakob Stoklund Olesen | 2011-04-27 | 1 | -6/+15 |
* | Factor a bit of code to MCStreamer::EmitLabel. Keep track of the last | Rafael Espindola | 2011-04-27 | 3 | -7/+14 |
* | Stop trying to have instcombine preserve LCSSA form: this was not | Duncan Sands | 2011-04-27 | 3 | -6/+0 |
* | Test case and comment for PR9633. | Andrew Trick | 2011-04-27 | 1 | -2/+3 |
* | Refactor out code to fast-isel a memcpy operation with a small constant | Eli Friedman | 2011-04-27 | 1 | -32/+40 |
* | Force some values to be absolute and align based on the FDE pointers size. A ... | Rafael Espindola | 2011-04-27 | 1 | -6/+6 |
* | Fix an edge case involving branches in fast-isel on x86. | Eli Friedman | 2011-04-27 | 1 | -2/+4 |
* | Fix for PR9633 [indvars] Assertion `isa<X>(Val) && "cast<Ty>() argument of in... | Andrew Trick | 2011-04-27 | 1 | -2/+7 |
* | Enhance memdep to return clobber relation between noalias loads when | Chris Lattner | 2011-04-26 | 1 | -3/+95 |
* | Add a safe-guard against repeated splitting for some rare cases. | Jakob Stoklund Olesen | 2011-04-26 | 3 | -3/+43 |
* | use AA::isMustAlias to simplify some calls. | Chris Lattner | 2011-04-26 | 1 | -5/+3 |
* | remove support for llvm.invariant.end from memdep. It is a | Chris Lattner | 2011-04-26 | 1 | -37/+0 |
* | Be careful about scheduling nodes above previous calls. It increase usages of | Evan Cheng | 2011-04-26 | 2 | -1/+61 |
* | Transform: "icmp eq (trunc (lshr(X, cst1)), cst" to "icmp (and X, mask), cst" | Chris Lattner | 2011-04-26 | 2 | -46/+25 |
* | some random cleanups, no functionality change. | Chris Lattner | 2011-04-26 | 1 | -5/+5 |
* | ARM and Thumb2 support for atomic MIN/MAX/UMIN/UMAX loads. | Jim Grosbach | 2011-04-26 | 3 | -0/+184 |
* | Print the label if we will use it in debug_frame. | Rafael Espindola | 2011-04-26 | 1 | -2/+5 |
* | Refactor code. Keep dwarf register operation selection logic at one place. | Devang Patel | 2011-04-26 | 2 | -72/+66 |
* | Use the new TRI->getLargestLegalSuperClass hook to constrain register class i... | Jakob Stoklund Olesen | 2011-04-26 | 1 | -50/+29 |
* | Add a TRI::getLargestLegalSuperClass hook to provide an upper limit on regist... | Jakob Stoklund Olesen | 2011-04-26 | 6 | -0/+63 |
* | Fix an off by one error while accessing complex address element of a DIVariable. | Devang Patel | 2011-04-26 | 1 | -0/+1 |
* | Improve the bail-out predicate to really only kick in when phi | Chris Lattner | 2011-04-26 | 1 | -1/+2 |
* | Fast-isel support for simple inline asms. | Dan Gohman | 2011-04-26 | 1 | -10/+31 |
* | Another example of a static table that wasn't marked static. | Duncan Sands | 2011-04-26 | 1 | -1/+1 |
* | don't emit the symbol name twice for local bss and common | Chris Lattner | 2011-04-26 | 1 | -6/+0 |
* | Fix typo | Evan Cheng | 2011-04-26 | 1 | -1/+1 |
* | Print all the moves at a given label instead of just the first one. | Rafael Espindola | 2011-04-26 | 3 | -15/+6 |
* | Rename everything to follow LLVM style ... I think. | Nick Lewycky | 2011-04-26 | 1 | -207/+300 |
* | No relocation produces a SLEB or ULEB, make sure they are handled in MC. | Rafael Espindola | 2011-04-26 | 2 | -11/+15 |
* | Enhance MemDep: When alias analysis returns a partial alias result, | Chris Lattner | 2011-04-26 | 2 | -29/+93 |
* | Let dwarf writer allocate extra space in the debug location expression. This ... | Devang Patel | 2011-04-26 | 3 | -8/+12 |
* | Rename a local variable. | Devang Patel | 2011-04-25 | 1 | -17/+21 |
* | Rename a method to match what it really does. | Devang Patel | 2011-04-25 | 3 | -8/+10 |
* | Do not drop a variable's complex address if it is not based on frame base. | Devang Patel | 2011-04-25 | 1 | -1/+5 |
* | Fix an iterator invalidation bug. | Dan Gohman | 2011-04-25 | 1 | -9/+16 |
* | mark a large static table static. Pointed out by Michael Ilseman! | Chris Lattner | 2011-04-25 | 1 | -1/+1 |
* | allow adding a FoldingSetNodeID to a FastFoldingSetNode, resolving PR9499, | Chris Lattner | 2011-04-25 | 1 | -0/+5 |
* | add a missed bitfield instcombine. | Chris Lattner | 2011-04-25 | 1 | -0/+47 |
* | Lower BlockAddress node when relocation-model is static. | Akira Hatanaka | 2011-04-25 | 2 | -16/+23 |
* | A dbg.declare may not be in entry block, even if it is referring to an incomi... | Devang Patel | 2011-04-25 | 1 | -4/+0 |
* | Remove some hard coded CR-LFs. Some of these were the entire files, one of | Chandler Carruth | 2011-04-25 | 1 | -1/+1 |
* | Fix comment typo. Noticed by Liu. | Duncan Sands | 2011-04-25 | 1 | -1/+1 |
* | Simplify the logic. Noticed by aKor. | Rafael Espindola | 2011-04-24 | 1 | -2/+1 |
* | Synchronize the conditions for producing a .cfi_startproc and a .cfi_endproc. | Rafael Espindola | 2011-04-24 | 1 | -1/+1 |
* | Fix Target/ARM/Thumb1FrameLowering.h header guard. | Sebastian Redl | 2011-04-24 | 1 | -1/+1 |
* | Give MC/MCDisassembler/Disassembler.h a header guard. | Sebastian Redl | 2011-04-24 | 1 | -0/+6 |
* | Give SplitKit.h a header guard. | Sebastian Redl | 2011-04-24 | 1 | -0/+5 |
* | Fix an assert to check exactly what it says. | Jay Foad | 2011-04-24 | 1 | -1/+1 |