aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/StructRetPromotion.cpp
AgeCommit message (Expand)Author
2011-04-11remove the StructRetPromotion pass. It is unused, not maintained andChris Lattner
2010-10-19Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson
2010-10-13CallGraphSCC passes implicity require CallGraph analysis.Owen Anderson
2010-10-07Now with fewer extraneous semicolons!Owen Anderson
2010-08-26zap dead code.Chris Lattner
2010-08-06Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson
2010-08-06Revert r110396 to fix buildbots.Owen Anderson
2010-08-05Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson
2010-07-28simplify by using CallSite constructors; virtually eliminates CallSite::get f...Gabor Greif
2010-07-22mass elimination of reliance on automatic iterator dereferencingGabor Greif
2010-07-21Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson
2010-07-12cache dereferenced iteratorsGabor Greif
2010-06-22Use pre-increment instead of post-increment when the result is not used.Dan Gohman
2010-04-16introduce a new CallGraphSCC class, and pass it aroundChris Lattner
2010-01-05Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer
2010-01-05Change errs() to dbgs().David Greene
2009-10-25Remove includes of Support/Compiler.h that are no longer needed after theNick Lewycky
2009-10-25Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky
2009-09-01remove CallGraphNode::replaceCallSite, it is redundant with other APIs.Chris Lattner
2009-09-01cleanup/simplifyChris Lattner
2009-08-31Fix some nasty callgraph dangling pointer problems in Chris Lattner
2009-08-23remove a few DOUTs here and there.Chris Lattner
2009-08-13Push LLVMContexts through the IntegerType APIs.Owen Anderson
2009-07-29Move types back to the 2.5 API.Owen Anderson
2009-07-26Remove Value::getName{Start,End}, the last of the old Name APIs.Daniel Dunbar
2009-07-22Get rid of the Pass+Context magic.Owen Anderson
2009-07-15Revert yesterday's change by removing the LLVMContext parameter to AllocaInst...Owen Anderson
2009-07-14Move EVER MORE stuff over to LLVMContext.Owen Anderson
2009-07-06More LLVMContext-ification.Owen Anderson
2009-01-22introduce a useful abstraction to find out if a Use is in the call position o...Gabor Greif
2009-01-15Add the private linkage.Rafael Espindola
2008-09-26Now Attributes are divided in three groupsDevang Patel
2008-09-25 Large mechanical patch.Devang Patel
2008-09-24s/ParamAttrsWithIndex/FnAttributeWithIndex/gDevang Patel
2008-09-23s/ParameterAttributes/Attributes/gDevang Patel
2008-09-08Update the callgraph correctly.Duncan Sands
2008-09-04Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman
2008-08-14Replace two for loops with while(!X->use_empty()) loops. This preventsMatthijs Kooijman
2008-08-07Let SRETPromotion properly preserve the function name instead of (implicitly)Matthijs Kooijman
2008-08-07Fix SRETPromotion, it was generating functions without returns statements sinceMatthijs Kooijman
2008-08-07Add some debug output to SRETPromotion.Matthijs Kooijman
2008-07-23Enable first-class aggregates support.Dan Gohman
2008-06-05Let StructRetPromotion check if all if its users are really calls or invokesn,Matthijs Kooijman
2008-06-05Let StructRetPromotion check if it's users are really calling it and notMatthijs Kooijman
2008-05-26Factor code to copy global value attributes likeDuncan Sands
2008-05-23Use isSingleValueType instead of isFirstClassType toDan Gohman
2008-05-13Clean up the use of static and anonymous namespaces. This turned upDan Gohman
2008-05-09Fix a type and formatting.Duncan Sands
2008-05-08Improve pass documentation and comments.Gordon Henriksen
2008-05-08Check linkage.Devang Patel