Vectorizer: Add support for loops with an unknown count. For example:
[oota-llvm.git] / lib / Transforms / Utils /
2012-10-15 Micah VillmowResubmit the changes to llvm core to update the functio...
2012-10-15 Bill WendlingAdd an enum for the return and function indexes into...
2012-10-15 Bill WendlingAttributes Rewrite
2012-10-15 Meador Ingeinstcombine: Migrate strcmp and strncmp optimizations
2012-10-14 Benjamin KramerSimplify code. No functionality change.
2012-10-14 Bill WendlingRemove the bitwise assignment OR operator from the...
2012-10-13 Benjamin KramerRemove unused private field.
2012-10-13 Meador Ingeinstcombine: Migrate strchr and strrchr optimizations
2012-10-13 Meador Ingeinstcombine: Migrate strcat and strncat optimizations
2012-10-13 Meador IngeImplement new LibCallSimplifier class
2012-10-11 Manman RenPGO: create metadata for switch only if it has more...
2012-10-11 Micah VillmowRevert 165732 for further review.
2012-10-11 Micah VillmowAdd in the first iteration of support for llvm/clang...
2012-10-10 Nadav RotemAdd a new interface to allow IR-level passes to access...
2012-10-10 Bill WendlingPass into the AttributeWithIndex::get method an ArrayRe...
2012-10-10 Bill WendlingHave 'addFnAttr' take the attribute enum value. Then...
2012-10-08 Micah VillmowMove TargetData to DataLayout.
2012-10-04 Preston GurdThis patch corrects commit 165126 by using an integer...
2012-10-04 Benjamin KramerSimplifyCFG: Enhance the "remove CFG edge that leads...
2012-10-03 Preston GurdThis Patch corrects a problem whereby the optimization...
2012-10-01 Benjamin KramerSimplifyCFG: Don't crash when forming a switch bitmap...
2012-09-30 Benjamin KramerSimplifyCFG: Enumerating all predecessors of a BB can...
2012-09-27 Benjamin KramerFix a integer overflow in SimplifyCFG's look up table...
2012-09-27 Sylvestre LedruRevert 'Fix a typo 'iff' => 'if''. iff is an abreviatio...
2012-09-27 Sylvestre LedruFix a typo 'iff' => 'if'
2012-09-26 Hans WennborgAddress Duncan's comments on r164684:
2012-09-26 Hans WennborgAddress Duncan's comments on r164682:
2012-09-26 Hans WennborgSimplifyCFG: Make the switch-to-lookup table transforma...
2012-09-26 Hans WennborgSimplifyCFG: Refactor the switch-to-lookup table transf...
2012-09-26 Craig TopperRename virtual table anchors from Anchor() to anchor...
2012-09-26 Michael IlsemanExpansions for u/srem, using the udiv expansion. More...
2012-09-25 Chad RosierRevert r164614 to appease the buildbots.
2012-09-25 Michael IlsemanExpansions for u/srem, using the udiv expansion. More...
2012-09-20 Manman RenSimplifyCFG: sink common codes from IF, ELSE blocks...
2012-09-19 Michael IlsemanRenaming functions to match coding style guidelines
2012-09-19 Michael IlsemanDoxygen-ify comments
2012-09-19 Michael IlsemanPut the * and & next to the variable, rather than the...
2012-09-19 Hans WennborgSimplifyCFG: Don't generate invalid code for switch...
2012-09-19 Benjamin KramerIntegerDivision: Style cleanups, avoid warning about...
2012-09-18 Michael IlsemanNew utility for expanding integer division for targets...
2012-09-18 Manman RenPGO: preserve branch-weight metadata when simplifying...
2012-09-17 Manman RenPGO: preserve branch-weight metadata when simplifying...
2012-09-17 Manman RenPGO: preserve branch-weight metadata when simplifying...
2012-09-17 Manman RenPGO: preserve branch-weight metadata when simplifying...
2012-09-17 Axel NaumannFix a few vars that can end up being used without initi...
2012-09-15 Manman RenPGO: preserve branch-weight metadata when simplifying...
2012-09-14 Manman RenPGO: preserve branch-weight metadata when simplifying...
2012-09-14 Evan ChengStylistic and 80-col fixes
2012-09-14 Alex RosenbergReview feedback from Duncan Sands. Alphabetize includes...
2012-09-14 Manman RenTry to fix the bots by detecting inconsistant branch...
2012-09-14 Manman RenPGO: preserve branch-weight metadata when merging two...
2012-09-12 Manman RenPGO: preserve branch-weight metadata when removing...
2012-09-12 Manman RenRelease build: guard dump functions with
2012-09-11 Manman RenSimplifyCFG: preserve branch-weight metadata when creat...
2012-09-11 NAKAMURA Takumillvm/lib/Transforms/Utils/CMakeLists.txt: Update.
2012-09-11 Alex RosenbergAdd a pass that renames everything with metasyntatic...
2012-09-10 Benjamin KramerMove bypassSlowDivision into the llvm namespace.
2012-09-10 Hans WennborgFix style issues from r163302 pointed out by Evan.
2012-09-08 Andrew TrickRemove an incorrect assert during branch weight propaga...
2012-09-07 Hans WennborgSimplifyCFG: ValidLookupTableConstant should be static
2012-09-06 Manman RenRelease build: guard dump functions with "ifndef NDEBUG"
2012-09-06 Hans WennborgFix switch_to_lookup_table.ll test from r163302.
2012-09-06 Hans WennborgBuild lookup tables for switches (PR884)
2012-09-05 Roman DivackyStop casting away const qualifier needlessly.
2012-09-04 Jakub StaszakBypassSlowDivision: Assign to reference, don't copy...
2012-09-04 Jakub StaszakFix my previous patch (r163164). It does now what it...
2012-09-04 Jakub StaszakReturn false if BypassSlowDivision doesn't change anything.
2012-09-04 Preston GurdGeneric Bypass Slow Div
2012-08-30 Michael Ilsemantest
2012-08-29 Andrew TrickPreserve branch profile metadata during switch formation.
2012-08-29 Andrew Trickwhitespace
2012-08-29 Benjamin KramerMake MemoryBuiltins aware of TargetLibraryInfo.
2012-08-17 Richard SmithFix undefined behavior (binding a reference to a derefe...
2012-08-13 Nadav RotemLICM uses AliasSet information to hoist and sink instru...
2012-08-01 Nuno Lopesremove tabs from my previous commit.
2012-08-01 Nuno Lopes(hopefuly) fix the remaining cases where null wasnt...
2012-07-27 Evan ChengTeach CodeGenPrep to look past bitcast when it's duplic...
2012-07-25 Nuno Lopesadd EmitStrNLen()
2012-07-25 Nuno Lopesmake all Emit*() functions consult the TargetLibraryInf...
2012-07-23 Sylvestre LedruFix a typo (the the => the)
2012-07-15 Chandler CarruthMove llvm/Support/MDBuilder.h to llvm/MDBuilder.h,...
2012-07-13 Benjamin KramerMake helper functions static.
2012-07-04 Stepan DyatkovskiyReverted r156659, due to probable performance regressio...
2012-07-03 Stepan DyatkovskiyPart of r159527. Splitted into series of patches and...
2012-07-02 Eric ChristopherRevert "IntRange:" as it appears to be breaking self...
2012-07-02 Stepan DyatkovskiyIntRange:
2012-06-29 Nuno Lopesrevert r159440. As Duncan pointed out, the test for...
2012-06-29 Nuno Lopesignore 'invoke new' in isInstructionTriviallyDead,...
2012-06-29 Chandler CarruthMove llvm/Support/IRBuilder.h -> llvm/IRBuilder.h
2012-06-29 Bill WendlingThe DIBuilder class is just a wrapper around debug...
2012-06-28 Bill WendlingMove lib/Analysis/DebugInfo.cpp to lib/VMCore/DebugInfo...
2012-06-25 Eli BenderskyThe name (and comment describing) of llvm::GetFirstDebu...
2012-06-24 NAKAMURA Takumillvm/lib: [CMake] Add explicit dependency to intrinsics...
2012-06-24 Nick LewyckyRemove dyn_cast + dereference pattern by replacing...
2012-06-23 Hans WennborgExtend the IL for selecting TLS models (PR9788)
2012-06-23 Stepan DyatkovskiyOptimized usage of new SwitchInst case values (Integers...
2012-06-22 Stepan DyatkovskiyFixed r158979.
2012-06-21 Nuno Lopesrefactor the MemoryBuiltin analysis:
2012-06-20 Chandler CarruthFix two rather subtle internal vs. external linker...
2012-06-13 Manman RenSimplifyCFG: fold unconditional branch to its predecess...
next