aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/ScalarEvolutionExpander.cpp
Commit message (Expand)AuthorAgeFilesLines
* Introduce and use convenience methods for getting pointer typesDuncan Sands2009-10-061-1/+1
* When extending the operands of an addrec, iterate through allDan Gohman2009-09-281-5/+5
* Fix SCEVExpander's canonical addrec expansion code to work on loops thatDan Gohman2009-09-271-19/+12
* Fix a case where ScalarEvolution was expanding pointer arithmeticDan Gohman2009-09-261-3/+20
* Various comment and whitespace cleanups.Dan Gohman2009-08-201-8/+11
* Generalize ScalarEvolution to be able to analyze GEPs whenDan Gohman2009-08-181-83/+230
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-131-2/+3
* Move a few more APIs back to 2.5 forms. The only remaining ones left to chan...Owen Anderson2009-07-311-3/+3
* Move ConstantExpr to 2.5 API.Owen Anderson2009-07-291-3/+3
* Teach instcombine to respect and preserve inbounds. Add inboundsDan Gohman2009-07-281-1/+3
* Revert the ConstantInt constructors back to their 2.5 forms where possible, t...Owen Anderson2009-07-241-5/+4
* Get rid of the Pass+Context magic.Owen Anderson2009-07-221-10/+10
* Update this comment.Dan Gohman2009-07-201-7/+5
* Fix the expansion of umax and smax in the case where one or more ofDan Gohman2009-07-141-6/+26
* Change all SCEV* to SCEV *.Dan Gohman2009-07-071-29/+29
* Finish LLVMContext-ing lib/Analysis. This required pushing LLVMContext's thr...Owen Anderson2009-07-061-10/+12
* Minor formatting, whitespace, and 80-column fixes.Dan Gohman2009-06-301-7/+7
* Change SCEVExpander to use an IRBuilder to emit instructions.Dan Gohman2009-06-271-72/+70
* Incorporate the insertion point into the key of SCEVExpander's CSE map.Dan Gohman2009-06-261-14/+19
* Extend ScalarEvolution's multiple-exit support to compute exactDan Gohman2009-06-241-46/+58
* Fix a few minor issues that were exposed by the removal of SCEVHandle.Dan Gohman2009-06-221-1/+1
* SCEVHandle is no more!Owen Anderson2009-06-221-34/+34
* Support vector casts in more places, fixing a variety of assertionDan Gohman2009-06-151-3/+1
* Convert several parts of the ScalarEvolution framework to useDan Gohman2009-06-141-7/+9
* Teach SCEVExpander's visitAddRecExpr to reuse an existing canonicalDan Gohman2009-06-131-8/+51
* Use expandCodeFor instead of expand when the result will beDan Gohman2009-06-091-29/+18
* Move SCEVExpander::getOrInsertCanonicalInductionVariable out of line.Dan Gohman2009-06-051-0/+13
* Add braces around an array initializer.Dan Gohman2009-05-271-1/+1
* Teach SCEVExpander to avoid creating over-indexed GEP indices whenDan Gohman2009-05-271-10/+25
* In cases where a pointer value is an operand of a multiplication orDan Gohman2009-05-261-3/+8
* Instead of clearing the rewriter, don't attempt to rewrite dead phi nodes.Torok Edwin2009-05-241-1/+2
* Fix this code for hosts where std::vector doesn't have .data().Dan Gohman2009-05-241-1/+1
* Generalize SCEVExpander::visitAddRecExpr's GEP persuit, and avoidDan Gohman2009-05-241-51/+140
* The rewriter may hold references to instructions that are deleted because the...Torok Edwin2009-05-241-1/+1
* Fix a thinko in the code that adapted SCEVMulExpr operands forDan Gohman2009-05-221-3/+13
* Create ConstantExpr GEPs the correct way. This fixesDan Gohman2009-05-191-1/+1
* Teach SCEVExpander to expand arithmetic involving pointers into GEPDan Gohman2009-05-191-16/+161
* Actually insert inserted instructions into the InsertedValues map.Dan Gohman2009-05-011-11/+33
* Short-circuit inttoptr-ptrtoint constant expressions; these aren'tDan Gohman2009-05-011-1/+8
* Change SCEVExpander's expandCodeFor to provide more flexibilityDan Gohman2009-04-231-3/+1
* Fix cut-n-pasto.Devang Patel2009-04-221-2/+2
* SCEVExpander's InsertCastOfTo knows how to move existing castDan Gohman2009-04-221-0/+5
* Use BasicBlock::iterator instead of Instruction* for insert points,Dan Gohman2009-04-221-7/+7
* Introduce encapsulation for ScalarEvolution's TargetData object, and refactorDan Gohman2009-04-211-50/+49
* Use more const qualifiers with SCEV interfaces.Dan Gohman2009-04-181-12/+12
* Handle a pointer type correctly in SCEVExpander::visitAddRecExpr.Dan Gohman2009-04-161-0/+2
* Fix a bug with inttoptr/ptrtoint casts where the pointer has a differentDan Gohman2009-04-161-2/+6
* Fix SCEVExpander::visitSMaxExpr and SCEVExpander::visitUMaxExpr toDan Gohman2009-04-161-0/+8
* Teach SCEVExpander::InsertCastOfTo to avoid creating inttoptr-of-ptrtointDan Gohman2009-04-161-0/+8
* Expand GEPs in ScalarEvolution expressions. SCEV expressions can nowDan Gohman2009-04-161-12/+47