index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test
/
Transforms
/
InstCombine
/
objsize.ll
Age
Commit message (
Expand
)
Author
2011-06-17
make the asmparser reject function and type redefinitions. 'Merging' hasn't ...
Chris Lattner
2011-01-07
Revert 122959, it needs more thought. Add it back to README.txt with addition...
Benjamin Kramer
2011-01-06
InstCombine: Turn _chk functions into the "unsafe" variant if length and max ...
Benjamin Kramer
2011-01-06
InstCombine: If we call llvm.objectsize on a malloc call we can replace it wi...
Benjamin Kramer
2011-01-06
InstCombine: Teach llvm.objectsize folding to look through GEPs.
Benjamin Kramer
2010-04-17
Fix declarations in a few more tests.
Nick Lewycky
2010-04-12
Verify function prototypes before trying to optimize functions. We also
Eric Christopher
2010-04-04
Reapply address space patch after fixing an issue in MemCopyOptimizer.
Mon P Wang
2010-04-02
Revert r100191 since it breaks objc in clang
Mon P Wang
2010-04-02
Reapply address space patch after fixing an issue in MemCopyOptimizer.
Mon P Wang
2010-03-30
Revert Mon Ping's change 99928, since it broke all the llvm-gcc buildbots.
Bob Wilson
2010-03-30
Added support for address spaces and added a isVolatile field to memcpy, memm...
Mon P Wang
2010-03-23
Fix an incorrect logic causing instcombine to miss some _chk -> non-chk trans...
Evan Cheng
2010-03-08
Re-commit 97860 with fix. getMallocAllocatedType may return null.
Evan Cheng
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-01
LLVM instruction syntax doesn't have trailing semicolons.
Dan Gohman
2010-02-22
Instcombine constant folding can normalize gep with negative index to index w...
Evan Cheng
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
Add ConstantExpr handling to Intrinsic::objectsize lowering.
Eric Christopher
2010-02-09
Move Intrinsic::objectsize lowering back to InstCombineCalls and
Eric Christopher
2010-02-09
Pull these back out, they're a little too aggressive and time
Eric Christopher
2010-02-09
Add a new pass to do llvm.objsize lowering using SCEV.
Eric Christopher
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
Re-add strcmp and known size object size checking optimization.
Eric Christopher
2010-01-29
Revert my last couple of patches. They appear to have broken bison.
Eric Christopher
2010-01-29
Add constant support to object size handling and remove default
Eric Christopher