aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Analysis/ScalarEvolutionExpander.h
Commit message (Expand)AuthorAgeFilesLines
* remove some more Context arguments.Chris Lattner2009-11-061-2/+1
* Various comment and whitespace cleanups.Dan Gohman2009-08-201-3/+2
* Generalize ScalarEvolution to be able to analyze GEPs whenDan Gohman2009-08-181-0/+4
* Get rid of the Pass+Context magic.Owen Anderson2009-07-221-3/+3
* Forward-declare Loop and LoopInfo instead of #including LoopInfo.h.Dan Gohman2009-07-131-0/+1
* Finish pushing LLVMContext through the IRBuilder/ConstantFolder interface.Owen Anderson2009-07-101-1/+1
* Push LLVMContext _back_ through IRBuilder.Owen Anderson2009-07-081-1/+2
* Change all SCEV* to SCEV *.Dan Gohman2009-07-071-4/+4
* Finish LLVMContext-ing lib/Analysis. This required pushing LLVMContext's thr...Owen Anderson2009-07-061-0/+2
* Thread LLVMContext through the constant folding APIs, which touches a lot of ...Owen Anderson2009-07-061-1/+1
* Change SCEVExpander to use an IRBuilder to emit instructions.Dan Gohman2009-06-271-19/+13
* Incorporate the insertion point into the key of SCEVExpander's CSE map.Dan Gohman2009-06-261-32/+16
* SCEVHandle is no more!Owen Anderson2009-06-221-4/+5
* Move SCEVExpander::getOrInsertCanonicalInductionVariable out of line.Dan Gohman2009-06-051-6/+1
* Generalize SCEVExpander::visitAddRecExpr's GEP persuit, and avoidDan Gohman2009-05-241-2/+2
* The rewriter may hold references to instructions that are deleted because the...Torok Edwin2009-05-241-1/+1
* Teach SCEVExpander to expand arithmetic involving pointers into GEPDan Gohman2009-05-191-7/+10
* Actually insert inserted instructions into the InsertedValues map.Dan Gohman2009-05-011-2/+2
* Add an accessor method to allow clients to test if a given expressionDan Gohman2009-05-011-0/+6
* Make SCEVExpander::addInsertedValue able to accept Values, not justDan Gohman2009-05-011-5/+5
* Change SCEVExpander's expandCodeFor to provide more flexibilityDan Gohman2009-04-231-1/+11
* Use BasicBlock::iterator instead of Instruction* for insert points,Dan Gohman2009-04-221-5/+6
* Make SCEVExpanders private methods private, instead of protected.Dan Gohman2009-04-221-1/+2
* Introduce encapsulation for ScalarEvolution's TargetData object, and refactorDan Gohman2009-04-211-5/+7
* Use more const qualifiers with SCEV interfaces.Dan Gohman2009-04-181-13/+13
* Teach SCEVExpander::InsertCastOfTo to avoid creating inttoptr-of-ptrtointDan Gohman2009-04-161-2/+2
* Expand GEPs in ScalarEvolution expressions. SCEV expressions can nowDan Gohman2009-04-161-3/+7
* Wind SCEV back in time, to Nov 18th. This 'fixes' PR3275, PR3294, PR3295,Nick Lewycky2009-01-131-3/+2
* Tidy up #includes, deleting a bunch of unnecessary #includes.Dan Gohman2009-01-051-2/+1
* Add a new SCEV representing signed division.Nick Lewycky2008-12-021-0/+2
* Expand SCEVUDiv of power of 2 to a lshr instruction.Nick Lewycky2008-07-081-5/+1
* Move a few more SCEVExpander methods out-of-line.Dan Gohman2008-06-221-17/+4
* Move SCEVExpander::visitAddExpr out-of-line.Dan Gohman2008-06-181-9/+1
* Fix PR2434. When scanning for exising binary operator to reuse don't Wojciech Matyjewicz2008-06-151-1/+1
* Prune and tidy #includes.Dan Gohman2008-05-291-3/+0
* API change for {BinaryOperator|CmpInst|CastInst}::create*() --> Create. Legac...Gabor Greif2008-05-161-3/+3
* Add 'umax' similar to 'smax' SCEV. Closes PR2003.Nick Lewycky2008-02-201-0/+2
* Fix PR1798 - an error in the evaluation of SCEVAddRecExpr at an Wojciech Matyjewicz2008-02-111-2/+2
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-291-2/+2
* Add new SCEV, SCEVSMax. This allows LLVM to analyze do-while loops.Nick Lewycky2007-11-251-0/+2
* Reverted r44163 per requestAnton Korobeynikov2007-11-151-6/+0
* Fix handling of overflow in loop calculation by adding new UDiv SCEV. This SCEVNick Lewycky2007-11-151-0/+6
* Move the SCEV object factors from being static members of the individualDan Gohman2007-10-221-2/+2
* - Use correct header for SCEV inside LoopPass.cppAnton Korobeynikov2007-08-201-11/+2
* Add a SCEV class and supporting code for sign-extend expressions.Dan Gohman2007-06-151-31/+12
* add accessorChris Lattner2007-06-061-0/+2
* what's an & between friends?Chris Lattner2007-04-181-1/+1
* CSE simple binary expressions when they are inserted. This makes LSR produceChris Lattner2007-04-131-4/+7
* For PR970:Reid Spencer2007-01-211-2/+1
* rename Type::isIntegral to Type::isInteger, eliminating the old Type::isInteger.Chris Lattner2007-01-151-3/+3