Age | Commit message (Expand) | Author |
2009-07-14 | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin |
2009-07-13 | Move more functionality over to LLVMContext. | Owen Anderson |
2009-07-11 | assert(0) -> LLVM_UNREACHABLE. | Torok Edwin |
2009-07-09 | This started as a small change, I swear. Unfortunately, lots of things call ... | Owen Anderson |
2009-07-08 | Switch GlobalVariable ctors to a sane API, where *either* a context or a modu... | Owen Anderson |
2009-07-08 | Push LLVMContext through GlobalVariables and IRBuilder. | Owen Anderson |
2009-07-06 | "LLVMContext* " --> "LLVMContext *" | Owen Anderson |
2009-07-06 | Finish LLVMContext-ing lib/Analysis. This required pushing LLVMContext's thr... | Owen Anderson |
2009-07-06 | Thread LLVMContext through the constant folding APIs, which touches a lot of ... | Owen Anderson |
2009-07-06 | More LLVMContext-ification. | Owen Anderson |
2009-07-03 | Add newline at end of file. | Duncan Sands |
2009-07-01 | improve the APIs for creating struct and function types with no arguments/ele... | Chris Lattner |
2009-06-26 | Remove debug info anchors - llvm.dbg.compile_units, llvm.dbg.subprograms | Devang Patel |
2009-06-17 | >> What if my global variable was into a different address space than stack? | Sanjiv Gupta |
2009-06-15 | Merge PartialInliner changes. | Owen Anderson |
2009-06-14 | Fix old-style type names in comments. | Dan Gohman |
2009-06-14 | Fix CMake build. Patch from Ingmar Vanhassel. | Torok Edwin |
2009-06-14 | Add an early implementation of a partial inlining pass. The idea behind this | Owen Anderson |
2009-06-13 | Unlike the other instructions, GEP really does need to look at the type of a | Nick Lewycky |
2009-06-12 | Give Instruction::isSameOperationAs a corresponding comment to note | Dan Gohman |
2009-06-12 | Keep callers of a weak function calling it, instead of the non-weak equivalent. | Nick Lewycky |
2009-06-12 | Don't forget to match the calling convention when producing a thunk. | Nick Lewycky |
2009-06-12 | Given two identical weak functions, produce one internal function and two weak | Nick Lewycky |
2009-06-12 | Add an "are types equivalent" operation that ignores the types that a pointer | Nick Lewycky |
2009-06-10 | Implement and use new method Function::hasAddressTaken(). | Jay Foad |
2009-06-09 | Remove an unused function SafeToDestroyConstant(). Rename an almost | Jay Foad |
2009-06-06 | Use cast<> instead of dyn_cast<> for things that are known to be | Jay Foad |
2009-06-02 | Avoid infinite looping in AllGlobalLoadUsesSimpleEnoughForHeapSRA(). This can... | Evan Cheng |
2009-05-23 | available_externall linkage is not local, this was confusing the codegenerator, | Torok Edwin |
2009-05-09 | Rename PaddedSize to AllocSize, in the hope that this | Duncan Sands |
2009-05-06 | Fix PR3754: don't mark functions that wrap MallocInst with | Duncan Sands |
2009-05-03 | Revert r70630. Go back to appending ".b" to internal globals when shrinking | Nick Lewycky |
2009-05-02 | The second argument to RecursivelyDeleteTriviallyDeadInstructions has | Dan Gohman |
2009-05-02 | Don't append ".b" to the names of globals that are being shrunk to booleans. | Nick Lewycky |
2009-04-17 | Use a safer iterator interface and get rid of std C++ library misuse. | David Greene |
2009-04-13 | eliminate unneeded parens. | Chris Lattner |
2009-03-23 | Use a SmallPtrSet instead of std::set. | Dale Johannesen |
2009-03-19 | Clear the cached cost when removing a function in | Dale Johannesen |
2009-03-18 | aha, DAE does have to think about PHI nodes. Many thanks to "Dr Evil" (aka D... | Chris Lattner |
2009-03-18 | add an assertion to make it clear that PHI nodes are not allowed. | Chris Lattner |
2009-03-18 | Fix PR3807 by inserting 'insertelement' instructions in the normal dest of | Chris Lattner |
2009-03-13 | Fix -strip-debug-declare to work when there are | Dale Johannesen |
2009-03-13 | Revert r66920. It was causing failures in the self-hosting buildbot (in release | Bill Wendling |
2009-03-13 | Second installment of "BasicBlock operands to the back" | Gabor Greif |
2009-03-09 | Ignore debug info while evaluating function. | Devang Patel |
2009-03-09 | Remove llvm.dbg.global_variables also. | Devang Patel |
2009-03-09 | Add helper pass to remove llvm.dbg.declare intrinsics. | Devang Patel |
2009-03-09 | This debug info special case should no longer | Duncan Sands |
2009-03-08 | Keep calling-convention and tail-call bit when creating new invoke or call. | Nick Lewycky |
2009-03-08 | Fix comments, pointed out by Duncan Sands. | Nick Lewycky |