aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO
AgeCommit message (Expand)Author
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
2009-03-18aha, DAE does have to think about PHI nodes. Many thanks to "Dr Evil" (aka D...Chris Lattner
2009-03-18add an assertion to make it clear that PHI nodes are not allowed.Chris Lattner
2009-03-18Fix PR3807 by inserting 'insertelement' instructions in the normal dest of Chris Lattner
2009-03-13Fix -strip-debug-declare to work when there areDale Johannesen
2009-03-13Revert r66920. It was causing failures in the self-hosting buildbot (in releaseBill Wendling
2009-03-13Second installment of "BasicBlock operands to the back"Gabor Greif
2009-03-09Ignore debug info while evaluating function.Devang Patel
2009-03-09Remove llvm.dbg.global_variables also.Devang Patel
2009-03-09Add helper pass to remove llvm.dbg.declare intrinsics.Devang Patel
2009-03-09This debug info special case should no longerDuncan Sands
2009-03-08Keep calling-convention and tail-call bit when creating new invoke or call.Nick Lewycky
2009-03-08Fix comments, pointed out by Duncan Sands.Nick Lewycky