aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms
AgeCommit message (Expand)Author
2012-09-25Don't forget that strcpy and friends return a pointer to the destination, soNick Lewycky
2012-09-24Remove unused name of variable to quiet a warning. Also canonicalize aNick Lewycky
2012-09-24Teach DSE that strcpy, strncpy, strcat and strncat are all stores which may beNick Lewycky
2012-09-24Move all the calls to AA.getTargetLibraryInfo() to using a TLI member variable.Nick Lewycky
2012-09-24Add missing check for presence of target data.Richard Osborne
2012-09-24Enable the new SROA pass by default.Chandler Carruth
2012-09-24Address one of the original FIXMEs for the new SROA pass by implementingChandler Carruth
2012-09-23Switch to a signed representation for the dynamic offsets while walkingChandler Carruth
2012-09-21Fix a case where the new SROA pass failed to zap dead operands toChandler Carruth
2012-09-21LoopIdiom: Give up when the loop is not in canonical form.Benjamin Kramer
2012-09-21InstCombine: Make sure we use the pre-zext type when creating a constant of a...Benjamin Kramer
2012-09-20SimplifyCFG: sink common codes from IF, ELSE blocks down to END block.Manman Ren
2012-09-19Renaming functions to match coding style guidelinesMichael Ilseman
2012-09-19Doxygen-ify commentsMichael Ilseman
2012-09-19Put the * and & next to the variable, rather than the type.Michael Ilseman
2012-09-19SimplifyCFG: Don't generate invalid code for switch used to initializeHans Wennborg
2012-09-19IntegerDivision: Style cleanups, avoid warning about mixing || and && without...Benjamin Kramer
2012-09-19CodeGenPrep: turn lookup tables into switches for some targets.Hans Wennborg
2012-09-18Fix the last crasher I've gotten a reproduction for in SROA. This oneChandler Carruth
2012-09-18New utility for expanding integer division for targets that don't support it.Michael Ilseman
2012-09-18LSR critical edge splitting fix for PR13756.Andrew Trick
2012-09-18Fix getCommonType in a different way from the way I fixed it whenChandler Carruth
2012-09-18Fix build for compilers that don't understand injected class names properly.Benjamin Kramer
2012-09-18SROA: Use CRTP for OpSplitter to get rid of virtual dispatch and the virtual-...Benjamin Kramer
2012-09-18SROA: Replace the member function template contraption for recursively splitt...Benjamin Kramer
2012-09-18SROA.cpp: Appease msvc.NAKAMURA Takumi
2012-09-18LNT builders have picked up new SROA, disable it to get the remaining builder...Benjamin Kramer
2012-09-18Fix a warning in release builds and a test case I forgot to update withChandler Carruth
2012-09-18Add a major missing piece to the new SROA pass: aggressive splitting ofChandler Carruth
2012-09-18Fix instcombine to obey requested alignment when merging allocas.Richard Osborne
2012-09-18Mark unimplemented copy constructors and copy assignment operators as LLVM_DE...Craig Topper
2012-09-18PGO: preserve branch-weight metadata when simplifying Switch to a sub, an icmpManman Ren
2012-09-17PGO: preserve branch-weight metadata when simplifying SwitchManman Ren
2012-09-17PGO: preserve branch-weight metadata when simplifying SwitchOnSelect.Manman Ren
2012-09-17PGO: preserve branch-weight metadata when simplifying two branches with a commonManman Ren
2012-09-17s/__llvm_gcov_flush/__gcov_flush/gBill Wendling
2012-09-17NewSROA: Provide a full set of operator< for ByteRanges.Benjamin Kramer
2012-09-17Fix a few vars that can end up being used without initialization.Axel Naumann
2012-09-16Refactor the SROA visitors for partitioning an alloca and buildingChandler Carruth
2012-09-15Use LLVM_DELETED_FUNCTION in place of 'DO NOT IMPLEMENT' comments.Craig Topper
2012-09-15Disable new sroa now that all buildbots have tested it.Benjamin Kramer
2012-09-15Port the SSAUpdater-based promotion logic from the old SROA pass to theChandler Carruth
2012-09-15PGO: preserve branch-weight metadata when simplifying two branches with a commonManman Ren
2012-09-14Remove comment.Bill Wendling
2012-09-14PGO: preserve branch-weight metadata when simplifying a switch with a singleManman Ren
2012-09-14Stylistic and 80-col fixesEvan Cheng
2012-09-14Review feedback from Duncan Sands. Alphabetize includes and simplifyAlex Rosenberg
2012-09-14Try to fix the bots by detecting inconsistant branch-weight metadata.Manman Ren
2012-09-14PGO: preserve branch-weight metadata when merging two switches whereManman Ren
2012-09-14Fix Doxygen issues:Dmitri Gribenko