1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2017-2021 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
#pragma once
#include "common/LLVMWarningsPush.hpp"
#include "llvmWrapper/IR/Instructions.h"
#include "llvmWrapper/Analysis/InlineCost.h"
#include "llvmWrapper/IR/InstrTypes.h"
#include "llvmWrapper/IR/DerivedTypes.h"
#include "llvmWrapper/Support/Alignment.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/TinyPtrVector.h"
#include "llvm/IR/Argument.h"
#include "llvm/IR/DataLayout.h"
#include "llvm/IR/Function.h"
#include "llvmWrapper/IR/IRBuilder.h"
#include "llvm/IR/Instruction.h"
#include "llvm/IR/Instructions.h"
#include "llvm/IR/IntrinsicInst.h"
#include "llvm/IR/Module.h"
#include "llvm/IR/Type.h"
#include "llvm/IR/Value.h"
#include "llvm/Pass.h"
#include "llvm/Analysis/TargetFolder.h"
#include "common/LLVMWarningsPop.hpp"
#include "Compiler/CISACodeGen/RegisterPressureEstimate.hpp"
#include "common/Types.hpp"
#include "GenISAIntrinsics/GenIntrinsicInst.h"
#include "Probe/Assertion.h"
namespace IGC {
namespace Legalizer {
using namespace llvm;
enum LegalizeAction {
Legal,
Promote,
Expand,
SoftenFloat,
Scalarize,
Elementize
};
typedef IGCLLVM::IRBuilder<TargetFolder> BuilderType;
typedef TinyPtrVector<Type*> TypeSeq;
typedef TinyPtrVector<Value*> ValueSeq;
class InstLegalChecker;
class InstPromoter;
class InstExpander;
class InstSoftener;
class InstScalarizer;
class InstElementizer;
class TypeLegalizer : public FunctionPass {
friend class InstLegalChecker;
friend class InstPromoter;
friend class InstExpander;
friend class InstSoftener;
friend class InstScalarizer;
friend class InstElementizer;
const DataLayout* DL = nullptr;
DominatorTree* DT = nullptr;;
BuilderType* IRB = nullptr;;
InstLegalChecker* ILC = nullptr;;
InstPromoter* IPromoter = nullptr;;
InstExpander* IExpander = nullptr;;
InstSoftener* ISoftener = nullptr;;
InstScalarizer* IScalarizer = nullptr;;
InstElementizer* IElementizer = nullptr;;
Module* TheModule = nullptr;;
Function* TheFunction = nullptr;;
// Map from illegal type to legalized type(s).
typedef DenseMap<Type*, TypeSeq> TypeMapTy;
TypeMapTy TypeMap;
// Map from illegal value to legalized value(s).
typedef DenseMap<Value*, ValueSeq> ValueMapTy;
ValueMapTy ValueMap;
SmallPtrSet<Instruction*, 8> IllegalInsts;
public:
static char ID;
TypeLegalizer();
bool runOnFunction(Function& F) override;
private:
void getAnalysisUsage(AnalysisUsage& AU) const override;
LLVMContext& getContext() const { return TheModule->getContext(); }
DominatorTree& getDominatorTree() const { return *DT; }
Module* getModule() const { return TheModule; }
Function* getFunction() const { return TheFunction; }
bool legalizeArguments(Function& F);
bool preparePHIs(Function& F);
bool legalizeInsts(Function& F);
bool populatePHIs(Function& F);
bool legalizeTerminators(Function& F);
void eraseIllegalInsts();
LegalizeAction getTypeLegalizeAction(Type* Ty) const;
LegalizeAction getLegalizeAction(Value* V) const;
LegalizeAction getLegalizeAction(Instruction* I) const;
std::pair<TypeSeq*, LegalizeAction> getLegalizedTypes(Type* Ty, bool legalizeToScalar = false);
TypeSeq* getPromotedTypeSeq(Type* Ty, bool legalizeToScalar = false);
TypeSeq* getExpandedTypeSeq(Type* Ty);
TypeSeq* getSoftenedTypeSeq(Type* Ty);
TypeSeq* getScalarizedTypeSeq(Type* Ty);
TypeSeq* getElementizedTypeSeq(Type* Ty);
std::pair<ValueSeq*, LegalizeAction> getLegalizedValues(Value* V, bool isSigned = false);
void setLegalizedValues(Value* OVal, ArrayRef<Value*> LegalizedVals);
bool hasLegalizedValues(Value* V) const;
// TODO: Refactor them into a separate legalizer.
void promoteConstant(ValueSeq*, TypeSeq*, Constant* C, bool isSigned);
void expandConstant(ValueSeq*, TypeSeq*, Constant* C);
void softenConstant(ValueSeq*, TypeSeq*, Constant* C);
void scalarizeConstant(ValueSeq*, TypeSeq*, Constant* C);
void elementizeConstant(ValueSeq*, TypeSeq*, Constant* C);
// TODO: Refactor them into a separate legalizer.
Value* promoteArgument(Argument* Arg, Type* PromotedTy);
Value* expandArgument(Argument* Arg, Type* ExpandedTy, unsigned Part);
Value* softenArgument(Argument* Arg, Type* SoftenedTy);
Value* scalarizeArgument(Argument* Arg, Type* ScalarizedTy, unsigned Part);
Value* elementizeArgument(Argument* Arg, Type* ElementizedTy,
unsigned Part);
Value* getDemotedValue(Value* V);
Value* getCompactedValue(Value* V);
// TODO: Refactor them into a separate legalizer.
bool promoteRet(ReturnInst* RI);
bool expandRet(ReturnInst* RI);
bool softenRet(ReturnInst* RI);
bool scalarizeRet(ReturnInst* RI);
bool elementizeRet(ReturnInst* RI);
// TODO: Refactor them into a separate legalizer.
bool populatePromotedPHI(PHINode* PN);
bool populateExpandedPHI(PHINode* PN);
bool populateSoftenedPHI(PHINode* PN);
bool populateScalarizedPHI(PHINode* PN);
bool populateElementizedPHI(PHINode* PN);
/// getSizeTypeInBits() - Similar to the same method in DL but assertion test on overflows.
unsigned getTypeSizeInBits(Type* Ty) const {
uint64_t FullWidth = DL->getTypeSizeInBits(Ty);
unsigned Width = static_cast<unsigned>(FullWidth);
IGC_ASSERT(Width == FullWidth);
return Width;
}
/// getTypeStoreSize() - Similar to the same method in DL but assertion on overflows.
unsigned getTypeStoreSize(Type* Ty) const {
uint64_t FullWidth = DL->getTypeStoreSize(Ty);
unsigned Width = static_cast<unsigned>(FullWidth);
IGC_ASSERT(Width == FullWidth);
return Width;
}
/// getTypeStoreSizeInBits() - Similar to the same method in DL but assertion on overflows.
unsigned getTypeStoreSizeInBits(Type* Ty) const {
uint64_t FullWidth = DL->getTypeStoreSizeInBits(Ty);
unsigned Width = static_cast<unsigned>(FullWidth);
IGC_ASSERT(Width == FullWidth);
return Width;
}
bool isLegalInteger(uint64_t width) const
{
switch (width)
{
case 8:
case 16:
case 32:
case 64:
return true;
default:
break;
}
return false;
}
/// getLargestLegalIntTypeSize() - Return the size of the largest legal
/// integer type with size not bigger than Width bits.
unsigned getLargestLegalIntTypeSize(unsigned Width) const {
for (; !isLegalInteger(Width); --Width)
/*EMPTY*/;
return Width;
}
/// getProfitVectorLength() - Return the profitable vector length for
/// memory load/store.
ArrayRef<unsigned> getProfitMemOpVectorLength(Type* EltTy) const {
// Possible profitable vector length combinations.
// NOTE: *KEEP* lengths in ascending order.
static unsigned L12[] = { 1, 2 };
static unsigned L1234[] = { 1, 2, 3, 4 };
static unsigned L124[] = { 1, 2, 4 };
switch (EltTy->getTypeID()) {
case Type::HalfTyID:
return makeArrayRef(L12);
case Type::FloatTyID:
return makeArrayRef(L1234);
case Type::DoubleTyID:
return makeArrayRef(L12);
case Type::PointerTyID:
// FIXME: In different addressing mode, the preferred vector length of
// pointer types is different.
return makeArrayRef(L12);
case Type::IntegerTyID: {
IntegerType* IEltTy = cast<IntegerType>(EltTy);
switch (IEltTy->getBitWidth()) {
case 8:
return makeArrayRef(L124);
case 16:
return makeArrayRef(L12);
case 32:
return makeArrayRef(L1234);
case 64:
return makeArrayRef(L12);
default:
break;
}
}
default:
break;
}
// By default, use scalar load/store only.
return ArrayRef<unsigned>();
}
/// getProfitLoadVectorLength() - Return the profitable vector length for
/// load.
ArrayRef<unsigned> getProfitLoadVectorLength(Type* EltTy) const {
return getProfitMemOpVectorLength(EltTy);
}
/// getProfitStoreVectorLength() - Return the profitable vector length for
/// store.
ArrayRef<unsigned> getProfitStoreVectorLength(Type* EltTy) const {
return getProfitMemOpVectorLength(EltTy);
}
/// preferVectorMemOp()
bool preferVectorMemOp(Type* Ty) const {
if (!Ty->isVectorTy())
return false;
unsigned NumElts = (unsigned)cast<IGCLLVM::FixedVectorType>(Ty)->getNumElements();
Type* EltTy = cast<VectorType>(Ty)->getElementType();
const auto& ProfitLengths = getProfitLoadVectorLength(EltTy);
return std::any_of(ProfitLengths.begin(), ProfitLengths.end(),
[&](unsigned PL) { return NumElts == PL; });
}
/// preferVectorLoad()
bool preferVectorLoad(Type* Ty) const { return preferVectorMemOp(Ty); }
/// preferVectorStore()
bool preferVectorStore(Type* Ty) const { return preferVectorMemOp(Ty); }
/// hasLegalRetType()
bool hasLegalRetType(Instruction* I) const {
Type* Ty = I->getType();
if (Ty->isVoidTy())
return false;
return getTypeLegalizeAction(Ty) == Legal;
}
/// isReservedLegal()
bool isReservedLegal(Value* V) const {
Instruction* I = dyn_cast<Instruction>(V);
// Non-instruction values are always not reserved legal.
if (!I)
return false;
// Loads are legal on certain vector types.
if (LoadInst * LD = dyn_cast<LoadInst>(I))
return preferVectorLoad(LD->getType());
// Stores are legal on certain vector types.
if (StoreInst * ST = dyn_cast<StoreInst>(I))
return preferVectorStore(ST->getValueOperand()->getType());
// ExtractElement from reserved legal insts.
if (ExtractElementInst * EEI = dyn_cast<ExtractElementInst>(I))
return isReservedLegal(EEI->getVectorOperand());
// InsertElement to reserved legal insts.
if (InsertElementInst * IEI = dyn_cast<InsertElementInst>(I))
return IEI->hasOneUse() && isReservedLegal(IEI->user_back());
return false;
}
/// getIntrinsic()
Function* getIntrinsic(GenISAIntrinsic::ID IID, ArrayRef<Type*> Tys) const {
return GenISAIntrinsic::getDeclaration(getModule(), IID, Tys);
}
/// Common helpers by different legalizers.
///
/// getIntNTy() -
IntegerType* getIntNTy(unsigned N) const {
return Type::getIntNTy(getContext(), N);
}
/// getIntN() -
ConstantInt* getIntN(unsigned N, uint64_t C) const {
return ConstantInt::get(getIntNTy(N), C);
}
/// getIntPtrTy() -
IntegerType* getIntPtrTy(unsigned AddrSpace) const {
return DL->getIntPtrType(getContext(), AddrSpace);
}
/// getIntBitsTy() - Return an integer type with the same bits of the given
/// type.
IntegerType* getIntBitsTy(Type* Ty) const {
return getIntNTy((unsigned int)Ty->getPrimitiveSizeInBits());
}
/// getAlignment() - Return the alignment of the memory access being
/// performed.
template<typename InstTy>
alignment_t getAlignment(InstTy*) const {
IGC_ASSERT_EXIT_MESSAGE(0, "ALIGNMENT IS CHECKED ON NON MEMORY INSTRUCTION!");
}
template<typename InstTy>
void dupMemoryAttribute(InstTy*, InstTy*, unsigned) const {
IGC_ASSERT_EXIT_MESSAGE(0, "ATTRIBUTE IS DUPLICATED ON NON MEMORY INSTRUCTION!");
}
/// createBinOpAsGiven() - Create a binary operator with the same attribute
/// as the specified one but with other operands.
Value*
createBinOpAsGiven(BinaryOperator* I, Value* LHS, Value* RHS,
const Twine& Name = "") const {
// TODO: Check whether it is possible to simplify the case where RHS is
// constant on specific instructions, e.g. and/or/xor/shl/lshr/ashr and
// etc.
Value* Res = IRB->CreateBinOp(I->getOpcode(), LHS, RHS, Name);
if (BinaryOperator * BO = dyn_cast<BinaryOperator>(Res)) {
// Copy overflow flags if any.
if (isa<OverflowingBinaryOperator>(BO)) {
BO->setHasNoSignedWrap(I->hasNoSignedWrap());
BO->setHasNoUnsignedWrap(I->hasNoUnsignedWrap());
}
// Copy exact flag if any.
if (isa<PossiblyExactOperator>(BO))
BO->setIsExact(I->isExact());
// Copy fast math flags if any.
if (isa<FPMathOperator>(BO))
BO->setFastMathFlags(I->getFastMathFlags());
}
return Res;
}
/// castToInt() - Cast the specified value into integer type with the same
/// size.
Value* castToInt(Value* V) const {
IntegerType* ITy = getIntBitsTy(V->getType());
return IRB->CreateBitCast(V, ITy, Twine(V->getName(), ".icast"));
}
/// shl() - Left-shift integer values with constant shift amount.
Value* shl(Value* V, uint64_t ShAmt) const {
if (ShAmt == 0)
return V;
return IRB->CreateShl(V, ShAmt, Twine(V->getName(), ".shl"));
}
/// lshr() - Logic right-shift integer values with constant shift amount.
Value* lshr(Value* V, uint64_t ShAmt) const {
if (ShAmt == 0)
return V;
return IRB->CreateLShr(V, ShAmt, Twine(V->getName(), ".lshr"));
}
/// zext() - Zero-extend illegal integer values holding in promoted types.
Value* zext(Value* V, Type* OrigTy) const {
IGC_ASSERT(V->getType()->getIntegerBitWidth() > OrigTy->getIntegerBitWidth());
APInt Mask = APInt::getAllOnesValue(OrigTy->getIntegerBitWidth());
Constant* C =
getIntN(V->getType()->getIntegerBitWidth(), Mask.getZExtValue());
return IRB->CreateAnd(V, C, Twine(V->getName(), ".zext"));
}
// Variant accepts/returns a pair of values of the same type.
std::pair<Value*, Value*>
zext(Value* LHS, Value* RHS, Type* OrigTy) const {
IGC_ASSERT(LHS->getType() == RHS->getType());
IGC_ASSERT(LHS->getType()->getIntegerBitWidth() > OrigTy->getIntegerBitWidth());
APInt Mask = APInt::getAllOnesValue(OrigTy->getIntegerBitWidth());
Constant* C =
getIntN(LHS->getType()->getIntegerBitWidth(), Mask.getZExtValue());
return
std::make_pair(IRB->CreateAnd(LHS, C, Twine(LHS->getName(), ".zext")),
IRB->CreateAnd(RHS, C, Twine(RHS->getName(), ".zext")));
}
/// sext() - Sign-extend illegal integer values holding in promoted types.
Value* sext(Value* V, Type* OrigTy) const {
IGC_ASSERT(V->getType()->getIntegerBitWidth() > OrigTy->getIntegerBitWidth());
Constant* ShAmt =
getIntN(V->getType()->getIntegerBitWidth(),
V->getType()->getIntegerBitWidth() - OrigTy->getIntegerBitWidth());
return
IRB->CreateAShr(
IRB->CreateShl(V, ShAmt, Twine(V->getName(), ".lsext")), ShAmt,
Twine(V->getName(), ".rsext"));
}
// Variant accepts/returns a pair of values of the same type.
std::pair<Value*, Value*>
sext(Value* LHS, Value* RHS, Type* OrigTy) const {
IGC_ASSERT(LHS->getType() == RHS->getType());
IGC_ASSERT(LHS->getType()->getIntegerBitWidth() > OrigTy->getIntegerBitWidth());
Constant* ShAmt =
getIntN(LHS->getType()->getIntegerBitWidth(),
LHS->getType()->getIntegerBitWidth() -
OrigTy->getIntegerBitWidth());
return
std::make_pair(
IRB->CreateAShr(
IRB->CreateShl(LHS, ShAmt,
Twine(LHS->getName(), ".lsext")), ShAmt,
Twine(LHS->getName(), ".rsext")),
IRB->CreateAShr(
IRB->CreateShl(RHS, ShAmt,
Twine(RHS->getName(), ".lsext")), ShAmt,
Twine(RHS->getName(), ".rsext")));
}
/// umin() - Return the minimal of (unsigned) integers and cast it into new
/// integer type if specified.
Value* umin(Value* LHS, Value* RHS, Type* NewTy = nullptr) const {
StringRef Name = LHS->getName();
Value* Cond =
IRB->CreateICmpULT(LHS, RHS, Twine(Name, ".umin.cond"));
Value* Min =
IRB->CreateSelect(Cond, LHS, RHS, Twine(Name, ".umin"));
if (!NewTy)
return Min;
return IRB->CreateZExtOrTrunc(Min, NewTy, Twine(Name, ".umin.trunc"));
}
/// getPointerToElt() - Calculate the pointer to the element specified by
/// the index, i.e. &Base[Idx], and cast it to the given type if necessary.
Value* getPointerToElt(Value* BasePtr, unsigned Idx, Type* PtrTy,
const Twine& Name = "") const {
Type* BasePtrTy = BasePtr->getType();
Value* NewPtr = BasePtr;
if (Idx != 0) {
unsigned AS = BasePtrTy->getPointerAddressSpace();
NewPtr =
IRB->CreateInBoundsGEP(BasePtr,
ConstantInt::get(getIntPtrTy(AS), Idx), Name);
}
if (BasePtrTy != PtrTy) {
NewPtr =
IRB->CreatePointerCast(NewPtr, PtrTy,
Twine(NewPtr->getName(), ".ptrcast"));
}
return NewPtr;
}
/// repack() - Re-pack source values into the new types. It assumes that
/// they have the equal total bits, e.g. re-pack ((float 123.0), (i8 45))
/// to (i20, i20), or vice versa.
void repack(ValueSeq* ValSeq,
ArrayRef<Type*> Tys, ArrayRef<Value*> Vals,
const Twine& Name = "") const {
auto VI = Vals.begin(), VE = Vals.end();
Value* V = castToInt(*VI);
unsigned SrcWidth = (unsigned int)V->getType()->getPrimitiveSizeInBits();
unsigned SrcOff = 0;
unsigned Part = 0;
for (auto* Ty : Tys) {
IntegerType* ITy = getIntBitsTy(Ty);
Value* Pack = ConstantInt::get(ITy, 0);
for (unsigned DstOff = 0,
DstWidth = ITy->getBitWidth(); DstOff != DstWidth; ) {
if (SrcOff == SrcWidth) {
++VI;
IGC_ASSERT(VI != VE);
V = castToInt(*VI);
SrcWidth = (unsigned int)V->getType()->getPrimitiveSizeInBits();
SrcOff = 0;
}
StringRef Name = V->getName();
// Pack |= cast<ITy>(V >> SrcOff) << DstOff;
Value* Bits =
IRB->CreateLShr(V, SrcOff, Twine(Name, ".lshr") + Twine(SrcOff));
Bits =
IRB->CreateZExtOrTrunc(Bits, ITy, Twine(Name, ".cast"));
Bits =
IRB->CreateShl(Bits, DstOff, Twine(Name, ".shl") + Twine(DstOff));
Pack = IRB->CreateOr(Pack, Bits, Twine(Name, ".or"));
// Because of that two shifts, only W bits are packed each time.
unsigned W = std::min(DstWidth - DstOff, SrcWidth - SrcOff);
SrcOff += W;
DstOff += W;
}
ValSeq->push_back(
IRB->CreateBitCast(Pack, Ty, Name + Twine(Part)));
}
IGC_ASSERT(VI + 1 == VE);
IGC_ASSERT(SrcOff == SrcWidth);
}
/// getSuffix() - return suffix for legalization rewriting.
static const char* getSuffix(LegalizeAction Act) {
static const char* Suffixes[] = {
".legal",
".promote",
".ex",
".soften",
".sclr",
".elt"
};
return Suffixes[Act];
}
};
/// Explicitly specialized helper templates.
///
template<> inline
alignment_t TypeLegalizer::getAlignment(LoadInst* Ld) const {
auto Align = Ld->getAlignment();
if (Align == 0)
Align = DL->getABITypeAlignment(Ld->getType());
return Align;
}
template<> inline
alignment_t TypeLegalizer::getAlignment(StoreInst* St) const {
auto Align = St->getAlignment();
if (Align == 0)
Align = DL->getABITypeAlignment(St->getValueOperand()->getType());
return Align;
}
template<> inline
void TypeLegalizer::dupMemoryAttribute(LoadInst* NewLd, LoadInst* RefLd,
unsigned Off) const {
// Duplicate attributes. TODO: Duplicate necessary metadata!
auto Align = getAlignment(RefLd);
NewLd->setVolatile(RefLd->isVolatile());
NewLd->setAlignment(IGCLLVM::getCorrectAlign(int_cast<alignment_t>(MinAlign(Align, Off))));
NewLd->setOrdering(RefLd->getOrdering());
NewLd->setSyncScopeID(RefLd->getSyncScopeID());
}
template<> inline
void TypeLegalizer::dupMemoryAttribute(StoreInst* NewSt, StoreInst* RefSt,
unsigned Off) const {
// Duplicate attributes. TODO: Duplicate necessary metadata!
auto Align = getAlignment(RefSt);
NewSt->setVolatile(RefSt->isVolatile());
NewSt->setAlignment(IGCLLVM::getCorrectAlign(int_cast<alignment_t>(MinAlign(Align, Off))));
NewSt->setOrdering(RefSt->getOrdering());
NewSt->setSyncScopeID(RefSt->getSyncScopeID());
}
} // End Legalizer namespace
} // End IGC namespace
|