aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp
AgeCommit message (Expand)AuthorFilesLines
2016-08-18[IRCE] Switch over to LLVM_DUMP_METHOD. NFCI.Davide Italiano1-2/+1
2016-08-17Replace "fallthrough" comments with LLVM_FALLTHROUGHJustin Bogner1-3/+3
2016-08-17Scalar: Avoid dereferencing end() in InductiveRangeCheckEliminationDuncan P. N. Exon Smith1-3/+3
2016-08-14[IRCE] Change variable grouping; NFCSanjoy Das1-2/+2
2016-08-14[IRCE] Create llvm::Loop instances for cloned out loopsSanjoy Das1-10/+45
2016-08-14[IRCE] Don't iterate on loops that were cloned outSanjoy Das1-0/+12
2016-08-14[IRCE] Add better DEBUG diagnostic; NFCSanjoy Das1-1/+3
2016-08-13[IRCE] Be resilient in the face of non-simplified loopsSanjoy Das1-1/+4
2016-08-13[IRCE] Use dyn_cast instead of explicit isa/cast; NFCSanjoy Das1-10/+8
2016-08-13[IRCE] Use range-for; NFCSanjoy Das1-5/+3
2016-08-06[IRCE] Remove unused headers; NFCSanjoy Das1-7/+0
2016-08-06[IRCE] Preserve loop-simplify formSanjoy Das1-0/+2
2016-08-02[IRCE] Rename variable; NFCSanjoy Das1-6/+6
2016-08-02[IRCE] Preserve DomTree and LCSSASanjoy Das1-5/+11
2016-07-22[IRCE] Add an option to skip profitability checksSanjoy Das1-2/+7
2016-06-23[IRCE] Use getTerminator instead of rbegin; NFCSanjoy Das1-5/+5
2016-05-26[IRCE] Use C++11 style initializers; NFCSanjoy Das1-9/+5
2016-05-26[IRCE] Optimize conjunctions of range checksSanjoy Das1-51/+69
2016-05-26[IRCE] Refactor out a parseRangeCheckFromCond; NFCSanjoy Das1-50/+39
2016-05-24[IRCE] Return a Value*, not SCEV* from parseRangeCheck; NFCSanjoy Das1-26/+10
2016-05-23[IRCE] Optimize "uses" not branches; NFCISanjoy Das1-9/+10
2016-05-21[IRCE] Don't use an allocator for range checks; NFCSanjoy Das1-37/+28
2016-05-21[IRCE] Don't pass IRBuilder<> where unnecessary; NFCSanjoy Das1-8/+6
2016-05-03Add opt-bisect support to additional passes that can be skippedAndrew Kaylor1-0/+3
2016-04-18[NFC] Header cleanupMehdi Amini1-1/+0
2016-04-07IR: RF_IgnoreMissingValues => RF_IgnoreMissingLocals, NFCDuncan P. N. Exon Smith1-1/+1
2016-03-09Return StringRef instead of a naked char*; NFCSanjoy Das1-2/+2
2016-03-09[IRCE] Reflow comments; NFCSanjoy Das1-4/+2
2016-02-19[LPM] Factor all of the loop analysis usage updates into a common helperChandler Carruth1-8/+2
2015-10-13Scalar: Remove some implicit ilist iterator conversions, NFCDuncan P. N. Exon Smith1-2/+2
2015-09-09[IRCE] Add INITIALIZE_PASS_DEPENDENCY invocations.Sanjoy Das1-2/+9
2015-08-17[PM] Port ScalarEvolution to the new pass manager.Chandler Carruth1-2/+2
2015-07-15Create a wrapper pass for BranchProbabilityInfo.Cong Hou1-2/+3
2015-06-23Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)Alexander Kornienko1-2/+2
2015-06-19Fixed/added namespace ending comments using clang-tidy. NFCAlexander Kornienko1-2/+2
2015-03-24[IRCE] Fix how IRCE checks for no-sign-overflow.Sanjoy Das1-14/+24
2015-03-24[IRCE] Fix a regression introduced in r232444.Sanjoy Das1-9/+20
2015-03-23Re-sort includes with sort-includes.py and insert raw_ostream.h where it's used.Benjamin Kramer1-8/+3
2015-03-17Fix GCC -Wparentheses warning (& reformat now that the precedence is fixed)David Blaikie1-2/+2
2015-03-17Use an underlying enum type of unsigned to silence a -Wmicrosoft warning abou...Reid Kleckner1-1/+1
2015-03-17[IRCE] Add a -irce-print-range-checks option.Sanjoy Das1-6/+15
2015-03-17[IRCE] Add comments, NFC.Sanjoy Das1-4/+27
2015-03-17[IRCE] Support half-range checks.Sanjoy Das1-128/+152
2015-03-10DataLayout is mandatory, update the API to reflect it with references.Mehdi Amini1-4/+5
2015-02-26IRCE: only touch loops that have been shown to have a highSanjoy Das1-4/+17
2015-02-26IRCE: generalize to handle loops with decreasing induction variables.Sanjoy Das1-207/+358
2015-02-26IRCE: print newline after printing an InductiveRangeCheck.Sanjoy Das1-0/+1
2015-02-21IRCE: generalize InductiveRangeCheck::computeSafeIterationSpace toSanjoy Das1-32/+57
2015-02-21IRCE: use SCEVs instead of llvm::Value's for intermediateSanjoy Das1-46/+30
2015-02-06Make helper functions/classes/globals static. NFC.Benjamin Kramer1-4/+4