| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | PGO: preserve branch-weight metadata when simplifying two branches with a common | Manman Ren | 2012-09-15 | 1 | -111/+42 |
* | PGO: preserve branch-weight metadata when simplifying a switch with a single | Manman Ren | 2012-09-14 | 1 | -0/+19 |
* | Try to fix the bots by detecting inconsistant branch-weight metadata. | Manman Ren | 2012-09-14 | 1 | -4/+10 |
* | PGO: preserve branch-weight metadata when merging two switches where | Manman Ren | 2012-09-14 | 1 | -5/+12 |
* | SimplifyCFG: preserve branch-weight metadata when creating a new switch from | Manman Ren | 2012-09-11 | 1 | -81/+45 |
* | Fix style issues from r163302 pointed out by Evan. | Hans Wennborg | 2012-09-10 | 1 | -18/+15 |
* | Remove an incorrect assert during branch weight propagation. | Andrew Trick | 2012-09-08 | 1 | -1/+0 |
* | SimplifyCFG: ValidLookupTableConstant should be static | Hans Wennborg | 2012-09-07 | 1 | -1/+1 |
* | Fix switch_to_lookup_table.ll test from r163302. | Hans Wennborg | 2012-09-06 | 1 | -5/+6 |
* | Build lookup tables for switches (PR884) | Hans Wennborg | 2012-09-06 | 1 | -0/+286 |
* | Stop casting away const qualifier needlessly. | Roman Divacky | 2012-09-05 | 1 | -2/+2 |
* | test | Michael Ilseman | 2012-08-30 | 1 | -2/+2 |
* | Preserve branch profile metadata during switch formation. | Andrew Trick | 2012-08-29 | 1 | -0/+154 |
* | whitespace | Andrew Trick | 2012-08-29 | 1 | -168/+168 |
* | Fix a typo (the the => the) | Sylvestre Ledru | 2012-07-23 | 1 | -1/+1 |
* | Move llvm/Support/MDBuilder.h to llvm/MDBuilder.h, to live with | Chandler Carruth | 2012-07-15 | 1 | -1/+1 |
* | Make helper functions static. | Benjamin Kramer | 2012-07-13 | 1 | -1/+1 |
* | Revert "IntRange:" as it appears to be breaking self hosting. | Eric Christopher | 2012-07-02 | 1 | -85/+148 |
* | IntRange: | Stepan Dyatkovskiy | 2012-07-02 | 1 | -148/+85 |
* | Move llvm/Support/IRBuilder.h -> llvm/IRBuilder.h | Chandler Carruth | 2012-06-29 | 1 | -7/+7 |
* | Remove dyn_cast + dereference pattern by replacing it with a cast and changing | Nick Lewycky | 2012-06-24 | 1 | -3/+3 |
* | SimplifyCFG: fold unconditional branch to its predecessor if profitable. | Manman Ren | 2012-06-13 | 1 | -24/+180 |
* | SimplifyCFG: Turn the ad-hoc std::pair that represents switch cases into an e... | Benjamin Kramer | 2012-05-26 | 1 | -39/+54 |
* | Add support for branch weight metadata to MDBuilder and use it in various pla... | Benjamin Kramer | 2012-05-26 | 1 | -6/+5 |
* | Always compute all the bits in ComputeMaskedBits. | Rafael Espindola | 2012-04-04 | 1 | -1/+1 |
* | llvm::SwitchInst | Stepan Dyatkovskiy | 2012-03-11 | 1 | -13/+13 |
* | Taken into account Duncan's comments for r149481 dated by 2nd Feb 2012: | Stepan Dyatkovskiy | 2012-03-08 | 1 | -35/+39 |
* | [unwind removal] We no longer have 'unwind' instructions being generated, so | Bill Wendling | 2012-02-06 | 1 | -52/+3 |
* | SwitchInst refactoring. | Stepan Dyatkovskiy | 2012-02-01 | 1 | -28/+35 |
* | Gracefully degrade precision in branch probability numbers. | Nick Lewycky | 2012-01-25 | 1 | -17/+72 |
* | Actually, this code handles wrapped sets just fine. Noticed by inspection. | Nick Lewycky | 2012-01-19 | 1 | -3/+1 |
* | Fix SpeculativelyExecuteBB to either speculate all or none of the phis | Dan Gohman | 2012-01-05 | 1 | -140/+148 |
* | Revert r56315. When the instruction to speculate is a load, this | Dan Gohman | 2012-01-05 | 1 | -26/+2 |
* | Demystify this comment. | Nick Lewycky | 2011-12-28 | 1 | -5/+16 |
* | Use false not zero, as a bool. | Nick Lewycky | 2011-12-27 | 1 | -2/+2 |
* | Teach simplifycfg to recompute branch weights when merging some branches, and | Nick Lewycky | 2011-12-27 | 1 | -0/+67 |
* | Update the branch weight metadata when reversing the order of a branch. | Nick Lewycky | 2011-12-26 | 1 | -4/+1 |
* | Sort includes, canonicalize whitespace, fix typos. No functionality change. | Nick Lewycky | 2011-12-26 | 1 | -12/+12 |
* | Make some intrinsics safe to speculatively execute. | Nick Lewycky | 2011-12-21 | 1 | -0/+1 |
* | Revert r146822 at Pete Cooper's request as it broke clang self hosting. | Kevin Enderby | 2011-12-17 | 1 | -42/+0 |
* | SimplifyCFG now predicts some conditional branches to true or false depending... | Pete Cooper | 2011-12-17 | 1 | -0/+42 |
* | Move Instruction::isSafeToSpeculativelyExecute out of VMCore and | Dan Gohman | 2011-12-14 | 1 | -2/+2 |
* | Delete trivial landing pads that just continue unwinding the caught | Duncan Sands | 2011-09-05 | 1 | -0/+49 |
* | Address review comments. | Benjamin Kramer | 2011-08-26 | 1 | -9/+8 |
* | SimplifyCFG: If we have a PHI node that can evaluate to NULL and do a load or... | Benjamin Kramer | 2011-08-26 | 1 | -0/+69 |
* | I think there was some confusion about what I meant. :-) Replacing the comment. | Bill Wendling | 2011-08-16 | 1 | -1/+4 |
* | After talking with Bill, it seems like the LandingPad handling here is likely | Eli Friedman | 2011-08-16 | 1 | -4/+1 |
* | Minor comment fixes. | Eli Friedman | 2011-08-16 | 1 | -1/+1 |
* | Update SimplifyCFG for atomic operations. | Eli Friedman | 2011-08-15 | 1 | -10/+26 |
* | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner | 2011-07-18 | 1 | -1/+1 |