aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO
AgeCommit message (Expand)Author
2009-07-24Convert several more passes to use getAnalysisIfAvailable<TargetData>()Dan Gohman
2009-07-24Switch to getNameStr().Daniel Dunbar
2009-07-22Remove unnecessary store to temporary std::string.Daniel Dunbar
2009-07-22Get rid of the Pass+Context magic.Owen Anderson
2009-07-21Rename getConstantInt{True|False} to get{True|False} at Chris' behest.Owen Anderson
2009-07-21Update CMake files.Ted Kremenek
2009-07-20implement a new magic global "llvm.compiler.used" which is like llvm.used, butChris Lattner
2009-07-20Add plumbing for the `linker_private' linkage type. This type is meant forBill Wendling
2009-07-18Add line breaks to make the debug output a bit more readable.Eli Friedman
2009-07-16Move the ConstantInt uniquing table into LLVMContextImpl. This exposed a num...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-14llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin
2009-07-13Move more functionality over to LLVMContext.Owen Anderson
2009-07-11assert(0) -> LLVM_UNREACHABLE.Torok Edwin
2009-07-09This started as a small change, I swear. Unfortunately, lots of things call ...Owen Anderson
2009-07-08Switch GlobalVariable ctors to a sane API, where *either* a context or a modu...Owen Anderson
2009-07-08Push LLVMContext through GlobalVariables and IRBuilder.Owen Anderson
2009-07-06"LLVMContext* " --> "LLVMContext *"Owen Anderson
2009-07-06Finish LLVMContext-ing lib/Analysis. This required pushing LLVMContext's thr...Owen Anderson
2009-07-06Thread LLVMContext through the constant folding APIs, which touches a lot of ...Owen Anderson
2009-07-06More LLVMContext-ification.Owen Anderson
2009-07-03Add newline at end of file.Duncan Sands
2009-07-01improve the APIs for creating struct and function types with no arguments/ele...Chris Lattner
2009-06-26Remove debug info anchors - llvm.dbg.compile_units, llvm.dbg.subprogramsDevang Patel
2009-06-17>> What if my global variable was into a different address space than stack?Sanjiv Gupta
2009-06-15Merge PartialInliner changes.Owen Anderson
2009-06-14Fix old-style type names in comments.Dan Gohman
2009-06-14Fix CMake build. Patch from Ingmar Vanhassel.Torok Edwin
2009-06-14Add an early implementation of a partial inlining pass. The idea behind thisOwen Anderson
2009-06-13Unlike the other instructions, GEP really does need to look at the type of aNick Lewycky
2009-06-12Give Instruction::isSameOperationAs a corresponding comment to noteDan Gohman
2009-06-12Keep callers of a weak function calling it, instead of the non-weak equivalent.Nick Lewycky
2009-06-12Don't forget to match the calling convention when producing a thunk.Nick Lewycky
2009-06-12Given two identical weak functions, produce one internal function and two weakNick Lewycky
2009-06-12Add an "are types equivalent" operation that ignores the types that a pointerNick Lewycky
2009-06-10Implement and use new method Function::hasAddressTaken().Jay Foad
2009-06-09Remove an unused function SafeToDestroyConstant(). Rename an almostJay Foad
2009-06-06Use cast<> instead of dyn_cast<> for things that are known to beJay Foad
2009-06-02Avoid infinite looping in AllGlobalLoadUsesSimpleEnoughForHeapSRA(). This can...Evan Cheng
2009-05-23available_externall linkage is not local, this was confusing the codegenerator,Torok Edwin
2009-05-09Rename PaddedSize to AllocSize, in the hope that thisDuncan Sands
2009-05-06Fix PR3754: don't mark functions that wrap MallocInst withDuncan Sands
2009-05-03Revert r70630. Go back to appending ".b" to internal globals when shrinkingNick Lewycky
2009-05-02The second argument to RecursivelyDeleteTriviallyDeadInstructions hasDan Gohman
2009-05-02Don't append ".b" to the names of globals that are being shrunk to booleans.Nick Lewycky
2009-04-17Use a safer iterator interface and get rid of std C++ library misuse.David Greene
2009-04-13eliminate unneeded parens.Chris Lattner
2009-03-23Use a SmallPtrSet instead of std::set.Dale Johannesen
2009-03-19Clear the cached cost when removing a function inDale Johannesen