| Age | Commit message (Expand) | Author |
| 2010-03-23 | Fix an incorrect logic causing instcombine to miss some _chk -> non-chk trans... | Evan Cheng |
| 2010-03-20 | Add a setCalledFunction member to InvokeInst (like in CallInst) | Gabor Greif |
| 2010-03-12 | Factor checked library call optimization into a common helper class and use it | Benjamin Kramer |
| 2010-03-11 | stpcpy is so similar to strcpy, it doesn't deserve a complete copy of the __s... | Benjamin Kramer |
| 2010-03-11 | Lower stpcpy_chk when possible. | Eric Christopher |
| 2010-03-11 | Add strncpy libcall creator. Use it when it should be used. | Eric Christopher |
| 2010-03-08 | Re-commit 97860 with fix. getMallocAllocatedType may return null. | Evan Cheng |
| 2010-03-06 | Let the fallthrough handle whether or not we've changed anything | Eric Christopher |
| 2010-03-06 | Migrate _chk call lowering from SimplifyLibCalls to InstCombine. Stub | Eric Christopher |
| 2010-03-06 | Temporarily revert: | Eric Christopher |
| 2010-03-06 | Transform @llvm.objectsize to integer if the argument is a result of malloc o... | Evan Cheng |
| 2010-03-05 | Instcombine should turn llvm.objectsize of a alloca with static size to an in... | Evan Cheng |
| 2010-03-05 | fix PR6512, a case where instcombine would incorrectly merge loads | Chris Lattner |
| 2010-03-05 | Fix PR6503. This turned into a much more interesting and nasty bug. Various | Chris Lattner |
| 2010-03-05 | simplify some functions and make them work with vector | Chris Lattner |
| 2010-03-05 | Add missing break for Intrinsic::objectsize case. It was falling through to t... | Evan Cheng |
| 2010-03-03 | This test case: | Bill Wendling |
| 2010-03-02 | Floating-point add, sub, and mul are now spelled fadd, fsub, and fmul, | Dan Gohman |
| 2010-02-24 | Fix indentation. | Dan Gohman |
| 2010-02-23 | Don't do (X != Y) ? X : Y -> X for floating-point values; it doesn't | Dan Gohman |
| 2010-02-22 | Instcombine constant folding can normalize gep with negative index to index w... | Evan Cheng |
| 2010-02-16 | There are two ways of checking for a given type, for example isa<PointerType>(T) | Duncan Sands |
| 2010-02-15 | Uniformize the names of type predicates: rather than having isFloatTy and | Duncan Sands |
| 2010-02-13 | Fix a problem where we had bitcasted operands that gave us | Eric Christopher |
| 2010-02-11 | Make sure that ConstantExpr offsets also aren't off of extern | Eric Christopher |
| 2010-02-11 | Rename ValueRequiresCast to ShouldOptimizeCast, to better reflect | Chris Lattner |
| 2010-02-11 | Add ConstantExpr handling to Intrinsic::objectsize lowering. | Eric Christopher |
| 2010-02-10 | Fix "the the" and similar typos. | Dan Gohman |
| 2010-02-09 | Move Intrinsic::objectsize lowering back to InstCombineCalls and | Eric Christopher |
| 2010-02-09 | simplify this code, duh. | Chris Lattner |
| 2010-02-09 | fix PR6193, only considering sign extensions *from i1* for this | Chris Lattner |
| 2010-02-08 | fix some problems handling large vectors reported in PR6230 | Chris Lattner |
| 2010-02-05 | fix logical-select to invoke filecheck right, and fix hte instcombine | Chris Lattner |
| 2010-02-05 | Remove this code for now. I have a better idea and will rewrite with | Eric Christopher |
| 2010-02-04 | Temporarily revert this since it appears to have caused a build | Eric Christopher |
| 2010-02-04 | Rework constant expr and array handling for objectsize instcombining. | Eric Christopher |
| 2010-02-03 | If we're dealing with a zero-length array, don't lower to any | Eric Christopher |
| 2010-02-03 | Recommit this, looks like it wasn't the cause. | Eric Christopher |
| 2010-02-02 | Hopefully temporarily revert this. | Eric Christopher |
| 2010-02-02 | Reformat my last patch slightly. | Eric Christopher |
| 2010-02-02 | Re-add strcmp and known size object size checking optimization. | Eric Christopher |
| 2010-02-02 | don't turn (A & (C0?-1:0)) | (B & ~(C0?-1:0)) -> C0 ? A : B | Chris Lattner |
| 2010-02-02 | LangRef.html says that inttoptr and ptrtoint always use zero-extension | Dan Gohman |
| 2010-02-01 | cleanups. | Chris Lattner |
| 2010-02-01 | fix rdar://7590304, a miscompilation of objc apps on arm. The caller | Chris Lattner |
| 2010-02-01 | fix rdar://7590304, an infinite loop in instcombine. In the invoke | Chris Lattner |
| 2010-01-31 | Simplify/generalize the xor+add->sign-extend instcombine. | Eli Friedman |
| 2010-01-31 | Add a small transform: transform -(X<<Y) to (-X<<Y) when the shift has a single | Eli Friedman |
| 2010-01-30 | Check alignment of loads when deciding whether it is safe to execute them | Bob Wilson |
| 2010-01-30 | Use more specific types to avoid casts. No functionality change. | Bob Wilson |