aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/StructRetPromotion.cpp
AgeCommit message (Expand)Author
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
2008-04-06API changes for class Use size reduction, wave 1.Gabor Greif
2008-03-12Reimplement the parameter attributes support, phase #1. hilights:Chris Lattner
2008-03-12Fix attribute handling.Devang Patel
2008-03-11Initialize.Devang Patel
2008-03-05Skip, for now, callsites where use of sret argument is not dominated by calls...Devang Patel
2008-03-04Filter nested structsDevang Patel
2008-03-04Use appropriate index to get the result value.Devang Patel
2008-03-04Skip sret attribute while preparing attribute list forDevang Patel
2008-03-04Increment counter that keeps track of total number of sret promoted.Devang Patel
2008-03-04Skip declarations.Devang Patel
2008-03-04Process externally visible functions also. Later on code generator will do th...Devang Patel
2008-03-04Collect statistics.Devang Patel
2008-03-03s/isReturnStruct()/hasStructRetAttr()/gDevang Patel