aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp
AgeCommit message (Expand)AuthorFilesLines
2025-04-04[LoopUnroll] UnrollRuntimeMultiExit takes precedence over TTI. (#134259)Florian Hahn1-12/+14
2025-01-27[LoopUnroll] Add RuntimeUnrollMultiExit to loop unroll options (NFC) (#124462)Florian Hahn1-4/+6
2024-12-02[TTI] Add SCEVExpansionBudget to loop unrolling options. (#118316)Florian Hahn1-3/+4
2024-11-04[Utils] Remove unused includes (NFC) (#114748)Kazu Hirata1-1/+0
2024-09-23[Loops] Use forgetLcssaPhiWithNewPredecessor() in more placesNikita Popov1-1/+1
2024-08-03[Transforms] Construct SmallVector with ArrayRef (NFC) (#101851)Kazu Hirata1-2/+1
2024-06-27[IR] Add getDataLayout() helpers to BasicBlock and Instruction (#96902)Nikita Popov1-2/+2
2024-06-25[LoopUnroll] Use poison instead of undef for another preheader valueNikita Popov1-1/+1
2024-06-25[LoopUnroll] Use poison instead of undef for preheader valueNikita Popov1-2/+2
2024-06-13[llvm-project] Fix typo "seperate" (#95373)Jay Foad1-1/+1
2024-06-06[LoopUnroll] Consider convergence control tokens when unrolling (#91715)Sameer Sahasrabuddhe1-6/+11
2024-05-08[RemoveDIs] Change remapDbgVariableRecord to remapDbgRecord (#91456)Harald van Dijk1-3/+2
2024-03-19[RemoveDIs][NFC] Rename DPValue -> DbgVariableRecord (#85216)Stephen Tozer1-2/+3
2024-03-12[RemoveDIs][NFC] Rename common interface functions for DPValues->DbgRecords (...Stephen Tozer1-1/+1
2024-02-01[LoopUnroll] Fix missing sign extensionNikita Popov1-1/+1
2023-11-24[DebugInfo][RemoveDIs] Support cloning and remapping DPValues (#72546)Jeremy Morse1-0/+3
2023-09-11LoopUnrollRuntime: Add weights to all branchesMatthias Braun1-41/+60
2023-09-11[NFC][RemoveDIs] Prefer iterator-insertion over instructionsJeremy Morse1-10/+11
2023-06-19[LoopUnrollRuntime] Allow indirect transition to deopt non-latch exit blocksYevgeny Rouban1-1/+1
2022-12-16[Transforms,InstCombine] std::optional::value => operator*/operator->Fangrui Song1-1/+1
2022-12-14[NFC] Cleanup: Replace Function::getBasicBlockList().splice() with Function::...Vasileios Porpodas1-4/+1
2022-12-12Transforms/Utils: llvm::Optional => std::optionalFangrui Song1-1/+1
2022-08-07[Transforms] Fix comment typos (NFC)Kazu Hirata1-1/+1
2022-08-03[llvm][NFC] Refactor code to use ProfDataUtilsPaul Kirth1-1/+2
2022-07-27Revert "[llvm][NFC] Refactor code to use ProfDataUtils"Paul Kirth1-2/+1
2022-07-27[llvm][NFC] Refactor code to use ProfDataUtilsPaul Kirth1-1/+2
2022-07-13[llvm] Use value instead of getValue (NFC)Kazu Hirata1-1/+1
2022-06-29[LoopUnrollRuntime] Invalidate SCEV for exit phi in ConnectProlog.Florian Hahn1-2/+4
2022-06-29[UnrollRuntime] Invalidate SCEVs for modified phis in ConnectEpilog.Florian Hahn1-4/+5
2022-06-25[llvm] Don't use Optional::hasValue (NFC)Kazu Hirata1-1/+1
2022-06-25Revert "Don't use Optional::hasValue (NFC)"Kazu Hirata1-2/+2
2022-06-25Don't use Optional::hasValue (NFC)Kazu Hirata1-2/+2
2022-06-09[NFC] format InstructionSimplify & lowerCaseFunctionNamesSimon Moll1-1/+1
2022-05-24[LoopUnroll] Freeze tripcount rather than conditionNikita Popov1-8/+20
2022-05-18[LoopUnroll] Avoid branch on poison for runtime unroll with multiple exitsNikita Popov1-0/+6
2022-03-01Cleanup includes: TransformsUtilsserge-sans-paille1-3/+1
2021-12-01[LoopUnrollRuntime] Remove unnecessary pointer BECount check (NFC)Nikita Popov1-4/+2
2021-11-15[unroll-runtime] Relax two profitability limitations on multi-exit unrollingPhilip Reames1-10/+0
2021-11-15[runtime-unroll] Inline canSafelyUnrollMultiExitLoop [NFC]Philip Reames1-28/+5
2021-11-15[runtime-unroll] Restructure if-clause to improve readability [NFC]Philip Reames1-13/+15
2021-11-12[runtime-unroll] Use incrementing IVs instead of decrementing onesPhilip Reames1-19/+20
2021-10-14[llvm] Use llvm::is_contained (NFC)Kazu Hirata1-3/+1
2021-09-13[Utils] Use make_early_inc_range (NFC)Kazu Hirata1-7/+6
2021-09-02[runtimeunroll] Support epilogue unrolling with a parent loopPhilip Reames1-8/+20
2021-09-02[runtimeunroll] Under EXPENSIVE_CHECKS, validate loop infoPhilip Reames1-2/+4
2021-08-31[runtime] Move prolog/epilog block to a post-simplify strategyPhilip Reames1-60/+67
2021-08-22[runtimeunroll] Use early return to reduce nesting [nfc]Philip Reames1-39/+38
2021-08-19[runtimeunroll] Support multiple exits to latch exit w/prolog loopPhilip Reames1-10/+5
2021-08-19[runtimeunroll] Fix reported DT verification error after 94d0914Philip Reames1-2/+4
2021-08-17[runtimeunroll] Support multiple exits to latch exit w/epilogue loopPhilip Reames1-6/+20