[Alignment][NFC] Introduce Align in IRBuilder

Summary:
This is patch is part of a series to introduce an Alignment type.
See this thread for context: http://lists.llvm.org/pipermail/llvm-dev/2019-July/133851.html
See this patch for the introduction of the type: https://reviews.llvm.org/D64790

Reviewers: courbet

Subscribers: hiraditya, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D71343
This commit is contained in:
Guillaume Chatelet 2019-12-11 12:18:59 +01:00
parent e971a824fd
commit 0b64c93d29
3 changed files with 63 additions and 26 deletions

View File

@ -501,6 +501,17 @@ public:
isVolatile, TBAATag, TBAAStructTag, ScopeTag, isVolatile, TBAATag, TBAAStructTag, ScopeTag,
NoAliasTag); NoAliasTag);
} }
CallInst *CreateMemCpy(Value *Dst, MaybeAlign DstAlign, Value *Src,
MaybeAlign SrcAlign, uint64_t Size,
bool isVolatile = false, MDNode *TBAATag = nullptr,
MDNode *TBAAStructTag = nullptr,
MDNode *ScopeTag = nullptr,
MDNode *NoAliasTag = nullptr) {
return CreateMemCpy(Dst, DstAlign ? DstAlign->value() : 0, Src,
SrcAlign ? SrcAlign->value() : 0, getInt64(Size),
isVolatile, TBAATag, TBAAStructTag, ScopeTag,
NoAliasTag);
}
CallInst *CreateMemCpy(Value *Dst, unsigned DstAlign, Value *Src, CallInst *CreateMemCpy(Value *Dst, unsigned DstAlign, Value *Src,
unsigned SrcAlign, Value *Size, unsigned SrcAlign, Value *Size,
@ -508,6 +519,16 @@ public:
MDNode *TBAAStructTag = nullptr, MDNode *TBAAStructTag = nullptr,
MDNode *ScopeTag = nullptr, MDNode *ScopeTag = nullptr,
MDNode *NoAliasTag = nullptr); MDNode *NoAliasTag = nullptr);
CallInst *CreateMemCpy(Value *Dst, MaybeAlign DstAlign, Value *Src,
MaybeAlign SrcAlign, Value *Size,
bool isVolatile = false, MDNode *TBAATag = nullptr,
MDNode *TBAAStructTag = nullptr,
MDNode *ScopeTag = nullptr,
MDNode *NoAliasTag = nullptr) {
return CreateMemCpy(Dst, DstAlign ? DstAlign->value() : 0, Src,
SrcAlign ? SrcAlign->value() : 0, Size, isVolatile,
TBAATag, TBAAStructTag, ScopeTag, NoAliasTag);
}
/// Create and insert an element unordered-atomic memcpy between the /// Create and insert an element unordered-atomic memcpy between the
/// specified pointers. /// specified pointers.
@ -1627,12 +1648,21 @@ public:
LI->setAlignment(MaybeAlign(Align)); LI->setAlignment(MaybeAlign(Align));
return LI; return LI;
} }
LoadInst *CreateAlignedLoad(Type *Ty, Value *Ptr, MaybeAlign Align,
const Twine &Name = "") {
return CreateAlignedLoad(Ty, Ptr, Align ? Align->value() : 0, Name);
}
LoadInst *CreateAlignedLoad(Type *Ty, Value *Ptr, unsigned Align, LoadInst *CreateAlignedLoad(Type *Ty, Value *Ptr, unsigned Align,
bool isVolatile, const Twine &Name = "") { bool isVolatile, const Twine &Name = "") {
LoadInst *LI = CreateLoad(Ty, Ptr, isVolatile, Name); LoadInst *LI = CreateLoad(Ty, Ptr, isVolatile, Name);
LI->setAlignment(MaybeAlign(Align)); LI->setAlignment(MaybeAlign(Align));
return LI; return LI;
} }
LoadInst *CreateAlignedLoad(Type *Ty, Value *Ptr, MaybeAlign Align,
bool isVolatile, const Twine &Name = "") {
return CreateAlignedLoad(Ty, Ptr, Align ? Align->value() : 0, isVolatile,
Name);
}
// Deprecated [opaque pointer types] // Deprecated [opaque pointer types]
LoadInst *CreateAlignedLoad(Value *Ptr, unsigned Align, const char *Name) { LoadInst *CreateAlignedLoad(Value *Ptr, unsigned Align, const char *Name) {
@ -1658,7 +1688,10 @@ public:
SI->setAlignment(MaybeAlign(Align)); SI->setAlignment(MaybeAlign(Align));
return SI; return SI;
} }
StoreInst *CreateAlignedStore(Value *Val, Value *Ptr, MaybeAlign Align,
bool isVolatile = false) {
return CreateAlignedStore(Val, Ptr, Align ? Align->value() : 0, isVolatile);
}
FenceInst *CreateFence(AtomicOrdering Ordering, FenceInst *CreateFence(AtomicOrdering Ordering,
SyncScope::ID SSID = SyncScope::System, SyncScope::ID SSID = SyncScope::System,
const Twine &Name = "") { const Twine &Name = "") {

View File

@ -363,6 +363,9 @@ namespace llvm {
addParamAttr(ARG_DEST, Attribute::getWithAlignment(getContext(), addParamAttr(ARG_DEST, Attribute::getWithAlignment(getContext(),
Align(Alignment))); Align(Alignment)));
} }
void setDestAlignment(MaybeAlign Align) {
setDestAlignment(Align ? Align->value() : 0);
}
void setLength(Value *L) { void setLength(Value *L) {
assert(getLength()->getType() == L->getType() && assert(getLength()->getType() == L->getType() &&
@ -413,6 +416,9 @@ namespace llvm {
Attribute::getWithAlignment(BaseCL::getContext(), Attribute::getWithAlignment(BaseCL::getContext(),
Align(Alignment))); Align(Alignment)));
} }
void setSourceAlignment(MaybeAlign Align) {
setSourceAlignment(Align ? Align->value() : 0);
}
}; };
/// Common base class for all memset intrinsics. Simply provides /// Common base class for all memset intrinsics. Simply provides

View File

@ -2429,13 +2429,14 @@ private:
/// ///
/// You can optionally pass a type to this routine and if that type's ABI /// You can optionally pass a type to this routine and if that type's ABI
/// alignment is itself suitable, this will return zero. /// alignment is itself suitable, this will return zero.
unsigned getSliceAlign(Type *Ty = nullptr) { MaybeAlign getSliceAlign(Type *Ty = nullptr) {
unsigned NewAIAlign = NewAI.getAlignment(); const MaybeAlign NewAIAlign = DL.getValueOrABITypeAlignment(
if (!NewAIAlign) MaybeAlign(NewAI.getAlignment()), NewAI.getAllocatedType());
NewAIAlign = DL.getABITypeAlignment(NewAI.getAllocatedType()); const MaybeAlign Align =
unsigned Align = commonAlignment(NewAIAlign, NewBeginOffset - NewAllocaBeginOffset);
MinAlign(NewAIAlign, NewBeginOffset - NewAllocaBeginOffset); return (Ty && Align && Align->value() == DL.getABITypeAlignment(Ty))
return (Ty && Align == DL.getABITypeAlignment(Ty)) ? 0 : Align; ? None
: Align;
} }
unsigned getIndex(uint64_t Offset) { unsigned getIndex(uint64_t Offset) {
@ -2883,7 +2884,7 @@ private:
assert((IsDest && II.getRawDest() == OldPtr) || assert((IsDest && II.getRawDest() == OldPtr) ||
(!IsDest && II.getRawSource() == OldPtr)); (!IsDest && II.getRawSource() == OldPtr));
unsigned SliceAlign = getSliceAlign(); MaybeAlign SliceAlign = getSliceAlign();
// For unsplit intrinsics, we simply modify the source and destination // For unsplit intrinsics, we simply modify the source and destination
// pointers in place. This isn't just an optimization, it is a matter of // pointers in place. This isn't just an optimization, it is a matter of
@ -2953,10 +2954,10 @@ private:
// Compute the relative offset for the other pointer within the transfer. // Compute the relative offset for the other pointer within the transfer.
unsigned OffsetWidth = DL.getIndexSizeInBits(OtherAS); unsigned OffsetWidth = DL.getIndexSizeInBits(OtherAS);
APInt OtherOffset(OffsetWidth, NewBeginOffset - BeginOffset); APInt OtherOffset(OffsetWidth, NewBeginOffset - BeginOffset);
unsigned OtherAlign = Align OtherAlign =
IsDest ? II.getSourceAlignment() : II.getDestAlignment(); assumeAligned(IsDest ? II.getSourceAlignment() : II.getDestAlignment());
OtherAlign = MinAlign(OtherAlign ? OtherAlign : 1, OtherAlign =
OtherOffset.zextOrTrunc(64).getZExtValue()); commonAlignment(OtherAlign, OtherOffset.zextOrTrunc(64).getZExtValue());
if (EmitMemCpy) { if (EmitMemCpy) {
// Compute the other pointer, folding as much as possible to produce // Compute the other pointer, folding as much as possible to produce
@ -2969,7 +2970,7 @@ private:
Constant *Size = ConstantInt::get(SizeTy, NewEndOffset - NewBeginOffset); Constant *Size = ConstantInt::get(SizeTy, NewEndOffset - NewBeginOffset);
Value *DestPtr, *SrcPtr; Value *DestPtr, *SrcPtr;
unsigned DestAlign, SrcAlign; MaybeAlign DestAlign, SrcAlign;
// Note: IsDest is true iff we're copying into the new alloca slice // Note: IsDest is true iff we're copying into the new alloca slice
if (IsDest) { if (IsDest) {
DestPtr = OurPtr; DestPtr = OurPtr;
@ -3016,9 +3017,9 @@ private:
Value *SrcPtr = getAdjustedPtr(IRB, DL, OtherPtr, OtherOffset, OtherPtrTy, Value *SrcPtr = getAdjustedPtr(IRB, DL, OtherPtr, OtherOffset, OtherPtrTy,
OtherPtr->getName() + "."); OtherPtr->getName() + ".");
unsigned SrcAlign = OtherAlign; MaybeAlign SrcAlign = OtherAlign;
Value *DstPtr = &NewAI; Value *DstPtr = &NewAI;
unsigned DstAlign = SliceAlign; MaybeAlign DstAlign = SliceAlign;
if (!IsDest) { if (!IsDest) {
std::swap(SrcPtr, DstPtr); std::swap(SrcPtr, DstPtr);
std::swap(SrcAlign, DstAlign); std::swap(SrcAlign, DstAlign);
@ -3114,20 +3115,17 @@ private:
Instruction *I = Uses.pop_back_val(); Instruction *I = Uses.pop_back_val();
if (LoadInst *LI = dyn_cast<LoadInst>(I)) { if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
unsigned LoadAlign = LI->getAlignment(); MaybeAlign LoadAlign = DL.getValueOrABITypeAlignment(
if (!LoadAlign) MaybeAlign(LI->getAlignment()), LI->getType());
LoadAlign = DL.getABITypeAlignment(LI->getType()); LI->setAlignment(std::min(LoadAlign, getSliceAlign()));
LI->setAlignment(MaybeAlign(std::min(LoadAlign, getSliceAlign())));
continue; continue;
} }
if (StoreInst *SI = dyn_cast<StoreInst>(I)) { if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
unsigned StoreAlign = SI->getAlignment();
if (!StoreAlign) {
Value *Op = SI->getOperand(0); Value *Op = SI->getOperand(0);
StoreAlign = DL.getABITypeAlignment(Op->getType()); MaybeAlign StoreAlign = DL.getValueOrABITypeAlignment(
} MaybeAlign(SI->getAlignment()), Op->getType());
SI->setAlignment(MaybeAlign(std::min(StoreAlign, getSliceAlign()))); SI->setAlignment(std::min(StoreAlign, getSliceAlign()));
continue; continue;
} }
assert(isa<BitCastInst>(I) || isa<AddrSpaceCastInst>(I) || assert(isa<BitCastInst>(I) || isa<AddrSpaceCastInst>(I) ||