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 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2017-2021 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
//
// GenXVisaRegAlloc is a function group pass that allocates vISA registers to
// LLVM IR values. See GenXVisaRegAlloc.h.
//
//===----------------------------------------------------------------------===//
#include "GenXVisaRegAlloc.h"
#include "GenX.h"
#include "GenXIntrinsics.h"
#include "GenXLiveness.h"
#include "GenXNumbering.h"
#include "GenXTargetMachine.h"
#include "GenXUtil.h"
#include "vc/Support/BackendConfig.h"
#include "vc/Support/GenXDiagnostic.h"
#include "vc/Utils/GenX/InternalMetadata.h"
#include "vc/Utils/GenX/KernelInfo.h"
#include "vc/Utils/GenX/PredefinedVariable.h"
#include "vc/Utils/GenX/RegCategory.h"
#include "vc/Utils/General/Types.h"
#include "visa_igc_common_header.h"
#include "llvm/ADT/MapVector.h"
#include "llvm/CodeGen/TargetPassConfig.h"
#include "llvm/GenXIntrinsics/GenXMetadata.h"
#include "llvm/IR/DebugInfo.h"
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/Function.h"
#include "llvm/IR/Instructions.h"
#include "llvm/IR/Intrinsics.h"
#include "llvm/IR/Module.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
#include "llvmWrapper/IR/DerivedTypes.h"
#define DEBUG_TYPE "GENX_REGALLOC"
#include "Probe/Assertion.h"
using namespace llvm;
using namespace genx;
using namespace visa;
static cl::opt<unsigned>
LimitGenXExtraCoalescing("limit-genx-extra-coalescing", cl::init(UINT_MAX),
cl::Hidden,
cl::desc("Limit GenX extra coalescing."));
static cl::opt<unsigned> ArithChainLengthThreshold(
"acc-split-arith-length", cl::init(4), cl::Hidden,
cl::desc("Arithmetic chain length to localize for accumulator usage"));
INITIALIZE_PASS_BEGIN(GenXVisaRegAllocWrapper, "GenXVisaRegAllocWrapper",
"GenXVisaRegAllocWrapper", false, false)
INITIALIZE_PASS_DEPENDENCY(GenXLivenessWrapper)
INITIALIZE_PASS_DEPENDENCY(GenXNumberingWrapper)
INITIALIZE_PASS_DEPENDENCY(GenXBackendConfig)
INITIALIZE_PASS_DEPENDENCY(FunctionGroupAnalysis)
INITIALIZE_PASS_END(GenXVisaRegAllocWrapper, "GenXVisaRegAllocWrapper",
"GenXVisaRegAllocWrapper", false, false)
ModulePass *llvm::createGenXVisaRegAllocWrapperPass() {
initializeGenXVisaRegAllocWrapperPass(*PassRegistry::getPassRegistry());
return new GenXVisaRegAllocWrapper();
}
void GenXVisaRegAlloc::getAnalysisUsage(AnalysisUsage &AU) {
AU.addRequired<GenXLiveness>();
AU.addRequired<GenXNumbering>();
AU.addRequired<GenXBackendConfig>();
AU.addRequired<TargetPassConfig>();
AU.addRequired<FunctionGroupAnalysis>();
AU.setPreservesAll();
}
void GenXVisaRegAlloc::releaseMemory() {
// Empty out the analysis from the last function it was used on.
RegMap.clear();
RegStorage.clear();
PredefinedSurfaceRegs.clear();
PredefinedRegs.clear();
}
/***********************************************************************
* runOnFunctionGroup : run the register allocator for this FunctionGroup
*
* This is currently a trivial allocator that just gives a new vISA virtual
* register to every single Value.
*/
bool GenXVisaRegAlloc::runOnFunctionGroup(FunctionGroup &FGArg)
{
FG = &FGArg;
Liveness = &getAnalysis<GenXLiveness>();
Numbering = &getAnalysis<GenXNumbering>();
FGA = &getAnalysis<FunctionGroupAnalysis>();
BackendConfig = &getAnalysis<GenXBackendConfig>();
ST = &getAnalysis<TargetPassConfig>()
.getTM<GenXTargetMachine>()
.getGenXSubtarget();
DL = &FG->getModule()->getDataLayout();
for (auto Category : vc::RegCategoryView()) {
if (!vc::isRealOrNoneCategory(Category))
continue;
vc::accessContainer(CurrentRegId, Category) = 0;
}
for (unsigned i = 0; i < VISA_NUM_RESERVED_SURFACES; ++i) {
RegStorage.emplace_back(vc::RegCategory::Surface, i);
PredefinedSurfaceRegs.push_back(&RegStorage.back());
}
RegStorage.emplace_back(vc::RegCategory::General,
PreDefined_Vars::PREDEFINED_ARG,
IGCLLVM::FixedVectorType::get(
Type::getInt8Ty(FGArg.getContext()),
visa::ArgRegSizeInGRFs * ST->getGRFByteSize()));
PredefinedRegs.push_back(&RegStorage.back());
RegStorage.emplace_back(vc::RegCategory::General,
PreDefined_Vars::PREDEFINED_RET,
IGCLLVM::FixedVectorType::get(
Type::getInt8Ty(FGArg.getContext()),
visa::RetRegSizeInGRFs * ST->getGRFByteSize()));
PredefinedRegs.push_back(&RegStorage.back());
RegStorage.emplace_back(
vc::RegCategory::General, PreDefined_Vars::PREDEFINED_FE_SP,
IGCLLVM::FixedVectorType::get(Type::getInt64Ty(FGArg.getContext()), 1));
PredefinedRegs.push_back(&RegStorage.back());
RegStorage.emplace_back(
vc::RegCategory::General, PreDefined_Vars::PREDEFINED_FE_FP,
IGCLLVM::FixedVectorType::get(Type::getInt64Ty(FGArg.getContext()), 1));
PredefinedRegs.push_back(&RegStorage.back());
// Reserve the reserved registers.
vc::accessContainer(CurrentRegId, vc::RegCategory::General) =
VISA_NUM_RESERVED_REGS;
vc::accessContainer(CurrentRegId, vc::RegCategory::Predicate) =
VISA_NUM_RESERVED_PREDICATES;
vc::accessContainer(CurrentRegId, vc::RegCategory::Surface) =
VISA_NUM_RESERVED_SURFACES;
// Do some extra coalescing.
if (!BackendConfig->disableExtraCoalescing())
extraCoalescing();
// Get the live ranges in a reproducible order.
std::vector<LiveRange *> LRs;
getLiveRanges(LRs);
if (BackendConfig->localizeLiveRangesForAccUsage())
localizeLiveRangesForAccUsage(LRs);
// Allocate a register to each live range.
for (auto i = LRs.begin(), e = LRs.end(); i != e; ++i)
allocReg(*i);
if (BackendConfig->enableRegAllocDump())
Stats.recordLRs(FG, LRs);
return false;
}
/***********************************************************************
* getLiveRanges : get the live ranges in a reproducible order
*
* We scan the code to find the live ranges, rather than just walking the
* GenXLiveness map, to ensure that registers are allocated in a consistent
* order that does not depend on the layout of allocated memory.
*
* This ignores any live range with no category, so such a live range does not
* get allocated a register. GenXArgIndirection uses that to stop an indirected
* argument uselessly getting a register.
*/
void GenXVisaRegAlloc::getLiveRanges(std::vector<LiveRange *> &LRs) const {
// create LRs for global variables.
for (auto &GV : FG->getModule()->globals())
getLiveRangesForValue(&GV, LRs);
for (auto fgi = FG->begin(), fge = FG->end(); fgi != fge; ++fgi) {
Function *F = *fgi;
for (auto ai = F->arg_begin(), ae = F->arg_end(); ai != ae; ++ai)
getLiveRangesForValue(&*ai, LRs);
if (!F->getReturnType()->isVoidTy()) {
// allocate reg for unified return value
getLiveRangesForValue(Liveness->getUnifiedRet(F), LRs);
}
for (auto fi = F->begin(), fe = F->end(); fi != fe; ++fi) {
BasicBlock *BB = &*fi;
for (auto bi = BB->begin(), be = BB->end(); bi != be; ++bi)
getLiveRangesForValue(&*bi, LRs);
}
}
}
void GenXVisaRegAlloc::reportVisaVarableNumberLimitError(
vc::RegCategory Category, unsigned ID) const {
vc::diagnose(FGA->getModule()->getContext(), "GenXVisaRegAlloc",
"vISA variable limit reached for [" +
categoryToString(Category) + "], ID = " + Twine(ID));
return;
}
static unsigned
getMaximumNumberOfVariablesForCategory(vc::RegCategory Category) {
if (Category == vc::RegCategory::General)
return VISA_MAX_GENERAL_REGS;
if (Category == vc::RegCategory::Address)
return VISA_MAX_ADDRESS_REGS;
if (Category == vc::RegCategory::Predicate)
return VISA_MAX_PREDICATE_REGS;
if (Category == vc::RegCategory::Sampler)
return VISA_MAX_SAMPLER_REGS;
if (Category == vc::RegCategory::Surface)
return VISA_MAX_SURFACE_REGS;
IGC_ASSERT_MESSAGE(false, "unknown category specified");
return 0;
}
unsigned
GenXVisaRegAlloc::getMaximumVariableIDForCategory(vc::RegCategory Category) {
const unsigned Result = getMaximumNumberOfVariablesForCategory(Category);
IGC_ASSERT_MESSAGE(Result > 0, "could not detect maximum number of variables "
"for the specified category");
return Result - 1;
}
namespace {
// Helper class for live range localization of
// possible accumulator usages: finalizer can't
// assign accumulator to VISA variable if it's used
// outside of a BB. Localize such live ranges if profitable.
class AccumulatorUsageLocalizer {
public:
AccumulatorUsageLocalizer(const GenXNumbering &N, GenXLiveness &L)
: Numbering(N), Liveness(L) {}
template <typename OutIter>
void getSplitForLiveRange(genx::LiveRange *LR, OutIter Iter);
private:
template <typename Iter>
std::pair<Iter, Iter>
getRangeOfInstructionsToLocalize(Iter InstBegin, Iter InstEnd, BasicBlock *BB,
genx::LiveRange *LR) const;
template <typename Iter>
std::pair<Iter, Iter> getArithmeticChainRange(Iter InstBegin,
Iter InstEnd) const;
static bool isArithmeticChainInst(const Value *V);
const GenXNumbering &Numbering;
GenXLiveness &Liveness;
};
} // namespace
/***********************************************************************
* Finalizer can't assign accumulator to VISA variable if it's used
* outside of a BB. Localize such live ranges if profitable.
*/
void GenXVisaRegAlloc::localizeLiveRangesForAccUsage(
std::vector<genx::LiveRange *> &LRs) {
std::vector<genx::LiveRange *> NewLRs;
AccumulatorUsageLocalizer Localizer(*Numbering, *Liveness);
for (auto *LR : LRs) {
// Only general variable can be an accumulator
if (LR->Category != vc::RegCategory::General)
continue;
Localizer.getSplitForLiveRange(LR, std::back_inserter(NewLRs));
}
LRs.insert(LRs.end(), std::make_move_iterator(NewLRs.begin()),
std::make_move_iterator(NewLRs.end()));
}
/***********************************************************************
* splitLiveRangeForAccUsage : Split live range into parts by moving
* certain range of instructions into new live range. This method modifies
* Liveness
*
* New live ranges are put into output itertaor if
* split needed.
*/
template <typename OutIter>
void AccumulatorUsageLocalizer::getSplitForLiveRange(genx::LiveRange *LR,
OutIter Iter) {
IGC_ASSERT(LR && LR->Category == vc::RegCategory::General);
// Map all LR's values to each BB. Provide iteration in
// insertion order to preserve deterministic behaviour
MapVector<BasicBlock *, std::vector<Instruction *>> LRValuesForBB;
for (auto &SV : LR->getValues()) {
auto *I = dyn_cast<Instruction>(SV.getValue());
if (I) LRValuesForBB[I->getParent()].push_back(I);
}
for (auto &[BB, Insts] : LRValuesForBB) {
// Sort values in this BB according to GenXNumbering to
// identify bottom and up instructions
std::sort(Insts.begin(), Insts.end(),
[this](Instruction *I1, Instruction *I2) {
return Numbering.getNumber(I1) < Numbering.getNumber(I2);
});
auto [Start, End] =
getRangeOfInstructionsToLocalize(Insts.begin(), Insts.end(), BB, LR);
if (Start == End)
continue;
// Insert values to localize into new
// live range and remove them from the old one
Liveness.removeValueNoDelete(*Start);
genx::LiveRange *NewLR = Liveness.getOrCreateLiveRange(*Start);
NewLR->setCategory(vc::RegCategory::General);
for (auto *I : make_range(std::next(Start), End)) {
Liveness.removeValueNoDelete(I);
Liveness.setLiveRange(I, NewLR);
}
*Iter++ = NewLR;
}
}
/***********************************************************************
* getRangeOfInstructionsToLocalize : get the range of instructions to
* localize if exists. This method analyses if live range spans across
* basic block. Accepts basic block and instructions of the basic block
* in the live range.
*
* Returns range if found localization range
*/
template <typename Iter>
std::pair<Iter, Iter>
AccumulatorUsageLocalizer::getRangeOfInstructionsToLocalize(
Iter InstBegin, Iter InstEnd, BasicBlock *BB, genx::LiveRange *LR) const {
// Determine if bottom value is used outside of BB. Also localization is
// needed if there exist a backedge phi user
Instruction *BottomI = *std::prev(InstEnd);
bool BottomValueLeaksAway = llvm::any_of(BottomI->users(), [&](User *U) {
return cast<Instruction>(U)->getParent() != BottomI->getParent()
? true
: isa<PHINode>(U);
});
// Localization is needed if any of the operands of first instruction is used
// in the same LR and take place in different BB
Instruction *UpI = *InstBegin;
bool UpValueOperandsLeakIn = llvm::any_of(UpI->operands(), [&](Value *V) {
auto *I = dyn_cast<Instruction>(V);
return I && Liveness.getLiveRangeOrNull(I) == LR &&
I->getParent() != UpI->getParent();
});
if (!BottomValueLeaksAway && !UpValueOperandsLeakIn)
return {InstBegin, InstBegin};
// Now do only localization of arithmetic instruction chains
return getArithmeticChainRange(InstBegin, InstEnd);
}
/***********************************************************************
* getArithmeticChainRange : get the range of arithmetic instructions:
* V = fma ...
* V = fma V ...
* V = fma V ...
* ...
*
* Returns range if found such chain or empty range otherwise
*/
template <typename Iter>
std::pair<Iter, Iter>
AccumulatorUsageLocalizer::getArithmeticChainRange(Iter InstBegin,
Iter InstEnd) const {
unsigned TotalArithChainInsts =
std::count_if(InstBegin, InstEnd, isArithmeticChainInst);
if (ArithChainLengthThreshold > TotalArithChainInsts)
return {InstBegin, InstBegin};
auto InstRange = llvm::make_range(InstBegin, InstEnd);
auto StartOfLocalizeSequence =
llvm::find_if(InstRange, isArithmeticChainInst);
auto EndOfLocalizeSequence =
llvm::find_if(llvm::reverse(InstRange), isArithmeticChainInst);
// Return element before the end of the range to not insert any copy-outs
return std::make_pair(StartOfLocalizeSequence,
std::next(EndOfLocalizeSequence).base());
}
bool AccumulatorUsageLocalizer::isArithmeticChainInst(const Value *V) {
unsigned ID = vc::getAnyIntrinsicID(V);
switch (ID) {
case Intrinsic::fma:
return true;
default:
break;
}
return false;
}
void GenXVisaRegAlloc::getLiveRangesForValue(
Value *V, std::vector<LiveRange *> &LRs) const {
auto Ty = V->getType();
for (unsigned i = 0, e = IndexFlattener::getNumElements(Ty);
i != e; ++i) {
SimpleValue SV(V, i);
LiveRange *LR = Liveness->getLiveRangeOrNull(SV);
if (!LR || LR->getCategory() == vc::RegCategory::None)
continue;
// Only process an LR if the map iterator is on the value that appears
// first in the LR. That avoids processing the same LR multiple times.
if (SV != *LR->value_begin())
continue;
LRs.push_back(LR);
}
}
// Coalesce state registers to avoid state registers limit violation.
// Args:
// \p ToCoalesce - potential instruction to coalesce, must have surface
// or sampler category.
// \p CommonLR - single LR used for constant state of given type, equals
// null if not yet selected.
// \p Liveness - GenX liveness analysis.
// Returns old common LR value if \p ToCoalesce wasn't coalesced, updated common
// LR value otherwise.
static LiveRange *coalesceConstState(Instruction &ToCoalesce,
LiveRange *CommonLR,
GenXLiveness &Liveness) {
auto *LR = Liveness.getLiveRange(&ToCoalesce);
IGC_ASSERT_MESSAGE(LR->Category == vc::RegCategory::Surface ||
LR->Category == vc::RegCategory::Sampler,
"wrong argument: ToCoalesce should have surface category");
auto IID = GenXIntrinsic::getGenXIntrinsicID(&ToCoalesce);
if (IID != GenXIntrinsic::genx_convert &&
IID != GenXIntrinsic::genx_constanti)
return CommonLR;
if (!isa<Constant>(ToCoalesce.getOperand(0)))
return CommonLR;
if (!CommonLR)
return LR;
if (Liveness.interfere(CommonLR, LR))
return CommonLR;
return Liveness.coalesce(CommonLR, LR, /*DisalowCASC=*/true);
}
/***********************************************************************
* extraCoalescing : do some extra coalescing over and above what
* GenXCoalescing does
*
* GenXCoalescing does coalescing where it saves a copy, for example for
* a two address operand. This function does coalescing that does not save
* a copy, but the two live ranges are related by being the operand (a
* kill use) and result of the same instruction. This is in the hope that
* the jitter's register allocator will be able to do a better job with it.
*
* A further case of extra coalescing is that multiple instances of a constant
* load of a surface variable are coalesced together. This allows the CM code
* to use lots of printfs without running out of surface variables.
*/
void GenXVisaRegAlloc::extraCoalescing()
{
LiveRange *CommonSurface = nullptr;
LiveRange *CommonSampler = nullptr;
for (auto fgi = FG->begin(), fge = FG->end(); fgi != fge; ++fgi) {
Function *F = *fgi;
for (auto fi = F->begin(), fe = F->end(); fi != fe; ++fi) {
BasicBlock *BB = &*fi;
for (auto bi = BB->begin(), be = BB->end(); bi != be; ++bi) {
auto Inst = &*bi;
if (isa<StructType>(Inst->getType()))
continue;
if (GenXIntrinsic::isWrRegion(Inst))
continue;
auto LR = Liveness->getLiveRangeOrNull(Inst);
if (!LR)
continue;
if (LR->Category == vc::RegCategory::Surface) {
CommonSurface = coalesceConstState(*Inst, CommonSurface, *Liveness);
continue;
}
if (LR->Category == vc::RegCategory::Sampler) {
CommonSampler = coalesceConstState(*Inst, CommonSampler, *Liveness);
continue;
}
if (LR->Category != vc::RegCategory::General)
continue;
// We have a non-struct non-wrregion instruction whose result has a
// live range (it is not baled into anything else).
// Check all uses to see if there is one in a non-alu intrinsic. We
// don't want to coalesce that, because of the danger of the jitter
// needing to add an extra move in the send.
bool UseInNonAluIntrinsic = false;
for (auto ui = Inst->use_begin(), ue = Inst->use_end();
ui != ue && !UseInNonAluIntrinsic; ++ui) {
auto user = dyn_cast<Instruction>(ui->getUser());
IGC_ASSERT(user);
if (user->getType()->isVoidTy()) {
UseInNonAluIntrinsic = true;
break;
}
unsigned IID = vc::getAnyIntrinsicID(user);
switch (IID) {
case GenXIntrinsic::not_any_intrinsic:
case GenXIntrinsic::genx_rdregioni:
case GenXIntrinsic::genx_rdregionf:
case GenXIntrinsic::genx_wrregioni:
case GenXIntrinsic::genx_wrregionf:
break;
default: {
// It is an intrinsic. A non-alu intrinsic does not have a
// return value that is general.
GenXIntrinsicInfo II(IID);
if (!II.getRetInfo().isGeneral())
UseInNonAluIntrinsic = true;
}
break;
}
}
if (UseInNonAluIntrinsic)
continue;
// Do not coalesce when this is a two address instrinsic with undef
// input. Otherwise logic is broken on lifetime marker in vISA emission.
//
auto skipTwoAddrCoalesce = [](Instruction *Inst) {
unsigned IntrinsicID = vc::getAnyIntrinsicID(Inst);
if (IntrinsicID == GenXIntrinsic::not_any_intrinsic)
return false;
GenXIntrinsicInfo Info(IntrinsicID);
for (auto AI : Info.getInstDesc()) {
if (AI.getCategory() != GenXIntrinsicInfo::TWOADDR)
continue;
if (isa<UndefValue>(Inst->getOperand(AI.getArgIdx())))
return true;
}
return false;
};
if (skipTwoAddrCoalesce(Inst))
continue;
// if intrinsic have restrictions on combination for input/output
// registers return true
auto isRestrictedByVisa = [](unsigned ID, unsigned operandNum) {
switch (ID) {
// dpas - src1 and src2 should not overlap with dst
case GenXIntrinsic::genx_dpas2:
case GenXIntrinsic::genx_dpas:
case GenXIntrinsic::genx_dpasw:
return operandNum == 1 || operandNum == 2;
case GenXIntrinsic::genx_dpas_nosrc0:
case GenXIntrinsic::genx_dpasw_nosrc0:
return operandNum == 0 || operandNum == 1;
default:
return false;
}
};
// See if we can coalesce with any operand.
for (unsigned oi = 0, oe = Inst->getNumOperands(); oi != oe; ++oi) {
Value *Operand = Inst->getOperand(oi);
if (isa<Constant>(Operand))
continue;
if (Operand->getType() != Inst->getType())
continue;
if (isRestrictedByVisa(GenXIntrinsic::getGenXIntrinsicID(Inst), oi))
continue;
auto OperandLR = Liveness->getLiveRangeOrNull(Operand);
if (!OperandLR || OperandLR->Category != vc::RegCategory::General)
continue;
// Do not coalesce with kernel arguments as they are input variables
// (after coalescing alignment requirements can become stricter, and
// kernel arguments have already fixed alignment).
if (FG->getHead() == F &&
std::any_of(OperandLR->value_begin(), OperandLR->value_end(),
[](AssertingSV SV) { return isa<Argument>(SV.getValue()); }))
continue;
if (Liveness->interfere(LR, OperandLR))
continue;
// The two live ranges do not interfere, so we can coalesce them.
if (++CoalescingCount > LimitGenXExtraCoalescing)
continue;
if (LimitGenXExtraCoalescing != UINT_MAX)
dbgs() << "genx extra coalescing " << CoalescingCount << "\n";
Liveness->coalesce(LR, OperandLR, /*DisalowCASC=*/true);
break;
}
}
}
}
}
/***********************************************************************
* allocReg : allocate a register for a LiveRange
*/
void GenXVisaRegAlloc::allocReg(LiveRange *LR) {
if (LR->value_empty())
return;
if (!vc::isRealOrNoneCategory(LR->getCategory()))
return; // don't allocate register to EM or RM value
LLVM_DEBUG(dbgs() << "Allocating "; LR->print(dbgs()); dbgs() << "\n");
SimpleValue V = *LR->value_begin();
Type *Ty = V.getType();
if (auto *GV = dyn_cast<GlobalVariable>(V.getValue())) {
// No register for predefined variable.
if (vc::PredefVar::isPV(*GV))
return;
if (GV->hasAttribute(genx::FunctionMD::GenXVolatile))
Ty = Ty->getPointerElementType();
}
IGC_ASSERT(!Ty->isVoidTy());
if (LR->Category == vc::RegCategory::Predicate) {
auto *VT = dyn_cast<IGCLLVM::FixedVectorType>(Ty);
IGC_ASSERT_MESSAGE((!VT || genx::exactLog2(VT->getNumElements()) >= 0),
"invalid predicate width");
(void)VT;
}
// Allocate the register, also setting the alignment.
Reg *NewReg =
createReg(LR->Category, Ty, DONTCARESIGNED, LR->getLogAlignment());
// Assign to the values. If any value is an input arg, ensure the register
// gets its type, to avoid needing an alias for an input arg.
const Function *FGHead = FG->getHead();
for (auto &&Val : LR->getValues()) {
LLVM_DEBUG(dbgs() << "Allocating reg " << NewReg->Num << " for "
<< *Val.getValue() << " in FG for " << FGHead->getName()
<< "\n");
IGC_ASSERT(!RegMap.count(Val));
RegMap[Val] = NewReg;
if (isa<Argument>(Val.getValue()))
NewReg->Ty = Val.getType();
}
}
/***********************************************************************
* calcOverrideType : get underlying type for vectors/global variables
*/
static Type *calcOverrideType(Type *OverrideType, const SimpleValue &V,
const GenXVisaRegAlloc::Reg *R,
const DataLayout *DL) {
if (!OverrideType)
OverrideType = V.getType();
if (OverrideType->isPointerTy()) {
auto GV = dyn_cast<GlobalVariable>(V.getValue());
if (GV && GV->hasAttribute(genx::FunctionMD::GenXVolatile))
OverrideType = OverrideType->getPointerElementType();
}
OverrideType = &vc::fixDegenerateVectorType(*OverrideType);
if (R->Num < VISA_NUM_RESERVED_REGS)
OverrideType =
genx::changeVectorType(R->Ty, OverrideType->getScalarType(), DL);
return OverrideType;
}
/***********************************************************************
* calcAlias : find suitable by type alias
* return flag, indicates success of search and alias:
* for success - return suitable one and for fail - last in linked list
*/
static std::tuple<bool, GenXVisaRegAlloc::Reg *>
calcAlias(const Type *OverrideType, const Signedness &Signed, bool IsBF,
GenXVisaRegAlloc::Reg *R) {
GenXVisaRegAlloc::Reg *LastAlias = nullptr;
for (GenXVisaRegAlloc::Reg *CurAlias = R; CurAlias;
CurAlias = CurAlias->NextAlias) {
LastAlias = CurAlias;
Type *ExistingType = CurAlias->Ty;
ExistingType = &vc::fixDegenerateVectorType(*ExistingType);
if (ExistingType == OverrideType &&
CurAlias->Num >= VISA_NUM_RESERVED_REGS &&
(CurAlias->Signed == Signed || Signed == DONTCARESIGNED) &&
CurAlias->IsBF == IsBF) {
LLVM_DEBUG(dbgs() << "Using alias: "; CurAlias->print(dbgs());
dbgs() << "\n");
return std::make_tuple(true, CurAlias);
}
}
return std::make_tuple(false, LastAlias);
}
/***********************************************************************
* getRegForValueUntyped : get the vISA reg allocated to a particular
* value, ignoring signedness and type
*
* This is a const method so it can be called from print().
*/
GenXVisaRegAlloc::Reg *
GenXVisaRegAlloc::getRegForValueUntyped(SimpleValue V) const {
LLVM_DEBUG(dbgs() << "getRegForValueUntyped " << *(V.getValue()) << "\n");
const auto I = RegMap.find(V);
if (I != RegMap.end())
return I->second;
// Check if it's predefined variables.
if (GenXIntrinsic::getGenXIntrinsicID(V.getValue()) ==
GenXIntrinsic::genx_predefined_surface) {
auto CI = cast<CallInst>(V.getValue());
unsigned Id = cast<ConstantInt>(CI->getArgOperand(0))->getZExtValue();
IGC_ASSERT_MESSAGE(Id < 4, "Invalid predefined surface ID!");
IGC_ASSERT_MESSAGE(
PredefinedSurfaceRegs.size() == VISA_NUM_RESERVED_SURFACES,
"Predefined surface registers have not been initialized");
return PredefinedSurfaceRegs[Id];
} else if (GenXIntrinsic::isReadWritePredefReg(V.getValue())) {
auto CI = cast<CallInst>(V.getValue());
return PredefinedRegs[cast<ConstantInt>(CI->getArgOperand(0))
->getZExtValue() -
PreDefined_Vars::PREDEFINED_ARG];
}
return nullptr;
}
/***********************************************************************
* getRegForValueOrNull : get the vISA reg allocated to a particular Value
*
* Enter: V = value (Argument or Instruction) to get register for
* Signed = request for signed or unsigned
* OverrideType = 0 else override type of value (used for bitcast)
*
* Called from GenXCisaBuilder to get the register for an
* operand. The operand type might not match the register type (say a
* bitcast has been coalesced, or the same integer value is used
* unsigned in one place and signed in another), in which case we
* find/create a vISA register alias.
*/
GenXVisaRegAlloc::Reg *
GenXVisaRegAlloc::getRegForValueOrNull(SimpleValue V, Signedness Signed,
Type *OverrideType, bool IsBF) const {
LLVM_DEBUG(dbgs() << "getRegForValueOrNull " << *(V.getValue()) << "\n");
Reg *R = getRegForValueUntyped(V);
if (!R)
return nullptr; // no register allocated
if (R->Category != vc::RegCategory::General)
return R;
LLVM_DEBUG(dbgs() << "Found reg " << R->Num << "\n");
OverrideType = calcOverrideType(OverrideType, V, R, DL);
auto [AliasFound, LastAlias] = calcAlias(OverrideType, Signed, IsBF, R);
if (AliasFound)
return LastAlias;
return nullptr;
}
/***********************************************************************
* getOrCreateRegForValue : get or create the vISA reg allocated to a particular
* Value
*
* Enter: V = value (Argument or Instruction) to get register for
* Signed = request for signed or unsigned
* OverrideType = 0 else override type of value (used for bitcast)
*
* Called from GenXCisaBuilder to get the register for an
* operand. The operand type might not match the register type (say a
* bitcast has been coalesced, or the same integer value is used
* unsigned in one place and signed in another), in which case we
* find/create a vISA register alias.
*/
GenXVisaRegAlloc::Reg *
GenXVisaRegAlloc::getOrCreateRegForValue(SimpleValue V, Signedness Signed,
Type *OverrideType, bool IsBF) {
LLVM_DEBUG(dbgs() << "getOrCreateRegForValue " << *(V.getValue()) << "\n");
Reg *R = getRegForValueOrNull(V, Signed, OverrideType, IsBF);
if (R)
return R;
R = getRegForValueUntyped(V);
if (!R)
return nullptr; // no register allocated
OverrideType = calcOverrideType(OverrideType, V, R, DL);
// Run out of aliases. Add a new one.
Reg *NewReg =
createReg(vc::RegCategory::General, OverrideType, Signed, 0, R, IsBF);
auto [AliasFound, LastAlias] = calcAlias(OverrideType, Signed, IsBF, R);
// If alias exist - it must returned from getRegForValueOrNull above
IGC_ASSERT(!AliasFound);
LastAlias->NextAlias = NewReg;
LLVM_DEBUG(dbgs() << "New register: "; NewReg->print(dbgs()); dbgs() << "\n");
return NewReg;
}
/***********************************************************************
* getSigned : get the signedness of a register
*
* If the register has byte type and is currently don't care signedness, this
* arbitrarily picks unsigned. We do that because having a byte mov with
* different signedness between source and destination can make the jitter
* generate less efficient code.
*/
genx::Signedness GenXVisaRegAlloc::getSigned(const Reg *R) const {
return (R && R->Category == vc::RegCategory::General) ? R->Signed
: DONTCARESIGNED;
}
// addRetIPArgument : Add the RetIP argument required for caller kernels and
// their caller.
void GenXVisaRegAlloc::addRetIPArgument() {
RetIP =
createReg(vc::RegCategory::General, Type::getInt64Ty(FG->getContext()));
}
/***********************************************************************
* TypeDetails constructor
*
* Enter: Ty = LLVM type
* Signedness = whether signed type required
*/
TypeDetails::TypeDetails(const DataLayout &DL, Type *Ty, Signedness Signed,
bool IsBF)
: DL(DL) {
Type *ElementTy = Ty;
NumElements = 1;
if (auto *VT = dyn_cast<IGCLLVM::FixedVectorType>(ElementTy)) {
ElementTy = VT->getElementType();
NumElements = VT->getNumElements();
}
if (IntegerType *IT = dyn_cast<IntegerType>(ElementTy)) {
BytesPerElement = IT->getBitWidth() / 8;
if (Signed == UNSIGNED) {
switch (BytesPerElement) {
case 1: VisaType = ISA_TYPE_UB; break;
case 2: VisaType = ISA_TYPE_UW; break;
case 4: VisaType = ISA_TYPE_UD; break;
default: VisaType = ISA_TYPE_UQ; break;
}
} else {
switch (BytesPerElement) {
case 1: VisaType = ISA_TYPE_B; break;
case 2: VisaType = ISA_TYPE_W; break;
case 4: VisaType = ISA_TYPE_D; break;
default: VisaType = ISA_TYPE_Q; break;
}
}
} else if (ElementTy->isHalfTy()) {
VisaType = IsBF ? ISA_TYPE_BF : ISA_TYPE_HF;
BytesPerElement = 2;
} else if (ElementTy->isFloatTy()) {
VisaType = ISA_TYPE_F;
BytesPerElement = 4;
} else if (auto PT = dyn_cast<PointerType>(ElementTy)) {
BytesPerElement = DL.getPointerTypeSize(PT);
if (BytesPerElement == 4 || PT->getPointerElementType()->isFunctionTy())
VisaType = ISA_TYPE_UD;
else if (BytesPerElement == 8)
VisaType = ISA_TYPE_UQ;
else
report_fatal_error("unsupported pointer type size");
} else {
IGC_ASSERT(ElementTy->isDoubleTy());
VisaType = ISA_TYPE_DF;
BytesPerElement = 8;
}
if (NumElements > 16384 || NumElements * BytesPerElement > 16384 * 8)
report_fatal_error("Variable too big");
}
struct LiveRangeAndLength {
const LiveRange *LR;
unsigned Length;
LiveRangeAndLength(const LiveRange *LR, unsigned Length)
: LR(LR), Length(Length) {}
bool operator<(const LiveRangeAndLength &Rhs) const {
return Length > Rhs.Length;
}
LiveRangeAndLength &operator=(const LiveRangeAndLength &Rhs) = default;
};
static std::vector<LiveRangeAndLength>
getSortedLRL(const GenXVisaRegAlloc::LRCPtrVect &LRs) {
std::vector<LiveRangeAndLength> Result;
std::transform(LRs.begin(), LRs.end(), std::back_inserter(Result),
[](const auto &LR) {
const bool WithWeak = false;
return LiveRangeAndLength{LR, LR->getLength(WithWeak)};
});
std::sort(Result.begin(), Result.end());
return Result;
}
/***********************************************************************
* print : dump the state of the pass. This is used by -genx-dump-regalloc
*/
void GenXVisaRegAlloc::print(raw_ostream &OS, const FunctionGroup *FG) const {
// Get the live ranges in a reproducible order, and sort them by "length"
// (the total number of instructions that the live range covers).
const auto *FGInfo = Stats.getLRs(FG);
if (!FGInfo) {
OS << "no RA info!\n";
return;
}
auto LRLs = getSortedLRL(*FGInfo);
// Dump them. Also keep count of the register pressure at each
// instruction number.
std::vector<unsigned> Pressure;
std::vector<unsigned> FlagPressure;
for (auto i = LRLs.begin(), e = LRLs.end(); i != e; ++i) {
// Dump a single live range.
const LiveRange *LR = i->LR;
SimpleValue SV = *LR->value_begin();
Reg *RN = getRegForValueUntyped(SV);
IGC_ASSERT_MESSAGE(RN, "No register allocated for LR");
OS << "[";
RN->print(OS);
Type *ElTy = IndexFlattener::getElementType(SV.getValue()->getType(),
SV.getIndex());
unsigned Bytes = vc::getTypeSize(ElTy).inBytes();
bool IsFlag = ElTy->getScalarType()->isIntegerTy(1);
OS << "] (" << Bytes << " bytes, length " << i->Length <<") ";
// Dump some indication of what the live range is. For a kernel argument,
// show its name. For an instruction with debug info, show the location.
// We try and find the earliest definition with debug info to show.
unsigned BestNum = UINT_MAX;
Instruction *BestInst = nullptr;
Argument *KernelArg = nullptr;
for (auto i = LR->value_begin(), e = LR->value_end(); i != e; ++i) {
Value *V = i->getValue();
if (auto Arg = dyn_cast<Argument>(V)) {
if (Arg->getParent() == FG->getHead()) {
KernelArg = Arg;
break;
}
} else {
auto Inst = cast<Instruction>(V);
if (!isa<PHINode>(Inst)) {
unsigned Num = Numbering->getNumber(Inst);
if (Num < BestNum) {
auto DL = Inst->getDebugLoc();
if (DL) {
BestNum = Num;
BestInst = Inst;
}
}
}
}
}
if (KernelArg)
OS << KernelArg->getName();
else if (BestInst) {
const DebugLoc &DL = BestInst->getDebugLoc();
if (DL)
OS << DL->getFilename() << ":" << DL.getLine();
else
OS << "<no_dbg_loc>";
}
// Dump the live range segments, and add each to the pressure score.
OS << ":";
LR->printSegments(OS);
for (auto si = LR->begin(), se = LR->end(); si != se; ++si) {
if (si->getEnd() >= Pressure.size()) {
Pressure.resize(si->getEnd() + 1, 0);
FlagPressure.resize(si->getEnd() + 1, 0);
}
for (unsigned n = si->getStart(); n != si->getEnd(); ++n) {
Pressure[n] += Bytes;
if (IsFlag)
FlagPressure[n] += Bytes;
}
}
OS << "\n";
}
OS << "\n";
// Prepare to print register pressure info. First we need to compute a
// mapping from instruction number to instruction. Only bother with
// instructions with debug info.
std::vector<Instruction *> Insts;
for (auto fgi = FG->begin(), fge = FG->end(); fgi != fge; ++fgi) {
Function *F = *fgi;
for (auto fi = F->begin(), fe = F->end(); fi != fe; ++fi) {
BasicBlock *BB = &*fi;
for (auto bi = BB->begin(), be = BB->end(); bi != be; ++bi) {
Instruction *Inst = &*bi;
if (!Inst->getDebugLoc()) {
unsigned Num = Numbering->getNumber(Inst);
if (Num >= Insts.size())
Insts.resize(Num + 1, nullptr);
Insts[Num] = Inst;
}
}
}
}
OS << "Register pressure (bytes):\n";
unsigned Last = 0;
bool HadInst = false;
Function *LastFunc = nullptr;
for (unsigned n = 0; n != Pressure.size(); ++n) {
if (Pressure[n]) {
Instruction *Inst = nullptr;
if (n < Insts.size())
Inst = Insts[n];
if (Pressure[n] != Last)
HadInst = false;
if (Pressure[n] != Last || (!HadInst && Inst)) {
if (Inst && Inst->getParent()->getParent() != LastFunc) {
LastFunc = Inst->getParent()->getParent();
OS << "In " << LastFunc->getName() << "\n";
}
Last = Pressure[n];
OS << Pressure[n] << " at " << n;
if (Inst) {
HadInst = true;
OS << " ";
const DebugLoc &DL = Inst->getDebugLoc();
DL.print(OS);
}
OS << "\n";
}
}
}
OS << "Flag pressure (bytes):\n";
Last = 0;
HadInst = false;
for (unsigned n = 0; n != FlagPressure.size(); ++n) {
Instruction *Inst = nullptr;
if (n < Insts.size())
Inst = Insts[n];
if (FlagPressure[n] != Last)
HadInst = false;
if (FlagPressure[n] != Last || (!HadInst && Inst)) {
Last = FlagPressure[n];
OS << FlagPressure[n] << " at " << n;
if (Inst) {
HadInst = true;
const DebugLoc &DL = Inst->getDebugLoc();
if (DL)
OS << " " << DL->getFilename() << ":" << DL.getLine();
else
OS << " <no_dbg_loc>";
}
OS << "\n";
}
}
}
/***********************************************************************
* RegNum::print : print a regnum
*/
void GenXVisaRegAlloc::Reg::print(raw_ostream &OS) const {
OS << vc::getRegCategoryShortName(Category);
OS << Num;
}
const GenXVisaRegAlloc::LRCPtrVect *
GenXVisaRegAlloc::RegAllocStats::getLRs(const FunctionGroup *FG) const {
auto LRsIt = LRs.find(FG);
if (LRsIt == LRs.end())
return nullptr;
return &LRsIt->second;
}
void GenXVisaRegAlloc::RegAllocStats::recordLRs(const FunctionGroup *FG,
const LRPtrVect &FGLR) {
auto &Storage = LRs[FG];
IGC_ASSERT(Storage.empty());
std::copy(FGLR.begin(), FGLR.end(), std::back_inserter(Storage));
}
|