2009-12-28 21:28:46 +00:00
|
|
|
//===---- IRBuilder.cpp - Builder for LLVM Instrs -------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the IRBuilder class, which is used as a convenient way
|
|
|
|
// to create LLVM instructions with a consistent and simplified interface.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Function.h"
|
|
|
|
#include "llvm/IR/GlobalVariable.h"
|
|
|
|
#include "llvm/IR/IRBuilder.h"
|
|
|
|
#include "llvm/IR/Intrinsics.h"
|
|
|
|
#include "llvm/IR/LLVMContext.h"
|
Extend the statepoint intrinsic to allow statepoints to be marked as transitions from GC-aware code to code that is not GC-aware.
This changes the shape of the statepoint intrinsic from:
@llvm.experimental.gc.statepoint(anyptr target, i32 # call args, i32 unused, ...call args, i32 # deopt args, ...deopt args, ...gc args)
to:
@llvm.experimental.gc.statepoint(anyptr target, i32 # call args, i32 flags, ...call args, i32 # transition args, ...transition args, i32 # deopt args, ...deopt args, ...gc args)
This extension offers the backend the opportunity to insert (somewhat) arbitrary code to manage the transition from GC-aware code to code that is not GC-aware and back.
In order to support the injection of transition code, this extension wraps the STATEPOINT ISD node generated by the usual lowering lowering with two additional nodes: GC_TRANSITION_START and GC_TRANSITION_END. The transition arguments that were passed passed to the intrinsic (if any) are lowered and provided as operands to these nodes and may be used by the backend during code generation.
Eventually, the lowering of the GC_TRANSITION_{START,END} nodes should be informed by the GC strategy in use for the function containing the intrinsic call; for now, these nodes are instead replaced with no-ops.
Differential Revision: http://reviews.llvm.org/D9501
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236888 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 18:07:42 +00:00
|
|
|
#include "llvm/IR/Statepoint.h"
|
2009-12-28 21:28:46 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
/// CreateGlobalString - Make a new global variable with an initializer that
|
2010-02-10 20:04:19 +00:00
|
|
|
/// has array of i8 type filled in with the nul terminated string value
|
2009-12-28 21:28:46 +00:00
|
|
|
/// specified. If Name is specified, it is the name of the global variable
|
|
|
|
/// created.
|
2015-04-03 21:33:42 +00:00
|
|
|
GlobalVariable *IRBuilderBase::CreateGlobalString(StringRef Str,
|
|
|
|
const Twine &Name) {
|
2012-02-05 02:29:43 +00:00
|
|
|
Constant *StrConstant = ConstantDataArray::getString(Context, Str);
|
2009-12-28 21:28:46 +00:00
|
|
|
Module &M = *BB->getParent()->getParent();
|
|
|
|
GlobalVariable *GV = new GlobalVariable(M, StrConstant->getType(),
|
2011-12-22 14:22:14 +00:00
|
|
|
true, GlobalValue::PrivateLinkage,
|
2012-06-23 11:37:03 +00:00
|
|
|
StrConstant);
|
2009-12-28 21:28:46 +00:00
|
|
|
GV->setName(Name);
|
2011-04-07 00:14:29 +00:00
|
|
|
GV->setUnnamedAddr(true);
|
2009-12-28 21:28:46 +00:00
|
|
|
return GV;
|
|
|
|
}
|
2009-12-28 21:45:40 +00:00
|
|
|
|
2011-07-12 04:14:22 +00:00
|
|
|
Type *IRBuilderBase::getCurrentFunctionReturnType() const {
|
2009-12-28 21:50:56 +00:00
|
|
|
assert(BB && BB->getParent() && "No current function!");
|
|
|
|
return BB->getParent()->getReturnType();
|
|
|
|
}
|
2010-12-26 22:49:25 +00:00
|
|
|
|
|
|
|
Value *IRBuilderBase::getCastedInt8PtrValue(Value *Ptr) {
|
2011-07-18 04:54:35 +00:00
|
|
|
PointerType *PT = cast<PointerType>(Ptr->getType());
|
2010-12-26 22:49:25 +00:00
|
|
|
if (PT->getElementType()->isIntegerTy(8))
|
|
|
|
return Ptr;
|
|
|
|
|
|
|
|
// Otherwise, we need to insert a bitcast.
|
|
|
|
PT = getInt8PtrTy(PT->getAddressSpace());
|
|
|
|
BitCastInst *BCI = new BitCastInst(Ptr, PT, "");
|
|
|
|
BB->getInstList().insert(InsertPt, BCI);
|
|
|
|
SetInstDebugLocation(BCI);
|
|
|
|
return BCI;
|
|
|
|
}
|
|
|
|
|
2011-07-15 08:37:34 +00:00
|
|
|
static CallInst *createCallHelper(Value *Callee, ArrayRef<Value *> Ops,
|
2014-12-30 05:55:58 +00:00
|
|
|
IRBuilderBase *Builder,
|
|
|
|
const Twine& Name="") {
|
|
|
|
CallInst *CI = CallInst::Create(Callee, Ops, Name);
|
2010-12-26 22:49:25 +00:00
|
|
|
Builder->GetInsertBlock()->getInstList().insert(Builder->GetInsertPoint(),CI);
|
|
|
|
Builder->SetInstDebugLocation(CI);
|
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
2015-05-06 23:53:09 +00:00
|
|
|
static InvokeInst *createInvokeHelper(Value *Invokee, BasicBlock *NormalDest,
|
|
|
|
BasicBlock *UnwindDest,
|
|
|
|
ArrayRef<Value *> Ops,
|
|
|
|
IRBuilderBase *Builder,
|
|
|
|
const Twine &Name = "") {
|
|
|
|
InvokeInst *II =
|
|
|
|
InvokeInst::Create(Invokee, NormalDest, UnwindDest, Ops, Name);
|
|
|
|
Builder->GetInsertBlock()->getInstList().insert(Builder->GetInsertPoint(),
|
|
|
|
II);
|
|
|
|
Builder->SetInstDebugLocation(II);
|
|
|
|
return II;
|
|
|
|
}
|
|
|
|
|
2010-12-26 22:49:25 +00:00
|
|
|
CallInst *IRBuilderBase::
|
|
|
|
CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align,
|
Add scoped-noalias metadata
This commit adds scoped noalias metadata. The primary motivations for this
feature are:
1. To preserve noalias function attribute information when inlining
2. To provide the ability to model block-scope C99 restrict pointers
Neither of these two abilities are added here, only the necessary
infrastructure. In fact, there should be no change to existing functionality,
only the addition of new features. The logic that converts noalias function
parameters into this metadata during inlining will come in a follow-up commit.
What is added here is the ability to generally specify noalias memory-access
sets. Regarding the metadata, alias-analysis scopes are defined similar to TBAA
nodes:
!scope0 = metadata !{ metadata !"scope of foo()" }
!scope1 = metadata !{ metadata !"scope 1", metadata !scope0 }
!scope2 = metadata !{ metadata !"scope 2", metadata !scope0 }
!scope3 = metadata !{ metadata !"scope 2.1", metadata !scope2 }
!scope4 = metadata !{ metadata !"scope 2.2", metadata !scope2 }
Loads and stores can be tagged with an alias-analysis scope, and also, with a
noalias tag for a specific scope:
... = load %ptr1, !alias.scope !{ !scope1 }
... = load %ptr2, !alias.scope !{ !scope1, !scope2 }, !noalias !{ !scope1 }
When evaluating an aliasing query, if one of the instructions is associated
with an alias.scope id that is identical to the noalias scope associated with
the other instruction, or is a descendant (in the scope hierarchy) of the
noalias scope associated with the other instruction, then the two memory
accesses are assumed not to alias.
Note that is the first element of the scope metadata is a string, then it can
be combined accross functions and translation units. The string can be replaced
by a self-reference to create globally unqiue scope identifiers.
[Note: This overview is slightly stylized, since the metadata nodes really need
to just be numbers (!0 instead of !scope0), and the scope lists are also global
unnamed metadata.]
Existing noalias metadata in a callee is "cloned" for use by the inlined code.
This is necessary because the aliasing scopes are unique to each call site
(because of possible control dependencies on the aliasing properties). For
example, consider a function: foo(noalias a, noalias b) { *a = *b; } that gets
inlined into bar() { ... if (...) foo(a1, b1); ... if (...) foo(a2, b2); } --
now just because we know that a1 does not alias with b1 at the first call site,
and a2 does not alias with b2 at the second call site, we cannot let inlining
these functons have the metadata imply that a1 does not alias with b2.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213864 91177308-0d34-0410-b5e6-96231b3b80d8
2014-07-24 14:25:39 +00:00
|
|
|
bool isVolatile, MDNode *TBAATag, MDNode *ScopeTag,
|
|
|
|
MDNode *NoAliasTag) {
|
2010-12-26 22:49:25 +00:00
|
|
|
Ptr = getCastedInt8PtrValue(Ptr);
|
|
|
|
Value *Ops[] = { Ptr, Val, Size, getInt32(Align), getInt1(isVolatile) };
|
2011-07-12 14:06:48 +00:00
|
|
|
Type *Tys[] = { Ptr->getType(), Size->getType() };
|
2010-12-26 22:49:25 +00:00
|
|
|
Module *M = BB->getParent()->getParent();
|
2011-07-14 17:45:39 +00:00
|
|
|
Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memset, Tys);
|
2010-12-26 22:49:25 +00:00
|
|
|
|
2011-07-15 08:37:34 +00:00
|
|
|
CallInst *CI = createCallHelper(TheFn, Ops, this);
|
2010-12-26 22:49:25 +00:00
|
|
|
|
|
|
|
// Set the TBAA info if present.
|
|
|
|
if (TBAATag)
|
|
|
|
CI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
|
Add scoped-noalias metadata
This commit adds scoped noalias metadata. The primary motivations for this
feature are:
1. To preserve noalias function attribute information when inlining
2. To provide the ability to model block-scope C99 restrict pointers
Neither of these two abilities are added here, only the necessary
infrastructure. In fact, there should be no change to existing functionality,
only the addition of new features. The logic that converts noalias function
parameters into this metadata during inlining will come in a follow-up commit.
What is added here is the ability to generally specify noalias memory-access
sets. Regarding the metadata, alias-analysis scopes are defined similar to TBAA
nodes:
!scope0 = metadata !{ metadata !"scope of foo()" }
!scope1 = metadata !{ metadata !"scope 1", metadata !scope0 }
!scope2 = metadata !{ metadata !"scope 2", metadata !scope0 }
!scope3 = metadata !{ metadata !"scope 2.1", metadata !scope2 }
!scope4 = metadata !{ metadata !"scope 2.2", metadata !scope2 }
Loads and stores can be tagged with an alias-analysis scope, and also, with a
noalias tag for a specific scope:
... = load %ptr1, !alias.scope !{ !scope1 }
... = load %ptr2, !alias.scope !{ !scope1, !scope2 }, !noalias !{ !scope1 }
When evaluating an aliasing query, if one of the instructions is associated
with an alias.scope id that is identical to the noalias scope associated with
the other instruction, or is a descendant (in the scope hierarchy) of the
noalias scope associated with the other instruction, then the two memory
accesses are assumed not to alias.
Note that is the first element of the scope metadata is a string, then it can
be combined accross functions and translation units. The string can be replaced
by a self-reference to create globally unqiue scope identifiers.
[Note: This overview is slightly stylized, since the metadata nodes really need
to just be numbers (!0 instead of !scope0), and the scope lists are also global
unnamed metadata.]
Existing noalias metadata in a callee is "cloned" for use by the inlined code.
This is necessary because the aliasing scopes are unique to each call site
(because of possible control dependencies on the aliasing properties). For
example, consider a function: foo(noalias a, noalias b) { *a = *b; } that gets
inlined into bar() { ... if (...) foo(a1, b1); ... if (...) foo(a2, b2); } --
now just because we know that a1 does not alias with b1 at the first call site,
and a2 does not alias with b2 at the second call site, we cannot let inlining
these functons have the metadata imply that a1 does not alias with b2.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213864 91177308-0d34-0410-b5e6-96231b3b80d8
2014-07-24 14:25:39 +00:00
|
|
|
|
|
|
|
if (ScopeTag)
|
|
|
|
CI->setMetadata(LLVMContext::MD_alias_scope, ScopeTag);
|
|
|
|
|
|
|
|
if (NoAliasTag)
|
|
|
|
CI->setMetadata(LLVMContext::MD_noalias, NoAliasTag);
|
|
|
|
|
2010-12-26 22:49:25 +00:00
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
|
|
|
CallInst *IRBuilderBase::
|
|
|
|
CreateMemCpy(Value *Dst, Value *Src, Value *Size, unsigned Align,
|
Add scoped-noalias metadata
This commit adds scoped noalias metadata. The primary motivations for this
feature are:
1. To preserve noalias function attribute information when inlining
2. To provide the ability to model block-scope C99 restrict pointers
Neither of these two abilities are added here, only the necessary
infrastructure. In fact, there should be no change to existing functionality,
only the addition of new features. The logic that converts noalias function
parameters into this metadata during inlining will come in a follow-up commit.
What is added here is the ability to generally specify noalias memory-access
sets. Regarding the metadata, alias-analysis scopes are defined similar to TBAA
nodes:
!scope0 = metadata !{ metadata !"scope of foo()" }
!scope1 = metadata !{ metadata !"scope 1", metadata !scope0 }
!scope2 = metadata !{ metadata !"scope 2", metadata !scope0 }
!scope3 = metadata !{ metadata !"scope 2.1", metadata !scope2 }
!scope4 = metadata !{ metadata !"scope 2.2", metadata !scope2 }
Loads and stores can be tagged with an alias-analysis scope, and also, with a
noalias tag for a specific scope:
... = load %ptr1, !alias.scope !{ !scope1 }
... = load %ptr2, !alias.scope !{ !scope1, !scope2 }, !noalias !{ !scope1 }
When evaluating an aliasing query, if one of the instructions is associated
with an alias.scope id that is identical to the noalias scope associated with
the other instruction, or is a descendant (in the scope hierarchy) of the
noalias scope associated with the other instruction, then the two memory
accesses are assumed not to alias.
Note that is the first element of the scope metadata is a string, then it can
be combined accross functions and translation units. The string can be replaced
by a self-reference to create globally unqiue scope identifiers.
[Note: This overview is slightly stylized, since the metadata nodes really need
to just be numbers (!0 instead of !scope0), and the scope lists are also global
unnamed metadata.]
Existing noalias metadata in a callee is "cloned" for use by the inlined code.
This is necessary because the aliasing scopes are unique to each call site
(because of possible control dependencies on the aliasing properties). For
example, consider a function: foo(noalias a, noalias b) { *a = *b; } that gets
inlined into bar() { ... if (...) foo(a1, b1); ... if (...) foo(a2, b2); } --
now just because we know that a1 does not alias with b1 at the first call site,
and a2 does not alias with b2 at the second call site, we cannot let inlining
these functons have the metadata imply that a1 does not alias with b2.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213864 91177308-0d34-0410-b5e6-96231b3b80d8
2014-07-24 14:25:39 +00:00
|
|
|
bool isVolatile, MDNode *TBAATag, MDNode *TBAAStructTag,
|
|
|
|
MDNode *ScopeTag, MDNode *NoAliasTag) {
|
2010-12-26 22:49:25 +00:00
|
|
|
Dst = getCastedInt8PtrValue(Dst);
|
|
|
|
Src = getCastedInt8PtrValue(Src);
|
|
|
|
|
|
|
|
Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) };
|
2011-07-12 14:06:48 +00:00
|
|
|
Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() };
|
2010-12-26 22:49:25 +00:00
|
|
|
Module *M = BB->getParent()->getParent();
|
2011-07-14 17:45:39 +00:00
|
|
|
Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memcpy, Tys);
|
2010-12-26 22:49:25 +00:00
|
|
|
|
2011-07-15 08:37:34 +00:00
|
|
|
CallInst *CI = createCallHelper(TheFn, Ops, this);
|
2010-12-26 22:49:25 +00:00
|
|
|
|
|
|
|
// Set the TBAA info if present.
|
|
|
|
if (TBAATag)
|
|
|
|
CI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
|
2012-09-26 22:17:14 +00:00
|
|
|
|
|
|
|
// Set the TBAA Struct info if present.
|
|
|
|
if (TBAAStructTag)
|
|
|
|
CI->setMetadata(LLVMContext::MD_tbaa_struct, TBAAStructTag);
|
Add scoped-noalias metadata
This commit adds scoped noalias metadata. The primary motivations for this
feature are:
1. To preserve noalias function attribute information when inlining
2. To provide the ability to model block-scope C99 restrict pointers
Neither of these two abilities are added here, only the necessary
infrastructure. In fact, there should be no change to existing functionality,
only the addition of new features. The logic that converts noalias function
parameters into this metadata during inlining will come in a follow-up commit.
What is added here is the ability to generally specify noalias memory-access
sets. Regarding the metadata, alias-analysis scopes are defined similar to TBAA
nodes:
!scope0 = metadata !{ metadata !"scope of foo()" }
!scope1 = metadata !{ metadata !"scope 1", metadata !scope0 }
!scope2 = metadata !{ metadata !"scope 2", metadata !scope0 }
!scope3 = metadata !{ metadata !"scope 2.1", metadata !scope2 }
!scope4 = metadata !{ metadata !"scope 2.2", metadata !scope2 }
Loads and stores can be tagged with an alias-analysis scope, and also, with a
noalias tag for a specific scope:
... = load %ptr1, !alias.scope !{ !scope1 }
... = load %ptr2, !alias.scope !{ !scope1, !scope2 }, !noalias !{ !scope1 }
When evaluating an aliasing query, if one of the instructions is associated
with an alias.scope id that is identical to the noalias scope associated with
the other instruction, or is a descendant (in the scope hierarchy) of the
noalias scope associated with the other instruction, then the two memory
accesses are assumed not to alias.
Note that is the first element of the scope metadata is a string, then it can
be combined accross functions and translation units. The string can be replaced
by a self-reference to create globally unqiue scope identifiers.
[Note: This overview is slightly stylized, since the metadata nodes really need
to just be numbers (!0 instead of !scope0), and the scope lists are also global
unnamed metadata.]
Existing noalias metadata in a callee is "cloned" for use by the inlined code.
This is necessary because the aliasing scopes are unique to each call site
(because of possible control dependencies on the aliasing properties). For
example, consider a function: foo(noalias a, noalias b) { *a = *b; } that gets
inlined into bar() { ... if (...) foo(a1, b1); ... if (...) foo(a2, b2); } --
now just because we know that a1 does not alias with b1 at the first call site,
and a2 does not alias with b2 at the second call site, we cannot let inlining
these functons have the metadata imply that a1 does not alias with b2.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213864 91177308-0d34-0410-b5e6-96231b3b80d8
2014-07-24 14:25:39 +00:00
|
|
|
|
|
|
|
if (ScopeTag)
|
|
|
|
CI->setMetadata(LLVMContext::MD_alias_scope, ScopeTag);
|
|
|
|
|
|
|
|
if (NoAliasTag)
|
|
|
|
CI->setMetadata(LLVMContext::MD_noalias, NoAliasTag);
|
|
|
|
|
2010-12-26 22:49:25 +00:00
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
|
|
|
CallInst *IRBuilderBase::
|
|
|
|
CreateMemMove(Value *Dst, Value *Src, Value *Size, unsigned Align,
|
Add scoped-noalias metadata
This commit adds scoped noalias metadata. The primary motivations for this
feature are:
1. To preserve noalias function attribute information when inlining
2. To provide the ability to model block-scope C99 restrict pointers
Neither of these two abilities are added here, only the necessary
infrastructure. In fact, there should be no change to existing functionality,
only the addition of new features. The logic that converts noalias function
parameters into this metadata during inlining will come in a follow-up commit.
What is added here is the ability to generally specify noalias memory-access
sets. Regarding the metadata, alias-analysis scopes are defined similar to TBAA
nodes:
!scope0 = metadata !{ metadata !"scope of foo()" }
!scope1 = metadata !{ metadata !"scope 1", metadata !scope0 }
!scope2 = metadata !{ metadata !"scope 2", metadata !scope0 }
!scope3 = metadata !{ metadata !"scope 2.1", metadata !scope2 }
!scope4 = metadata !{ metadata !"scope 2.2", metadata !scope2 }
Loads and stores can be tagged with an alias-analysis scope, and also, with a
noalias tag for a specific scope:
... = load %ptr1, !alias.scope !{ !scope1 }
... = load %ptr2, !alias.scope !{ !scope1, !scope2 }, !noalias !{ !scope1 }
When evaluating an aliasing query, if one of the instructions is associated
with an alias.scope id that is identical to the noalias scope associated with
the other instruction, or is a descendant (in the scope hierarchy) of the
noalias scope associated with the other instruction, then the two memory
accesses are assumed not to alias.
Note that is the first element of the scope metadata is a string, then it can
be combined accross functions and translation units. The string can be replaced
by a self-reference to create globally unqiue scope identifiers.
[Note: This overview is slightly stylized, since the metadata nodes really need
to just be numbers (!0 instead of !scope0), and the scope lists are also global
unnamed metadata.]
Existing noalias metadata in a callee is "cloned" for use by the inlined code.
This is necessary because the aliasing scopes are unique to each call site
(because of possible control dependencies on the aliasing properties). For
example, consider a function: foo(noalias a, noalias b) { *a = *b; } that gets
inlined into bar() { ... if (...) foo(a1, b1); ... if (...) foo(a2, b2); } --
now just because we know that a1 does not alias with b1 at the first call site,
and a2 does not alias with b2 at the second call site, we cannot let inlining
these functons have the metadata imply that a1 does not alias with b2.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213864 91177308-0d34-0410-b5e6-96231b3b80d8
2014-07-24 14:25:39 +00:00
|
|
|
bool isVolatile, MDNode *TBAATag, MDNode *ScopeTag,
|
|
|
|
MDNode *NoAliasTag) {
|
2010-12-26 22:49:25 +00:00
|
|
|
Dst = getCastedInt8PtrValue(Dst);
|
|
|
|
Src = getCastedInt8PtrValue(Src);
|
|
|
|
|
|
|
|
Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) };
|
2011-07-12 14:06:48 +00:00
|
|
|
Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() };
|
2010-12-26 22:49:25 +00:00
|
|
|
Module *M = BB->getParent()->getParent();
|
2011-07-14 17:45:39 +00:00
|
|
|
Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memmove, Tys);
|
2010-12-26 22:49:25 +00:00
|
|
|
|
2011-07-15 08:37:34 +00:00
|
|
|
CallInst *CI = createCallHelper(TheFn, Ops, this);
|
2010-12-26 22:49:25 +00:00
|
|
|
|
|
|
|
// Set the TBAA info if present.
|
|
|
|
if (TBAATag)
|
|
|
|
CI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
|
Add scoped-noalias metadata
This commit adds scoped noalias metadata. The primary motivations for this
feature are:
1. To preserve noalias function attribute information when inlining
2. To provide the ability to model block-scope C99 restrict pointers
Neither of these two abilities are added here, only the necessary
infrastructure. In fact, there should be no change to existing functionality,
only the addition of new features. The logic that converts noalias function
parameters into this metadata during inlining will come in a follow-up commit.
What is added here is the ability to generally specify noalias memory-access
sets. Regarding the metadata, alias-analysis scopes are defined similar to TBAA
nodes:
!scope0 = metadata !{ metadata !"scope of foo()" }
!scope1 = metadata !{ metadata !"scope 1", metadata !scope0 }
!scope2 = metadata !{ metadata !"scope 2", metadata !scope0 }
!scope3 = metadata !{ metadata !"scope 2.1", metadata !scope2 }
!scope4 = metadata !{ metadata !"scope 2.2", metadata !scope2 }
Loads and stores can be tagged with an alias-analysis scope, and also, with a
noalias tag for a specific scope:
... = load %ptr1, !alias.scope !{ !scope1 }
... = load %ptr2, !alias.scope !{ !scope1, !scope2 }, !noalias !{ !scope1 }
When evaluating an aliasing query, if one of the instructions is associated
with an alias.scope id that is identical to the noalias scope associated with
the other instruction, or is a descendant (in the scope hierarchy) of the
noalias scope associated with the other instruction, then the two memory
accesses are assumed not to alias.
Note that is the first element of the scope metadata is a string, then it can
be combined accross functions and translation units. The string can be replaced
by a self-reference to create globally unqiue scope identifiers.
[Note: This overview is slightly stylized, since the metadata nodes really need
to just be numbers (!0 instead of !scope0), and the scope lists are also global
unnamed metadata.]
Existing noalias metadata in a callee is "cloned" for use by the inlined code.
This is necessary because the aliasing scopes are unique to each call site
(because of possible control dependencies on the aliasing properties). For
example, consider a function: foo(noalias a, noalias b) { *a = *b; } that gets
inlined into bar() { ... if (...) foo(a1, b1); ... if (...) foo(a2, b2); } --
now just because we know that a1 does not alias with b1 at the first call site,
and a2 does not alias with b2 at the second call site, we cannot let inlining
these functons have the metadata imply that a1 does not alias with b2.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213864 91177308-0d34-0410-b5e6-96231b3b80d8
2014-07-24 14:25:39 +00:00
|
|
|
|
|
|
|
if (ScopeTag)
|
|
|
|
CI->setMetadata(LLVMContext::MD_alias_scope, ScopeTag);
|
|
|
|
|
|
|
|
if (NoAliasTag)
|
|
|
|
CI->setMetadata(LLVMContext::MD_noalias, NoAliasTag);
|
|
|
|
|
2010-12-26 22:49:25 +00:00
|
|
|
return CI;
|
|
|
|
}
|
2011-05-21 23:14:36 +00:00
|
|
|
|
|
|
|
CallInst *IRBuilderBase::CreateLifetimeStart(Value *Ptr, ConstantInt *Size) {
|
|
|
|
assert(isa<PointerType>(Ptr->getType()) &&
|
2012-07-19 00:11:40 +00:00
|
|
|
"lifetime.start only applies to pointers.");
|
2011-05-21 23:14:36 +00:00
|
|
|
Ptr = getCastedInt8PtrValue(Ptr);
|
|
|
|
if (!Size)
|
|
|
|
Size = getInt64(-1);
|
|
|
|
else
|
|
|
|
assert(Size->getType() == getInt64Ty() &&
|
2012-07-19 00:11:40 +00:00
|
|
|
"lifetime.start requires the size to be an i64");
|
2011-05-21 23:14:36 +00:00
|
|
|
Value *Ops[] = { Size, Ptr };
|
|
|
|
Module *M = BB->getParent()->getParent();
|
|
|
|
Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::lifetime_start);
|
2011-07-15 08:37:34 +00:00
|
|
|
return createCallHelper(TheFn, Ops, this);
|
2011-05-21 23:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CallInst *IRBuilderBase::CreateLifetimeEnd(Value *Ptr, ConstantInt *Size) {
|
|
|
|
assert(isa<PointerType>(Ptr->getType()) &&
|
2012-07-19 00:11:40 +00:00
|
|
|
"lifetime.end only applies to pointers.");
|
2011-05-21 23:14:36 +00:00
|
|
|
Ptr = getCastedInt8PtrValue(Ptr);
|
|
|
|
if (!Size)
|
|
|
|
Size = getInt64(-1);
|
|
|
|
else
|
|
|
|
assert(Size->getType() == getInt64Ty() &&
|
2012-07-19 00:11:40 +00:00
|
|
|
"lifetime.end requires the size to be an i64");
|
2011-05-21 23:14:36 +00:00
|
|
|
Value *Ops[] = { Size, Ptr };
|
|
|
|
Module *M = BB->getParent()->getParent();
|
|
|
|
Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::lifetime_end);
|
2011-07-15 08:37:34 +00:00
|
|
|
return createCallHelper(TheFn, Ops, this);
|
2011-05-21 23:14:36 +00:00
|
|
|
}
|
2014-10-15 23:44:22 +00:00
|
|
|
|
|
|
|
CallInst *IRBuilderBase::CreateAssumption(Value *Cond) {
|
|
|
|
assert(Cond->getType() == getInt1Ty() &&
|
|
|
|
"an assumption condition must be of type i1");
|
|
|
|
|
|
|
|
Value *Ops[] = { Cond };
|
|
|
|
Module *M = BB->getParent()->getParent();
|
|
|
|
Value *FnAssume = Intrinsic::getDeclaration(M, Intrinsic::assume);
|
|
|
|
return createCallHelper(FnAssume, Ops, this);
|
|
|
|
}
|
|
|
|
|
2014-12-04 09:40:44 +00:00
|
|
|
/// Create a call to a Masked Load intrinsic.
|
2014-12-30 14:28:14 +00:00
|
|
|
/// Ptr - the base pointer for the load
|
|
|
|
/// Align - alignment of the source location
|
|
|
|
/// Mask - an vector of booleans which indicates what vector lanes should
|
|
|
|
/// be accessed in memory
|
|
|
|
/// PassThru - a pass-through value that is used to fill the masked-off lanes
|
|
|
|
/// of the result
|
|
|
|
/// Name - name of the result variable
|
|
|
|
CallInst *IRBuilderBase::CreateMaskedLoad(Value *Ptr, unsigned Align,
|
|
|
|
Value *Mask, Value *PassThru,
|
|
|
|
const Twine &Name) {
|
|
|
|
assert(Ptr->getType()->isPointerTy() && "Ptr must be of pointer type");
|
|
|
|
// DataTy is the overloaded type
|
|
|
|
Type *DataTy = cast<PointerType>(Ptr->getType())->getElementType();
|
|
|
|
assert(DataTy->isVectorTy() && "Ptr should point to a vector");
|
|
|
|
if (!PassThru)
|
|
|
|
PassThru = UndefValue::get(DataTy);
|
|
|
|
Value *Ops[] = { Ptr, getInt32(Align), Mask, PassThru};
|
|
|
|
return CreateMaskedIntrinsic(Intrinsic::masked_load, Ops, DataTy, Name);
|
2014-12-04 09:40:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a call to a Masked Store intrinsic.
|
2014-12-30 14:28:14 +00:00
|
|
|
/// Val - the data to be stored,
|
|
|
|
/// Ptr - the base pointer for the store
|
|
|
|
/// Align - alignment of the destination location
|
|
|
|
/// Mask - an vector of booleans which indicates what vector lanes should
|
|
|
|
/// be accessed in memory
|
|
|
|
CallInst *IRBuilderBase::CreateMaskedStore(Value *Val, Value *Ptr,
|
|
|
|
unsigned Align, Value *Mask) {
|
|
|
|
Value *Ops[] = { Val, Ptr, getInt32(Align), Mask };
|
|
|
|
// Type of the data to be stored - the only one overloaded type
|
|
|
|
return CreateMaskedIntrinsic(Intrinsic::masked_store, Ops, Val->getType());
|
2014-12-04 09:40:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a call to a Masked intrinsic, with given intrinsic Id,
|
|
|
|
/// an array of operands - Ops, and one overloaded type - DataTy
|
|
|
|
CallInst *IRBuilderBase::CreateMaskedIntrinsic(unsigned Id,
|
|
|
|
ArrayRef<Value *> Ops,
|
2014-12-30 14:28:14 +00:00
|
|
|
Type *DataTy,
|
|
|
|
const Twine &Name) {
|
2014-12-04 09:40:44 +00:00
|
|
|
Module *M = BB->getParent()->getParent();
|
|
|
|
Type *OverloadedTypes[] = { DataTy };
|
|
|
|
Value *TheFn = Intrinsic::getDeclaration(M, (Intrinsic::ID)Id, OverloadedTypes);
|
2014-12-30 14:28:14 +00:00
|
|
|
return createCallHelper(TheFn, Ops, this, Name);
|
2014-12-04 09:40:44 +00:00
|
|
|
}
|
2014-12-30 05:55:58 +00:00
|
|
|
|
2015-05-06 23:53:09 +00:00
|
|
|
static std::vector<Value *> getStatepointArgs(IRBuilderBase &B,
|
|
|
|
Value *ActualCallee,
|
|
|
|
ArrayRef<Value *> CallArgs,
|
|
|
|
ArrayRef<Value *> DeoptArgs,
|
|
|
|
ArrayRef<Value *> GCArgs) {
|
|
|
|
std::vector<Value *> Args;
|
|
|
|
Args.push_back(ActualCallee);
|
|
|
|
Args.push_back(B.getInt32(CallArgs.size()));
|
Extend the statepoint intrinsic to allow statepoints to be marked as transitions from GC-aware code to code that is not GC-aware.
This changes the shape of the statepoint intrinsic from:
@llvm.experimental.gc.statepoint(anyptr target, i32 # call args, i32 unused, ...call args, i32 # deopt args, ...deopt args, ...gc args)
to:
@llvm.experimental.gc.statepoint(anyptr target, i32 # call args, i32 flags, ...call args, i32 # transition args, ...transition args, i32 # deopt args, ...deopt args, ...gc args)
This extension offers the backend the opportunity to insert (somewhat) arbitrary code to manage the transition from GC-aware code to code that is not GC-aware and back.
In order to support the injection of transition code, this extension wraps the STATEPOINT ISD node generated by the usual lowering lowering with two additional nodes: GC_TRANSITION_START and GC_TRANSITION_END. The transition arguments that were passed passed to the intrinsic (if any) are lowered and provided as operands to these nodes and may be used by the backend during code generation.
Eventually, the lowering of the GC_TRANSITION_{START,END} nodes should be informed by the GC strategy in use for the function containing the intrinsic call; for now, these nodes are instead replaced with no-ops.
Differential Revision: http://reviews.llvm.org/D9501
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236888 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 18:07:42 +00:00
|
|
|
Args.push_back(B.getInt32((unsigned)StatepointFlags::None));
|
2015-05-06 23:53:09 +00:00
|
|
|
Args.insert(Args.end(), CallArgs.begin(), CallArgs.end());
|
Extend the statepoint intrinsic to allow statepoints to be marked as transitions from GC-aware code to code that is not GC-aware.
This changes the shape of the statepoint intrinsic from:
@llvm.experimental.gc.statepoint(anyptr target, i32 # call args, i32 unused, ...call args, i32 # deopt args, ...deopt args, ...gc args)
to:
@llvm.experimental.gc.statepoint(anyptr target, i32 # call args, i32 flags, ...call args, i32 # transition args, ...transition args, i32 # deopt args, ...deopt args, ...gc args)
This extension offers the backend the opportunity to insert (somewhat) arbitrary code to manage the transition from GC-aware code to code that is not GC-aware and back.
In order to support the injection of transition code, this extension wraps the STATEPOINT ISD node generated by the usual lowering lowering with two additional nodes: GC_TRANSITION_START and GC_TRANSITION_END. The transition arguments that were passed passed to the intrinsic (if any) are lowered and provided as operands to these nodes and may be used by the backend during code generation.
Eventually, the lowering of the GC_TRANSITION_{START,END} nodes should be informed by the GC strategy in use for the function containing the intrinsic call; for now, these nodes are instead replaced with no-ops.
Differential Revision: http://reviews.llvm.org/D9501
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236888 91177308-0d34-0410-b5e6-96231b3b80d8
2015-05-08 18:07:42 +00:00
|
|
|
Args.push_back(B.getInt32(0 /* no transition args */));
|
2015-05-06 23:53:09 +00:00
|
|
|
Args.push_back(B.getInt32(DeoptArgs.size()));
|
|
|
|
Args.insert(Args.end(), DeoptArgs.begin(), DeoptArgs.end());
|
|
|
|
Args.insert(Args.end(), GCArgs.begin(), GCArgs.end());
|
|
|
|
|
|
|
|
return Args;
|
|
|
|
}
|
|
|
|
|
|
|
|
CallInst *IRBuilderBase::CreateGCStatepointCall(Value *ActualCallee,
|
|
|
|
ArrayRef<Value *> CallArgs,
|
|
|
|
ArrayRef<Value *> DeoptArgs,
|
|
|
|
ArrayRef<Value *> GCArgs,
|
|
|
|
const Twine &Name) {
|
2015-05-06 02:36:34 +00:00
|
|
|
// Extract out the type of the callee.
|
|
|
|
PointerType *FuncPtrType = cast<PointerType>(ActualCallee->getType());
|
|
|
|
assert(isa<FunctionType>(FuncPtrType->getElementType()) &&
|
|
|
|
"actual callee must be a callable value");
|
2014-12-30 05:55:58 +00:00
|
|
|
|
2015-05-06 02:36:34 +00:00
|
|
|
Module *M = BB->getParent()->getParent();
|
|
|
|
// Fill in the one generic type'd argument (the function is also vararg)
|
|
|
|
Type *ArgTypes[] = { FuncPtrType };
|
|
|
|
Function *FnStatepoint =
|
|
|
|
Intrinsic::getDeclaration(M, Intrinsic::experimental_gc_statepoint,
|
|
|
|
ArgTypes);
|
2014-12-30 05:55:58 +00:00
|
|
|
|
2015-05-06 23:53:09 +00:00
|
|
|
std::vector<llvm::Value *> Args =
|
|
|
|
getStatepointArgs(*this, ActualCallee, CallArgs, DeoptArgs, GCArgs);
|
|
|
|
return createCallHelper(FnStatepoint, Args, this, Name);
|
2014-12-30 05:55:58 +00:00
|
|
|
}
|
|
|
|
|
2015-05-06 23:53:09 +00:00
|
|
|
CallInst *IRBuilderBase::CreateGCStatepointCall(Value *ActualCallee,
|
|
|
|
ArrayRef<Use> CallArgs,
|
|
|
|
ArrayRef<Value *> DeoptArgs,
|
|
|
|
ArrayRef<Value *> GCArgs,
|
|
|
|
const Twine &Name) {
|
2015-02-26 00:35:56 +00:00
|
|
|
std::vector<Value *> VCallArgs;
|
|
|
|
for (auto &U : CallArgs)
|
|
|
|
VCallArgs.push_back(U.get());
|
2015-05-06 23:53:09 +00:00
|
|
|
return CreateGCStatepointCall(ActualCallee, VCallArgs, DeoptArgs, GCArgs,
|
|
|
|
Name);
|
|
|
|
}
|
|
|
|
|
|
|
|
InvokeInst *IRBuilderBase::CreateGCStatepointInvoke(
|
|
|
|
Value *ActualInvokee, BasicBlock *NormalDest, BasicBlock *UnwindDest,
|
|
|
|
ArrayRef<Value *> InvokeArgs, ArrayRef<Value *> DeoptArgs,
|
|
|
|
ArrayRef<Value *> GCArgs, const Twine &Name) {
|
|
|
|
// Extract out the type of the callee.
|
|
|
|
PointerType *FuncPtrType = cast<PointerType>(ActualInvokee->getType());
|
|
|
|
assert(isa<FunctionType>(FuncPtrType->getElementType()) &&
|
|
|
|
"actual callee must be a callable value");
|
|
|
|
|
|
|
|
Module *M = BB->getParent()->getParent();
|
|
|
|
// Fill in the one generic type'd argument (the function is also vararg)
|
|
|
|
Function *FnStatepoint = Intrinsic::getDeclaration(
|
|
|
|
M, Intrinsic::experimental_gc_statepoint, {FuncPtrType});
|
|
|
|
|
|
|
|
std::vector<llvm::Value *> Args =
|
|
|
|
getStatepointArgs(*this, ActualInvokee, InvokeArgs, DeoptArgs, GCArgs);
|
|
|
|
return createInvokeHelper(FnStatepoint, NormalDest, UnwindDest, Args, this,
|
|
|
|
Name);
|
|
|
|
}
|
|
|
|
|
|
|
|
InvokeInst *IRBuilderBase::CreateGCStatepointInvoke(
|
|
|
|
Value *ActualInvokee, BasicBlock *NormalDest, BasicBlock *UnwindDest,
|
|
|
|
ArrayRef<Use> InvokeArgs, ArrayRef<Value *> DeoptArgs,
|
|
|
|
ArrayRef<Value *> GCArgs, const Twine &Name) {
|
|
|
|
std::vector<Value *> VCallArgs;
|
|
|
|
for (auto &U : InvokeArgs)
|
|
|
|
VCallArgs.push_back(U.get());
|
|
|
|
return CreateGCStatepointInvoke(ActualInvokee, NormalDest, UnwindDest,
|
|
|
|
VCallArgs, DeoptArgs, GCArgs, Name);
|
2015-02-26 00:35:56 +00:00
|
|
|
}
|
|
|
|
|
2014-12-30 05:55:58 +00:00
|
|
|
CallInst *IRBuilderBase::CreateGCResult(Instruction *Statepoint,
|
|
|
|
Type *ResultType,
|
|
|
|
const Twine &Name) {
|
2015-01-22 20:14:38 +00:00
|
|
|
Intrinsic::ID ID = Intrinsic::experimental_gc_result;
|
2014-12-30 05:55:58 +00:00
|
|
|
Module *M = BB->getParent()->getParent();
|
|
|
|
Type *Types[] = {ResultType};
|
|
|
|
Value *FnGCResult = Intrinsic::getDeclaration(M, ID, Types);
|
|
|
|
|
|
|
|
Value *Args[] = {Statepoint};
|
|
|
|
return createCallHelper(FnGCResult, Args, this, Name);
|
|
|
|
}
|
|
|
|
|
|
|
|
CallInst *IRBuilderBase::CreateGCRelocate(Instruction *Statepoint,
|
|
|
|
int BaseOffset,
|
|
|
|
int DerivedOffset,
|
|
|
|
Type *ResultType,
|
|
|
|
const Twine &Name) {
|
|
|
|
Module *M = BB->getParent()->getParent();
|
|
|
|
Type *Types[] = {ResultType};
|
|
|
|
Value *FnGCRelocate =
|
|
|
|
Intrinsic::getDeclaration(M, Intrinsic::experimental_gc_relocate, Types);
|
|
|
|
|
|
|
|
Value *Args[] = {Statepoint,
|
|
|
|
getInt32(BaseOffset),
|
|
|
|
getInt32(DerivedOffset)};
|
|
|
|
return createCallHelper(FnGCRelocate, Args, this, Name);
|
|
|
|
}
|