| Commit message (Expand) | Author | Age | Files | Lines |
| * | Teach instCombine to remove malloc+free if malloc's only uses are comparisons | Duncan Sands | 2010-05-27 | 1 | -0/+2 |
| * | further clarify alignment of globals, fix instcombine | Chris Lattner | 2010-04-28 | 1 | -17/+20 |
| * | use abstract accessors to CallInst | Gabor Greif | 2010-04-20 | 1 | -2/+2 |
| * | Revert 101465, it broke internal OpenGL testing. | Eric Christopher | 2010-04-16 | 1 | -78/+81 |
| * | reapply r101434 | Gabor Greif | 2010-04-16 | 1 | -81/+78 |
| * | back out r101423 and r101397, they break llvm-gcc self-host on darwin10 | Gabor Greif | 2010-04-16 | 1 | -78/+81 |
| * | reapply r101364, which has been backed out in r101368 | Gabor Greif | 2010-04-15 | 1 | -81/+78 |
| * | back out r101364, as it trips the linux nightlybot on some clang C++ tests | Gabor Greif | 2010-04-15 | 1 | -78/+81 |
| * | rotate CallInst operands, i.e. move callee to the back | Gabor Greif | 2010-04-15 | 1 | -81/+78 |
| * | Reapply address space patch after fixing an issue in MemCopyOptimizer. | Mon P Wang | 2010-04-04 | 1 | -11/+21 |
| * | Revert r100191 since it breaks objc in clang | Mon P Wang | 2010-04-02 | 1 | -21/+11 |
| * | Reapply address space patch after fixing an issue in MemCopyOptimizer. | Mon P Wang | 2010-04-02 | 1 | -11/+21 |
| * | Revert Mon Ping's change 99928, since it broke all the llvm-gcc buildbots. | Bob Wilson | 2010-03-30 | 1 | -21/+11 |
| * | Added support for address spaces and added a isVolatile field to memcpy, memm... | Mon P Wang | 2010-03-30 | 1 | -11/+21 |
| * | Fix an incorrect logic causing instcombine to miss some _chk -> non-chk trans... | Evan Cheng | 2010-03-23 | 1 | -1/+1 |
| * | Add a setCalledFunction member to InvokeInst (like in CallInst) | Gabor Greif | 2010-03-20 | 1 | -1/+1 |
| * | Factor checked library call optimization into a common helper class and use it | Benjamin Kramer | 2010-03-12 | 1 | -104/+28 |
| * | stpcpy is so similar to strcpy, it doesn't deserve a complete copy of the __s... | Benjamin Kramer | 2010-03-11 | 1 | -22/+5 |
| * | Lower stpcpy_chk when possible. | Eric Christopher | 2010-03-11 | 1 | -0/+13 |
| * | Add strncpy libcall creator. Use it when it should be used. | Eric Christopher | 2010-03-11 | 1 | -1/+2 |
| * | Re-commit 97860 with fix. getMallocAllocatedType may return null. | Evan Cheng | 2010-03-08 | 1 | -0/+10 |
| * | Let the fallthrough handle whether or not we've changed anything | Eric Christopher | 2010-03-06 | 1 | -1/+3 |
| * | Migrate _chk call lowering from SimplifyLibCalls to InstCombine. Stub | Eric Christopher | 2010-03-06 | 1 | -2/+127 |
| * | Temporarily revert: | Eric Christopher | 2010-03-06 | 1 | -10/+0 |
| * | Transform @llvm.objectsize to integer if the argument is a result of malloc o... | Evan Cheng | 2010-03-06 | 1 | -0/+10 |
| * | Instcombine should turn llvm.objectsize of a alloca with static size to an in... | Evan Cheng | 2010-03-05 | 1 | -9/+22 |
| * | Add missing break for Intrinsic::objectsize case. It was falling through to t... | Evan Cheng | 2010-03-05 | 1 | -0/+1 |
| * | Instcombine constant folding can normalize gep with negative index to index w... | Evan Cheng | 2010-02-22 | 1 | -4/+9 |
| * | There are two ways of checking for a given type, for example isa<PointerType>(T) | Duncan Sands | 2010-02-16 | 1 | -5/+5 |
| * | Uniformize the names of type predicates: rather than having isFloatTy and | Duncan Sands | 2010-02-15 | 1 | -1/+1 |
| * | Fix a problem where we had bitcasted operands that gave us | Eric Christopher | 2010-02-13 | 1 | -5/+9 |
| * | Make sure that ConstantExpr offsets also aren't off of extern | Eric Christopher | 2010-02-11 | 1 | -2/+8 |
| * | Add ConstantExpr handling to Intrinsic::objectsize lowering. | Eric Christopher | 2010-02-11 | 1 | -1/+26 |
| * | Move Intrinsic::objectsize lowering back to InstCombineCalls and | Eric Christopher | 2010-02-09 | 1 | -1/+19 |
| * | Remove this code for now. I have a better idea and will rewrite with | Eric Christopher | 2010-02-05 | 1 | -41/+0 |
| * | Temporarily revert this since it appears to have caused a build | Eric Christopher | 2010-02-04 | 1 | -49/+23 |
| * | Rework constant expr and array handling for objectsize instcombining. | Eric Christopher | 2010-02-04 | 1 | -23/+49 |
| * | If we're dealing with a zero-length array, don't lower to any | Eric Christopher | 2010-02-03 | 1 | -4/+9 |
| * | Recommit this, looks like it wasn't the cause. | Eric Christopher | 2010-02-03 | 1 | -68/+93 |
| * | Hopefully temporarily revert this. | Eric Christopher | 2010-02-02 | 1 | -93/+68 |
| * | Reformat my last patch slightly. | Eric Christopher | 2010-02-02 | 1 | -4/+4 |
| * | Re-add strcmp and known size object size checking optimization. | Eric Christopher | 2010-02-02 | 1 | -10/+34 |
| * | fix rdar://7590304, a miscompilation of objc apps on arm. The caller | Chris Lattner | 2010-02-01 | 1 | -3/+7 |
| * | fix rdar://7590304, an infinite loop in instcombine. In the invoke | Chris Lattner | 2010-02-01 | 1 | -1/+6 |
| * | Revert my last couple of patches. They appear to have broken bison. | Eric Christopher | 2010-01-29 | 1 | -36/+10 |
| * | Add constant support to object size handling and remove default | Eric Christopher | 2010-01-29 | 1 | -10/+36 |
| * | Remove unnecessary dyn_cast and add a comment. Part of a WIP. | Eric Christopher | 2010-01-08 | 1 | -4/+4 |
| * | Move the object size intrinsic optimization to inst-combine and make | Eric Christopher | 2010-01-06 | 1 | -0/+12 |
| * | Move remaining stuff to the isInteger predicate. | Benjamin Kramer | 2010-01-05 | 1 | -1/+1 |
| * | split call handling out to InstCombineCalls.cpp | Chris Lattner | 2010-01-05 | 1 | -0/+1130 |