aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2008-01-26 06:41:49 +0000
committerDuncan Sands <baldrick@free.fr>2008-01-26 06:41:49 +0000
commit418ab3729cbf094011eeaeb92306c410ae0f8944 (patch)
tree7f7dbbfbc07420afb181db8f9bf65a70e73282af /lib
parentf69d5d73986dce2941fff432a212e04ae855407f (diff)
downloadexternal_llvm-418ab3729cbf094011eeaeb92306c410ae0f8944.zip
external_llvm-418ab3729cbf094011eeaeb92306c410ae0f8944.tar.gz
external_llvm-418ab3729cbf094011eeaeb92306c410ae0f8944.tar.bz2
Create an explicit copy for byval parameters even
when inlining a readonly function. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46393 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Transforms/Utils/InlineFunction.cpp15
1 files changed, 9 insertions, 6 deletions
diff --git a/lib/Transforms/Utils/InlineFunction.cpp b/lib/Transforms/Utils/InlineFunction.cpp
index 5525830..acd2b10 100644
--- a/lib/Transforms/Utils/InlineFunction.cpp
+++ b/lib/Transforms/Utils/InlineFunction.cpp
@@ -240,12 +240,15 @@ bool llvm::InlineFunction(CallSite CS, CallGraph *CG, const TargetData *TD) {
E = CalledFunc->arg_end(); I != E; ++I, ++AI, ++ArgNo) {
Value *ActualArg = *AI;
- // When byval arguments actually inlined, we need to make the copy implied
- // by them explicit. However, we don't do this if the callee is readonly
- // or readnone, because the copy would be unneeded: the callee doesn't
- // modify the struct.
- if (CalledFunc->paramHasAttr(ArgNo+1, ParamAttr::ByVal) &&
- !CalledFunc->onlyReadsMemory()) {
+ // When byval arguments are inlined, we need to make the copy implied
+ // by them explicit. It is tempting to think that this is not needed if
+ // the callee is readonly, because the callee doesn't modify the struct.
+ // However this would be wrong: readonly means that any writes the callee
+ // performs are not visible to the caller. But writes by the callee to
+ // an argument passed byval are by definition not visible to the caller!
+ // Since we allow this kind of readonly function, there needs to be an
+ // explicit copy in order to keep the writes invisible after inlining.
+ if (CalledFunc->paramHasAttr(ArgNo+1, ParamAttr::ByVal)) {
const Type *AggTy = cast<PointerType>(I->getType())->getElementType();
const Type *VoidPtrTy = PointerType::getUnqual(Type::Int8Ty);