Age | Commit message (Expand) | Author |
2012-09-26 | SimplifyCFG: Make the switch-to-lookup table transformation store the | Hans Wennborg |
2012-09-26 | SimplifyCFG: Refactor the switch-to-lookup table transformation by | Hans Wennborg |
2012-09-20 | SimplifyCFG: sink common codes from IF, ELSE blocks down to END block. | Manman Ren |
2012-09-19 | SimplifyCFG: Don't generate invalid code for switch used to initialize | Hans Wennborg |
2012-09-18 | PGO: preserve branch-weight metadata when simplifying Switch to a sub, an icmp | Manman Ren |
2012-09-17 | PGO: preserve branch-weight metadata when simplifying Switch | Manman Ren |
2012-09-17 | PGO: preserve branch-weight metadata when simplifying SwitchOnSelect. | Manman Ren |
2012-09-17 | PGO: preserve branch-weight metadata when simplifying two branches with a common | Manman Ren |
2012-09-17 | Fix a few vars that can end up being used without initialization. | Axel Naumann |
2012-09-15 | PGO: preserve branch-weight metadata when simplifying two branches with a common | Manman Ren |
2012-09-14 | PGO: preserve branch-weight metadata when simplifying a switch with a single | Manman Ren |
2012-09-14 | Try to fix the bots by detecting inconsistant branch-weight metadata. | Manman Ren |
2012-09-14 | PGO: preserve branch-weight metadata when merging two switches where | Manman Ren |
2012-09-11 | SimplifyCFG: preserve branch-weight metadata when creating a new switch from | Manman Ren |
2012-09-10 | Fix style issues from r163302 pointed out by Evan. | Hans Wennborg |
2012-09-08 | Remove an incorrect assert during branch weight propagation. | Andrew Trick |
2012-09-07 | SimplifyCFG: ValidLookupTableConstant should be static | Hans Wennborg |
2012-09-06 | Fix switch_to_lookup_table.ll test from r163302. | Hans Wennborg |
2012-09-06 | Build lookup tables for switches (PR884) | Hans Wennborg |
2012-09-05 | Stop casting away const qualifier needlessly. | Roman Divacky |
2012-08-30 | test | Michael Ilseman |
2012-08-29 | Preserve branch profile metadata during switch formation. | Andrew Trick |
2012-08-29 | whitespace | Andrew Trick |
2012-07-23 | Fix a typo (the the => the) | Sylvestre Ledru |
2012-07-15 | Move llvm/Support/MDBuilder.h to llvm/MDBuilder.h, to live with | Chandler Carruth |
2012-07-13 | Make helper functions static. | Benjamin Kramer |
2012-07-02 | Revert "IntRange:" as it appears to be breaking self hosting. | Eric Christopher |
2012-07-02 | IntRange: | Stepan Dyatkovskiy |
2012-06-29 | Move llvm/Support/IRBuilder.h -> llvm/IRBuilder.h | Chandler Carruth |
2012-06-24 | Remove dyn_cast + dereference pattern by replacing it with a cast and changing | Nick Lewycky |
2012-06-13 | SimplifyCFG: fold unconditional branch to its predecessor if profitable. | Manman Ren |
2012-05-26 | SimplifyCFG: Turn the ad-hoc std::pair that represents switch cases into an e... | Benjamin Kramer |
2012-05-26 | Add support for branch weight metadata to MDBuilder and use it in various pla... | Benjamin Kramer |
2012-04-04 | Always compute all the bits in ComputeMaskedBits. | Rafael Espindola |
2012-03-11 | llvm::SwitchInst | Stepan Dyatkovskiy |
2012-03-08 | Taken into account Duncan's comments for r149481 dated by 2nd Feb 2012: | Stepan Dyatkovskiy |
2012-02-06 | [unwind removal] We no longer have 'unwind' instructions being generated, so | Bill Wendling |
2012-02-01 | SwitchInst refactoring. | Stepan Dyatkovskiy |
2012-01-25 | Gracefully degrade precision in branch probability numbers. | Nick Lewycky |
2012-01-19 | Actually, this code handles wrapped sets just fine. Noticed by inspection. | Nick Lewycky |
2012-01-05 | Fix SpeculativelyExecuteBB to either speculate all or none of the phis | Dan Gohman |
2012-01-05 | Revert r56315. When the instruction to speculate is a load, this | Dan Gohman |
2011-12-28 | Demystify this comment. | Nick Lewycky |
2011-12-27 | Use false not zero, as a bool. | Nick Lewycky |
2011-12-27 | Teach simplifycfg to recompute branch weights when merging some branches, and | Nick Lewycky |
2011-12-26 | Update the branch weight metadata when reversing the order of a branch. | Nick Lewycky |
2011-12-26 | Sort includes, canonicalize whitespace, fix typos. No functionality change. | Nick Lewycky |
2011-12-21 | Make some intrinsics safe to speculatively execute. | Nick Lewycky |
2011-12-17 | Revert r146822 at Pete Cooper's request as it broke clang self hosting. | Kevin Enderby |
2011-12-17 | SimplifyCFG now predicts some conditional branches to true or false depending... | Pete Cooper |