diff options
author | Philip Reames <listmail@philipreames.com> | 2015-06-16 00:43:54 +0000 |
---|---|---|
committer | Philip Reames <listmail@philipreames.com> | 2015-06-16 00:43:54 +0000 |
commit | dfc29fba6035a66b4143f185ffc0ecbfeaca33e2 (patch) | |
tree | ed02bdf52653840d99145bfd2993a3299ae23085 /llvm/lib | |
parent | c9b2c64909382dd055136fffcbd7646b28570382 (diff) | |
download | bcm5719-llvm-dfc29fba6035a66b4143f185ffc0ecbfeaca33e2.tar.gz bcm5719-llvm-dfc29fba6035a66b4143f185ffc0ecbfeaca33e2.zip |
[InstCombine] Propagate non-null facts to call parameters
If a parameter to a function is known non-null, use the existing parameter attributes to record that fact at the call site. This has no optimization benefit by itself - that I know of - but is an enabling change for http://reviews.llvm.org/D9129.
Differential Revision: http://reviews.llvm.org/D9132
llvm-svn: 239795
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp index e83b9dd36ae..85270cfca3b 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp @@ -1391,6 +1391,24 @@ static IntrinsicInst *FindInitTrampoline(Value *Callee) { // visitCallSite - Improvements for call and invoke instructions. // Instruction *InstCombiner::visitCallSite(CallSite CS) { + + // Mark any parameters that are known to be non-null with the nonnull + // attribute. This is helpful for inlining calls to functions with null + // checks on their arguments. + unsigned ArgNo = 0; + for (Value *V : CS.args()) { + if (!CS.paramHasAttr(ArgNo+1, Attribute::NonNull) && + isKnownNonNull(V)) { + AttributeSet AS = CS.getAttributes(); + AS = AS.addAttribute(CS.getInstruction()->getContext(), ArgNo+1, + Attribute::NonNull); + CS.setAttributes(AS); + return CS.getInstruction(); + } + ArgNo++; + } + assert(ArgNo == CS.arg_size() && "sanity check"); + if (isAllocLikeFn(CS.getInstruction(), TLI)) return visitAllocSite(*CS.getInstruction()); |