Teach instCombine to remove malloc+free if malloc's only uses are comparisons
[oota-llvm.git] / lib / Transforms / InstCombine / InstCombineCalls.cpp
2010-05-27 Duncan SandsTeach instCombine to remove malloc+free if malloc's...
2010-04-28 Chris Lattnerfurther clarify alignment of globals, fix instcombine
2010-04-20 Gabor Greifuse abstract accessors to CallInst
2010-04-16 Eric ChristopherRevert 101465, it broke internal OpenGL testing.
2010-04-16 Gabor Greifreapply r101434
2010-04-16 Gabor Greifback out r101423 and r101397, they break llvm-gcc self...
2010-04-15 Gabor Greifreapply r101364, which has been backed out in r101368
2010-04-15 Gabor Greifback out r101364, as it trips the linux nightlybot...
2010-04-15 Gabor Greifrotate CallInst operands, i.e. move callee to the back
2010-04-04 Mon P WangReapply address space patch after fixing an issue in...
2010-04-02 Mon P WangRevert r100191 since it breaks objc in clang
2010-04-02 Mon P WangReapply address space patch after fixing an issue in...
2010-03-30 Bob WilsonRevert Mon Ping's change 99928, since it broke all...
2010-03-30 Mon P WangAdded support for address spaces and added a isVolatile...
2010-03-23 Evan ChengFix an incorrect logic causing instcombine to miss...
2010-03-20 Gabor GreifAdd a setCalledFunction member to InvokeInst (like...
2010-03-12 Benjamin KramerFactor checked library call optimization into a common...
2010-03-11 Benjamin Kramerstpcpy is so similar to strcpy, it doesn't deserve...
2010-03-11 Eric ChristopherLower stpcpy_chk when possible.
2010-03-11 Eric ChristopherAdd strncpy libcall creator. Use it when it should...
2010-03-08 Evan ChengRe-commit 97860 with fix. getMallocAllocatedType may...
2010-03-06 Eric ChristopherLet the fallthrough handle whether or not we've changed...
2010-03-06 Eric ChristopherMigrate _chk call lowering from SimplifyLibCalls to...
2010-03-06 Eric ChristopherTemporarily revert:
2010-03-06 Evan ChengTransform @llvm.objectsize to integer if the argument...
2010-03-05 Evan ChengInstcombine should turn llvm.objectsize of a alloca...
2010-03-05 Evan ChengAdd missing break for Intrinsic::objectsize case. It...
2010-02-22 Evan ChengInstcombine constant folding can normalize gep with...
2010-02-16 Duncan SandsThere are two ways of checking for a given type, for...
2010-02-15 Duncan SandsUniformize the names of type predicates: rather than...
2010-02-13 Eric ChristopherFix a problem where we had bitcasted operands that...
2010-02-11 Eric ChristopherMake sure that ConstantExpr offsets also aren't off...
2010-02-11 Eric ChristopherAdd ConstantExpr handling to Intrinsic::objectsize...
2010-02-09 Eric ChristopherMove Intrinsic::objectsize lowering back to InstCombine...
2010-02-05 Eric ChristopherRemove this code for now. I have a better idea and...
2010-02-04 Eric ChristopherTemporarily revert this since it appears to have caused...
2010-02-04 Eric ChristopherRework constant expr and array handling for objectsize...
2010-02-03 Eric ChristopherIf we're dealing with a zero-length array, don't lower...
2010-02-03 Eric ChristopherRecommit this, looks like it wasn't the cause.
2010-02-02 Eric ChristopherHopefully temporarily revert this.
2010-02-02 Eric ChristopherReformat my last patch slightly.
2010-02-02 Eric ChristopherRe-add strcmp and known size object size checking optim...
2010-02-01 Chris Lattnerfix rdar://7590304, a miscompilation of objc apps on...
2010-02-01 Chris Lattnerfix rdar://7590304, an infinite loop in instcombine...
2010-01-29 Eric ChristopherRevert my last couple of patches. They appear to have...
2010-01-29 Eric ChristopherAdd constant support to object size handling and remove...
2010-01-08 Eric ChristopherRemove unnecessary dyn_cast and add a comment. Part...
2010-01-06 Eric ChristopherMove the object size intrinsic optimization to inst...
2010-01-05 Benjamin KramerMove remaining stuff to the isInteger predicate.
2010-01-05 Chris Lattnersplit call handling out to InstCombineCalls.cpp