aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/MergeFunctions.cpp
AgeCommit message (Expand)Author
2013-04-19MergeFunc: Make pointer and integer types generate the same hash.Benjamin Kramer
2013-04-18Implement a better fix for PR15185.Bill Wendling
2013-04-15We are not able to bitcast a pointer to an integral value.Bill Wendling
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth
2012-12-30convert a bunch of callers from DataLayout::getIndexedOffset() to GEP::accumu...Nuno Lopes
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-11-01Revert the series of commits starting with r166578 which introduced theChandler Carruth
2012-10-24Add in support for getIntPtrType to get the pointer type based on the address...Micah Villmow
2012-10-08Move TargetData to DataLayout.Micah Villmow
2012-07-19Remove tabs.Bill Wendling
2012-06-29Move llvm/Support/IRBuilder.h -> llvm/IRBuilder.hChandler Carruth
2011-08-15Update inter-procedural optimizations for atomic load/store.Eli Friedman
2011-07-29Misc optimizer+codegen work for 'cmpxchg' and 'atomicrmw'. They appear to beEli Friedman
2011-07-19Convert TargetData::getIndexedOffset to use ArrayRef.Jay Foad
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner
2011-07-15Convert CallInst and InvokeInst APIs to use ArrayRef.Jay Foad
2011-07-09Land the long talked about "type system rewrite" patch. ThisChris Lattner
2011-04-11Don't include Operator.h from InstrTypes.h.Jay Foad
2011-03-25No functionality change, just adjust some whitespace for coding style complia...Nick Lewycky
2011-02-20Instead of keeping two Value*->id# mappings, keep one Value->Value mapping andNick Lewycky
2011-02-09When removing a function from the function set and adding it to deferred, weNick Lewycky
2011-02-06Simplify away redundant test, and document what's going on.Nick Lewycky
2011-02-06Remove specialized comparison of InlineAsm objects. They're uniqued on creationNick Lewycky
2011-02-02Remove wasteful caching. This isn't needed for correctness because any functionNick Lewycky
2011-01-28Rename functions to follow coding standard. Also rejiggers comments. NoNick Lewycky
2011-01-28Add a doxygen comment for this class.Nick Lewycky
2011-01-28Reorder for readability. (Chris, is this what you meant?)Nick Lewycky
2011-01-28Reduce the number of functions we look at in the first pass, and preallocateNick Lewycky
2011-01-27Unbreak the build.Benjamin Kramer
2011-01-27Expound upon this comparison!Nick Lewycky
2011-01-27Use dyn_cast instead of isa+cast.Nick Lewycky
2011-01-27Fix surprising missed optimization in mergefunc where we forgot to considerNick Lewycky
2011-01-26AttrListPtr has an overloaded operator== which does this for us, we should useNick Lewycky
2011-01-26Teach mergefunc that intptr_t is the same width as a pointer. We still can'tNick Lewycky
2011-01-26There are no vectors of pointer or arrays, so we don't need to check vectorNick Lewycky
2011-01-25Teach mergefunc how to emit aliases safely again -- but keep it turned it offNick Lewycky
2011-01-15Add a cache that protects mergefunc's internals from more surprises in DenseSet.Nick Lewycky
2011-01-02Also remove functions that use complex constant expressions in terms ofNick Lewycky
2011-01-02Remove functions from the FnSet when one of their callee's is being merged. ThisNick Lewycky
2010-10-21RetOp is not actually used for anything useful (thoughDuncan Sands
2010-10-19Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson
2010-10-07Now with fewer extraneous semicolons!Owen Anderson
2010-09-07Fix major bug in thunk detection. Also verify the calling convention.Nick Lewycky
2010-09-05Switch FnSet to containing the ComparableFunction instead of a pointer to one.Nick Lewycky
2010-09-05Fix many bugs when merging weak-strong and weak-weak pairs. We now merge allNick Lewycky
2010-08-31Fix an infinite loop; merging two functions will create a new function (if theNick Lewycky
2010-08-31Switch to DenseSet, simplifying much more code. We now have a single iterationNick Lewycky
2010-08-28remove unions from LLVM IR. They are severely buggy and notChris Lattner
2010-08-09Fix a use after free error caught by the valgrind builders.Nick Lewycky
2010-08-08Do more to modernize MergeFunctions. Refactor in response to Chris' code review.Nick Lewycky