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 1062 1063 1064 1065 1066 1067 1068
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2018-2022 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
#include <sstream>
#include <iomanip>
#include "common/LLVMWarningsPush.hpp"
#include <llvm/Support/ScaledNumber.h>
#include <llvm/Demangle/Demangle.h>
#include <llvm/IR/DebugInfo.h>
#include "llvmWrapper/IR/LLVMContext.h"
#include "common/LLVMWarningsPop.hpp"
#include "Compiler/CISACodeGen/ShaderCodeGen.hpp"
#include "Compiler/CISACodeGen/OpenCLKernelCodeGen.hpp"
#include "Compiler/CodeGenPublic.h"
#include "Probe/Assertion.h"
#if LLVM_VERSION_MAJOR >= 11
#include <llvm/IR/LLVMRemarkStreamer.h>
#endif
namespace IGC
{
struct RetryState
{
bool allowAddrArithCloning;
bool allowLICM;
bool allowCodeSinking;
bool allowAddressArithmeticSinking;
bool allowSimd32Slicing;
bool allowPromotePrivateMemory;
bool allowVISAPreRAScheduler;
bool allowLargeURBWrite;
bool allowConstantCoalescing;
bool allowLargeGRF;
bool allowLoadSinking;
bool forceIndirectCallsInSyncRT;
unsigned nextState;
};
static const RetryState RetryTable[] = {
// adrCl licm codSk AdrSk Slice PrivM VISAP URBWr Coals GRF loadSk, SyncRT
{ false, true, true, false, false, true, true, true, true, false, false, false, 1 },
{ true, false, true, true, true, false, false, false, false, true, true, true, 500 }
};
static constexpr size_t RetryTableSize = sizeof(RetryTable) / sizeof(RetryState);
RetryManager::RetryManager() : enabled(false), perKernel(false)
{
firstStateId = IGC_GET_FLAG_VALUE(RetryManagerFirstStateId);
stateId = firstStateId;
prevStateId = 500;
shaderType = ShaderType::UNKNOWN;
IGC_ASSERT(stateId < RetryTableSize);
}
bool RetryManager::AdvanceState()
{
if (!enabled || IGC_IS_FLAG_ENABLED(DisableRecompilation))
{
return false;
}
IGC_ASSERT(stateId < RetryTableSize);
prevStateId = stateId;
stateId = RetryTable[stateId].nextState;
return (stateId < RetryTableSize);
}
unsigned RetryManager::GetPerFuncRetryStateId(Function* F) const
{
if (IGC_GET_FLAG_VALUE(AllowStackCallRetry) == 2 &&
F != nullptr &&
prevStateId < RetryTableSize &&
!PerFuncRetrySet.empty())
{
std::string FName = StripCloneName(F->getName().str());
return (PerFuncRetrySet.count(FName) != 0) ? stateId : prevStateId;
}
return stateId;
}
bool RetryManager::AllowLICM(Function* F) const
{
unsigned id = GetPerFuncRetryStateId(F);
IGC_ASSERT(id < RetryTableSize);
// Since we currently can't enable/disable LICM per-function, enabling LICM
// when retrying for stackcalls seems to give better performance. So always
// enable when recompiling with stackcalls.
return RetryTable[id].allowLICM ||
(shaderType == ShaderType::OPENCL_SHADER && !PerFuncRetrySet.empty());
}
bool RetryManager::AllowAddressArithmeticSinking(Function* F) const
{
unsigned id = GetPerFuncRetryStateId(F);
IGC_ASSERT(id < RetryTableSize);
return RetryTable[id].allowAddressArithmeticSinking;
}
bool RetryManager::AllowPromotePrivateMemory(Function* F) const
{
unsigned id = GetPerFuncRetryStateId(F);
IGC_ASSERT(id < RetryTableSize);
return RetryTable[id].allowPromotePrivateMemory;
}
bool RetryManager::AllowVISAPreRAScheduler(Function* F) const
{
unsigned id = GetPerFuncRetryStateId(F);
IGC_ASSERT(id < RetryTableSize);
return RetryTable[id].allowVISAPreRAScheduler;
}
bool RetryManager::AllowCodeSinking(Function* F) const
{
unsigned id = GetPerFuncRetryStateId(F);
IGC_ASSERT(id < RetryTableSize);
return RetryTable[id].allowCodeSinking;
}
bool RetryManager::AllowCloneAddressArithmetic(Function* F) const
{
unsigned id = GetPerFuncRetryStateId(F);
IGC_ASSERT(id < RetryTableSize);
return RetryTable[id].allowAddrArithCloning;
}
bool RetryManager::AllowSimd32Slicing(Function* F) const
{
unsigned id = GetPerFuncRetryStateId(F);
IGC_ASSERT(id < RetryTableSize);
return RetryTable[id].allowSimd32Slicing;
}
bool RetryManager::AllowLargeURBWrite(Function* F) const
{
unsigned id = GetPerFuncRetryStateId(F);
IGC_ASSERT(id < RetryTableSize);
return RetryTable[id].allowLargeURBWrite;
}
bool RetryManager::AllowConstantCoalescing(Function* F) const
{
unsigned id = GetPerFuncRetryStateId(F);
IGC_ASSERT(id < RetryTableSize);
return RetryTable[id].allowConstantCoalescing;
}
bool RetryManager::AllowLargeGRF(Function* F) const
{
unsigned id = GetPerFuncRetryStateId(F);
IGC_ASSERT(id < RetryTableSize);
return RetryTable[id].allowLargeGRF;
}
bool RetryManager::ForceIndirectCallsInSyncRT() const
{
unsigned id = GetRetryId();
IGC_ASSERT(id < RetryTableSize);
return RetryTable[id].forceIndirectCallsInSyncRT;
}
bool RetryManager::AllowLoadSinking(Function* F) const
{
unsigned id = GetPerFuncRetryStateId(F);
IGC_ASSERT(id < RetryTableSize);
return RetryTable[id].allowLoadSinking;
}
void RetryManager::SetFirstStateId(int id)
{
firstStateId = id;
}
bool RetryManager::IsFirstTry() const
{
return (stateId == firstStateId);
}
bool RetryManager::IsLastTry() const
{
return (!enabled ||
IGC_IS_FLAG_ENABLED(DisableRecompilation) ||
lastSpillSize < IGC_GET_FLAG_VALUE(AllowedSpillRegCount) ||
(stateId < RetryTableSize && RetryTable[stateId].nextState >= RetryTableSize));
}
bool RetryManager::Trigger2xGRFRetry() const
{
return (lastSpillSize > IGC_GET_FLAG_VALUE(CSSpillThreshold2xGRFRetry));
}
unsigned RetryManager::GetRetryId() const
{
return stateId;
}
void RetryManager::Enable(ShaderType ty)
{
enabled = true;
shaderType = ty;
}
// Disable retry
// If DisablePerKernel is true, disable retry for all kernels.
// If DisablePerKernel is false, this is no-op if per-Kernel retry is on,
// otherwise, disable retry for all kernels.
void RetryManager::Disable(bool DisablePerKernel)
{
if (DisablePerKernel || !perKernel)
{
enabled = false;
}
}
void RetryManager::SetSpillSize(unsigned int spillSize)
{
lastSpillSize = spillSize;
}
unsigned int RetryManager::GetLastSpillSize() const
{
return lastSpillSize;
}
void RetryManager::ClearSpillParams()
{
lastSpillSize = 0;
numInstructions = 0;
}
void RetryManager::Collect(CShaderProgram::UPtr pCurrent)
{
// Get previous kernel name
std::string funcName = pCurrent->getLLVMFunction()->getName().str();
// Delete/unattach from memory previous version of this kernel
// and attach new version
previousKernels[funcName] = std::move(pCurrent);
}
CShaderProgram* RetryManager::GetPrevious(
CShaderProgram* pCurrent,
bool ReleaseUPtr)
{
std::string funcName = pCurrent->getLLVMFunction()->getName().str();
if (previousKernels.find(funcName) !=
previousKernels.end())
{
if (ReleaseUPtr)
{
auto ptr = previousKernels[funcName].release();
previousKernels.erase(funcName);
return ptr;
}
else
{
return previousKernels[funcName].get();
}
}
return nullptr;
}
bool RetryManager::IsBetterThanPrevious(CShaderProgram* pCurrent, float threshold)
{
bool isBetter = true;
auto pPrevious = GetPrevious(pCurrent);
if (pPrevious)
{
auto simdToAnalysis = { SIMDMode::SIMD32, SIMDMode::SIMD16, SIMDMode::SIMD8 };
CShader* previousShader = nullptr;
CShader* currentShader = nullptr;
// Get shaders
for (auto simd : simdToAnalysis)
{
if (!previousShader && pPrevious->GetShader(simd) &&
(pPrevious->GetShader(simd)->ProgramOutput()->m_programSize > 0))
{
previousShader = pPrevious->GetShader(simd);
}
if (!currentShader && pCurrent->GetShader(simd) &&
(pCurrent->GetShader(simd)->ProgramOutput()->m_programSize > 0))
{
currentShader = pCurrent->GetShader(simd);
}
}
IGC_ASSERT(currentShader);
IGC_ASSERT(previousShader);
// basically a small work around, if we have high spilling kernel on our hands, we are not afraid to use
// pre-retry shader, when we have less spills than retry one has
unsigned int Threshold = IGC_GET_FLAG_VALUE(RetryRevertExcessiveSpillingKernelThreshold);
bool IsExcessiveSpillKernel = currentShader->m_spillSize >= Threshold;
float SpillCoefficient = float(IGC_GET_FLAG_VALUE(RetryRevertExcessiveSpillingKernelCoefficient)) / 100.0f;
if (IsExcessiveSpillKernel) threshold = SpillCoefficient;
// Check if current shader spill is larger than previous shader spill
// Threshold flag controls comparison tolerance - i.e. A threshold of 2.0 means that the
// current shader spill must be 2x larger than previous spill to be considered "better".
bool spillSizeBigger =
currentShader->m_spillSize > (unsigned int)(previousShader->m_spillSize * threshold);
if (spillSizeBigger)
{
// The previous shader was better, ignore any future retry compilation
isBetter = false;
}
}
return isBetter;
}
// save entry for given SIMD mode, to avoid recompile for next retry.
void RetryManager::SaveSIMDEntry(SIMDMode simdMode, CShader* shader)
{
auto entry = GetCacheEntry(simdMode);
IGC_ASSERT(entry);
if (entry)
{
entry->shader = shader;
}
}
CShader* RetryManager::GetSIMDEntry(SIMDMode simdMode)
{
auto entry = GetCacheEntry(simdMode);
IGC_ASSERT(entry);
return entry ? entry->shader : nullptr;
}
RetryManager::~RetryManager()
{
for (auto& it : cache)
{
if (it.shader)
{
delete it.shader;
}
}
}
bool RetryManager::AnyKernelSpills() const
{
return std::any_of(std::begin(cache), std::end(cache), [](const CacheEntry& entry) {
return entry.shader && entry.shader->m_spillCost > 0.0;
});
}
bool RetryManager::PickupKernels(CodeGenContext* cgCtx)
{
{
IGC_ASSERT_MESSAGE(0, "TODO for other shader types");
return true;
}
}
RetryManager::CacheEntry* RetryManager::GetCacheEntry(SIMDMode simdMode)
{
auto result = std::find_if(std::begin(cache), std::end(cache), [&simdMode](const CacheEntry& entry) {
return entry.simdMode == simdMode;
});
return result != std::end(cache) ? result : nullptr;
}
LLVMContextWrapper::LLVMContextWrapper(bool createResourceDimTypes)
: m_UserAddrSpaceMD(this)
{
if (createResourceDimTypes)
{
CreateResourceDimensionTypes(*this);
}
auto* basePtr = static_cast<llvm::LLVMContext*>(this);
// When opaque pointers are enabled through the environment setting, we
// expect the Context to convert any incoming typed pointers
// automatically. However, the build system has opaque pointers enabled
// in the FE/in the builtin bitcode, that setting gets force-enabled,
// as the context will only operate on opaque pointers anyway.
// TODO: For transition purposes, consider introducing an IGC internal
// option to tweak typed/opaque pointers with a precedence over the
// environment flag.
if (IGC::canOverwriteLLVMCtxPtrMode(basePtr))
{
IGCLLVM::setOpaquePointers(basePtr,
__IGC_OPAQUE_POINTERS_API_ENABLED ||
IGC_IS_FLAG_ENABLED(EnableOpaquePointersBackend));
}
}
void LLVMContextWrapper::AddRef()
{
refCount++;
}
void LLVMContextWrapper::Release()
{
refCount--;
if (refCount == 0)
{
delete this;
}
}
void CodeGenContext::print(llvm::raw_ostream& stream) const
{
#define PRINT_CTX_MEMBER(member) stream << "\n" << #member << ": " << member;
// TODO: Automate, see comment for CodeGenContext::print's declaration.
PRINT_CTX_MEMBER(HdcEnableIndexSize);
PRINT_CTX_MEMBER(LtoUsedMask);
PRINT_CTX_MEMBER(m_checkFastFlagPerInstructionInCustomUnsafeOptPass);
PRINT_CTX_MEMBER(m_ConstantBufferCount);
PRINT_CTX_MEMBER(m_ConstantBufferReplaceShaderPatternsSize);
PRINT_CTX_MEMBER(m_ConstantBufferReplaceSize);
PRINT_CTX_MEMBER(m_ConstantBufferUsageMask);
PRINT_CTX_MEMBER(m_constantPayloadNextAvailableGRFOffset);
PRINT_CTX_MEMBER(m_disableICBPromotion);
PRINT_CTX_MEMBER(m_dxbcCount);
PRINT_CTX_MEMBER(m_enableFunctionPointer);
PRINT_CTX_MEMBER(m_enableSampleMultiversioning);
PRINT_CTX_MEMBER(m_enableSimdVariantCompilation);
PRINT_CTX_MEMBER(m_enableSubroutine);
PRINT_CTX_MEMBER(m_floatDenormMode16);
PRINT_CTX_MEMBER(m_floatDenormMode32);
PRINT_CTX_MEMBER(m_floatDenormMode64);
PRINT_CTX_MEMBER(m_floatDenormModeBFTF);
PRINT_CTX_MEMBER(m_ForceEarlyZMathCheck);
PRINT_CTX_MEMBER(m_hasDPDivSqrtEmu);
PRINT_CTX_MEMBER(m_hasDPEmu);
PRINT_CTX_MEMBER(m_hasEmu64BitInsts);
PRINT_CTX_MEMBER(m_hasGlobalInPrivateAddressSpace);
PRINT_CTX_MEMBER(m_hasLegacyDebugInfo);
PRINT_CTX_MEMBER(m_hasStackCalls);
PRINT_CTX_MEMBER(m_hasVendorExtension);
PRINT_CTX_MEMBER(m_highPsRegisterPressure);
PRINT_CTX_MEMBER(m_inputCount);
PRINT_CTX_MEMBER(m_numGradientSinked);
PRINT_CTX_MEMBER(m_NumGRFPerThread);
PRINT_CTX_MEMBER(m_numPasses);
PRINT_CTX_MEMBER(m_sampler);
PRINT_CTX_MEMBER(m_SIMDInfo);
PRINT_CTX_MEMBER(m_src1RemovedForBlendOpt);
PRINT_CTX_MEMBER(m_tempCount);
PRINT_CTX_MEMBER(m_threadCombiningOptDone);
stream << "\n";
for (auto k : m_kernelsWithForcedRetry) {
stream << "\nKernel with forced retry: " << k->getName().str();
}
stream << "\n\n";
}
void CodeGenContext::initLLVMContextWrapper(bool createResourceDimTypes)
{
llvmCtxWrapper = new LLVMContextWrapper(createResourceDimTypes);
llvmCtxWrapper->AddRef();
}
llvm::LLVMContext* CodeGenContext::getLLVMContext() const {
return llvmCtxWrapper;
}
IGC::IGCMD::MetaDataUtils* CodeGenContext::getMetaDataUtils() const
{
IGC_ASSERT_MESSAGE(nullptr != m_pMdUtils, "Metadata Utils is not initialized");
return m_pMdUtils;
}
IGCLLVM::Module* CodeGenContext::getModule() const { return module; }
std::vector<std::string> CodeGenContext::getEntryNames() const { return entry_names; }
static void initCompOptionFromRegkey(CodeGenContext* ctx)
{
SetCurrentDebugHash(ctx->hash);
SetCurrentEntryPoints(ctx->entry_names);
CompOptions& opt = ctx->getModuleMetaData()->compOpt;
opt.pixelShaderDoNotAbortOnSpill =
IGC_IS_FLAG_ENABLED(PixelShaderDoNotAbortOnSpill);
opt.forcePixelShaderSIMDMode =
IGC_GET_FLAG_VALUE(ForcePixelShaderSIMDMode);
}
void CodeGenContext::setModule(llvm::Module* m)
{
module = (IGCLLVM::Module*)m;
this->setEntryNames(module);
m_pMdUtils = new IGC::IGCMD::MetaDataUtils(m);
modMD = new IGC::ModuleMetaData();
initCompOptionFromRegkey(this);
}
// get the entry point names from the root entrypoint node
void CodeGenContext::setEntryNames(llvm::Module* m)
{
for (auto& func : *m)
{
if (func.isDeclaration())
continue;
const auto funcName = func.getName().str();
if (!funcName.empty())
{
this->entry_names.emplace_back(funcName);
}
}
}
void CodeGenContext::clearEntryNames() {
this->entry_names.clear();
}
// Several clients explicitly delete module without resetting module to null.
// This causes the issue later when the dtor is invoked (trying to delete a
// dangling pointer again). This function is used to replace any explicit
// delete in order to prevent deleting dangling pointers happening.
void CodeGenContext::deleteModule()
{
delete m_pMdUtils;
delete modMD;
delete module;
m_pMdUtils = nullptr;
modMD = nullptr;
module = nullptr;
delete annotater;
annotater = nullptr;
}
IGC::ModuleMetaData* CodeGenContext::getModuleMetaData() const
{
return modMD;
}
unsigned int CodeGenContext::getRegisterPointerSizeInBits(unsigned int AS) const
{
unsigned int pointerSizeInRegister = 32;
switch (AS)
{
case ADDRESS_SPACE_GLOBAL:
case ADDRESS_SPACE_CONSTANT:
case ADDRESS_SPACE_GENERIC:
case ADDRESS_SPACE_GLOBAL_OR_PRIVATE:
pointerSizeInRegister =
getModule()->getDataLayout().getPointerSizeInBits(AS);
break;
case ADDRESS_SPACE_LOCAL:
case ADDRESS_SPACE_THREAD_ARG:
pointerSizeInRegister = 32;
break;
case ADDRESS_SPACE_PRIVATE:
if (getModuleMetaData()->compOpt.UseScratchSpacePrivateMemory)
{
pointerSizeInRegister = 32;
}
else
{
pointerSizeInRegister = ((type == ShaderType::OPENCL_SHADER) ?
getModule()->getDataLayout().getPointerSizeInBits(AS) : 64);
}
break;
default:
{
pointerSizeInRegister = 32;
}
break;
}
return pointerSizeInRegister;
}
bool CodeGenContext::enableFunctionCall() const
{
return (m_enableSubroutine || m_enableFunctionPointer);
}
/// Check for user functions in the module and enable the m_enableSubroutine flag if exists
void CodeGenContext::CheckEnableSubroutine(llvm::Module& M)
{
bool EnableSubroutine = false;
bool EnableStackFuncs = false;
for (auto& F : M)
{
if (F.isDeclaration() ||
F.use_empty() ||
isEntryFunc(getMetaDataUtils(), &F))
{
continue;
}
if (F.hasFnAttribute("KMPLOCK") ||
F.hasFnAttribute(llvm::Attribute::NoInline) ||
!F.hasFnAttribute(llvm::Attribute::AlwaysInline))
{
EnableSubroutine = true;
if (F.hasFnAttribute("visaStackCall") && !F.user_empty())
{
EnableStackFuncs = true;
}
}
}
m_enableSubroutine = EnableSubroutine;
m_hasStackCalls |= EnableStackFuncs;
}
// check if DP emu is required
void CodeGenContext::checkDPEmulationEnabled()
{
// TODO: the method should also check DivSqrt Emulation Mode
if ((IGC_IS_FLAG_ENABLED(ForceDPEmulation) ||
(m_DriverInfo.NeedFP64(platform.getPlatformInfo().eProductFamily) && platform.hasNoFP64Inst())) ||
(getCompilerOption().FP64GenEmulationEnabled && platform.emulateFP64ForPlatformsWithoutHWSupport()))
{
m_hasDPEmu = true;
}
if (getCompilerOption().FP64GenConvEmulationEnabled && platform.emulateFP64ForPlatformsWithoutHWSupport())
{
m_hasDPConvEmu = true;
}
}
void CodeGenContext::InitVarMetaData() {}
CodeGenContext::~CodeGenContext()
{
clear();
}
void CodeGenContext::clear()
{
m_enableSubroutine = false;
m_enableFunctionPointer = false;
delete modMD;
delete m_pMdUtils;
modMD = nullptr;
m_pMdUtils = nullptr;
delete module;
llvmCtxWrapper->Release();
module = nullptr;
llvmCtxWrapper = nullptr;
}
void CodeGenContext::clearMD()
{
delete modMD;
delete m_pMdUtils;
modMD = nullptr;
m_pMdUtils = nullptr;
}
static const llvm::Function *getRelatedFunction(const llvm::Value *value)
{
if (value == nullptr)
return nullptr;
if (const llvm::Function *F = llvm::dyn_cast<llvm::Function>(value)) {
return F;
}
if (const llvm::Argument *A = llvm::dyn_cast<llvm::Argument>(value)) {
return A->getParent();
}
if (const llvm::BasicBlock *BB = llvm::dyn_cast<llvm::BasicBlock>(value)) {
return BB->getParent();
}
if (const llvm::Instruction *I = llvm::dyn_cast<llvm::Instruction>(value)) {
return I->getParent()->getParent();
}
return nullptr;
}
static bool isEntryPoint(const CodeGenContext *ctx, const llvm::Function *F)
{
if (F == nullptr) {
return false;
}
auto& FuncMD = ctx->getModuleMetaData()->FuncMD;
auto FuncInfo = FuncMD.find(const_cast<llvm::Function *>(F));
if (FuncInfo == FuncMD.end()) {
return false;
}
const FunctionMetaData* MD = &FuncInfo->second;
return MD->functionType == KernelFunction;
}
static void findCallingKernels( const CodeGenContext *ctx,
const llvm::Function *F,
llvm::SmallPtrSetImpl<const llvm::Function *> &kernels,
SmallPtrSet<const llvm::Function*, 32>& visited)
{
if (F == nullptr || kernels.count(F))
return;
// Check if function was already visited during search
if (visited.find(F) != visited.end())
return;
visited.insert(F);
for (const llvm::User *U : F->users()) {
auto *CI = llvm::dyn_cast<llvm::CallInst>(U);
if (CI == nullptr)
continue;
if (CI->getCalledFunction() != F)
continue;
const llvm::Function *caller = getRelatedFunction(CI);
if (isEntryPoint(ctx, caller)) {
kernels.insert(caller);
continue;
}
// Caller is not a kernel, try to check which kerneles might
// be calling it:
findCallingKernels(ctx, caller, kernels, visited);
}
}
static bool handleOpenMPDemangling(const std::string &name, std::string *strippedName) {
// OpenMP mangled names have following structure:
//
// __omp_offloading_DD_FFFF_PP_lBB
//
// where DD_FFFF is an ID unique to the file (device and file IDs), PP is the
// mangled name of the function that encloses the target region and BB is the
// line number of the target region.
if (name.rfind("__omp_offloading_", 0) != 0) {
return false;
}
size_t offset = sizeof "__omp_offloading_";
offset = name.find('_', offset + 1); // Find end of DD.
if (offset == std::string::npos)
return false;
offset = name.find('_', offset + 1); // Find end of FFFF.
if (offset == std::string::npos)
return false;
const size_t start = offset + 1;
const size_t end = name.rfind('_'); // Find beginning of lBB.
if (end == std::string::npos)
return false;
*strippedName = name.substr(start, end - start);
return true;
}
bool CodeGenContext::HasFuncExpensiveLoop(llvm::Function* pFunc)
{
if (m_FuncHasExpensiveLoops.find(pFunc) !=
m_FuncHasExpensiveLoops.end())
{
return m_FuncHasExpensiveLoops[pFunc];
}
return false;
}
static std::string demangleFuncName(const std::string &rawName) {
// OpenMP adds additional prefix and suffix to the mangling scheme,
// remove it if present.
std::string name;
if (!handleOpenMPDemangling(rawName, &name)) {
// If OpenMP demangling didn't succeed just proceed with received
// symbol name
name = rawName;
}
#if LLVM_VERSION_MAJOR >= 10
return llvm::demangle(name);
#else
char *demangled = nullptr;
demangled = llvm::itaniumDemangle(name.c_str(), nullptr, nullptr, nullptr);
if (demangled == nullptr) {
demangled = llvm::microsoftDemangle(name.c_str(), nullptr, nullptr, nullptr);
}
if (demangled == nullptr) {
return name;
}
std::string result = demangled;
std::free(demangled);
return result;
#endif
}
void CodeGenContext::EmitMessage(std::ostream &OS, const char* messagestr, const llvm::Value* context) const
{
OS << messagestr;
// Try to get debug location to print out the relevant info.
if (const llvm::Instruction *I = llvm::dyn_cast_or_null<llvm::Instruction>(context)) {
if (const llvm::DILocation *DL = I->getDebugLoc()) {
OS << "\nin file: " << DL->getFilename().str() << ":" << DL->getLine() << "\n";
}
}
// Try to find function related to given context
// to print more informative error message.
if (const llvm::Function *F = getRelatedFunction(context)) {
// If the function is a kernel just print the kernel name.
if (isEntryPoint(this, F)) {
OS << "\nin kernel: '" << demangleFuncName(std::string(F->getName())) << "'";
// If the function is not a kernel try to print all kernels that
// might be using this function.
} else {
llvm::SmallPtrSet<const llvm::Function *, 16> kernels;
llvm::SmallPtrSet<const llvm::Function*, 32> visited;
findCallingKernels(this, F, kernels, visited);
const size_t kernelsCount = kernels.size();
OS << "\nin function: '" << demangleFuncName(std::string(F->getName())) << "' ";
if (kernelsCount == 0) {
OS << "called indirectly by at least one of the kernels.\n";
} else if (kernelsCount == 1) {
const llvm::Function *kernel = *kernels.begin();
OS << "called by kernel: '" << demangleFuncName(std::string(kernel->getName())) << "'\n";
} else {
OS << "called by kernels:\n";
for (const llvm::Function *kernel : kernels) {
OS << " - '" << demangleFuncName(std::string(kernel->getName())) << "'\n";
}
}
}
}
}
void CodeGenContext::EmitError(const char* errorstr, const llvm::Value *context)
{
this->oclErrorMessage << "\nerror: ";
EmitMessage(this->oclErrorMessage, errorstr, context);
this->oclErrorMessage << "\nerror: backend compiler failed build.\n";
}
void CodeGenContext::EmitWarning(const char* warningstr, const llvm::Value* context)
{
this->oclWarningMessage << "\nwarning: ";
EmitMessage(this->oclWarningMessage, warningstr, context);
this->oclWarningMessage << "\n";
}
CompOptions& CodeGenContext::getCompilerOption()
{
return getModuleMetaData()->compOpt;
}
void CodeGenContext::resetOnRetry()
{
m_tempCount = 0;
}
int32_t CodeGenContext::getNumThreadsPerEU() const
{
return -1;
}
uint32_t CodeGenContext::getExpGRFSize() const
{
return 0;
}
bool CodeGenContext::enableZEBinary() const
{
return false;
}
/// parameter "returnDefault" controls what to return when
/// there is no user-forced setting
uint32_t CodeGenContext::getNumGRFPerThread(bool returnDefault)
{
if (m_NumGRFPerThread)
return m_NumGRFPerThread;
if (IGC_GET_FLAG_VALUE(TotalGRFNum) != 0)
{
m_NumGRFPerThread = IGC_GET_FLAG_VALUE(TotalGRFNum);
return m_NumGRFPerThread;
}
if (getModuleMetaData()->csInfo.forceTotalGRFNum != 0)
{
m_NumGRFPerThread = getModuleMetaData()->csInfo.forceTotalGRFNum;
return m_NumGRFPerThread;
}
// read value from CompOptions first
DWORD GRFNum4RQToUse = getModuleMetaData()->compOpt.ForceLargeGRFNum4RQ ? 256 : 0;
// override if reg key value is set
GRFNum4RQToUse = IGC_IS_FLAG_ENABLED( TotalGRFNum4RQ ) ?
IGC_GET_FLAG_VALUE( TotalGRFNum4RQ ) : GRFNum4RQToUse;
if (hasSyncRTCalls() && GRFNum4RQToUse != 0)
{
m_NumGRFPerThread = GRFNum4RQToUse;
return m_NumGRFPerThread;
}
if (this->type == ShaderType::COMPUTE_SHADER && IGC_GET_FLAG_VALUE(TotalGRFNum4CS) != 0)
{
m_NumGRFPerThread = IGC_GET_FLAG_VALUE(TotalGRFNum4CS);
return m_NumGRFPerThread;
}
return (returnDefault ? DEFAULT_TOTAL_GRF_NUM : 0);
}
bool CodeGenContext::forceGlobalMemoryAllocation() const
{
return false;
}
bool CodeGenContext::allocatePrivateAsGlobalBuffer() const
{
return false;
}
bool CodeGenContext::noLocalToGenericOptionEnabled() const
{
return false;
}
bool CodeGenContext::mustDistinguishBetweenPrivateAndGlobalPtr() const
{
return false;
}
bool CodeGenContext::enableTakeGlobalAddress() const
{
return false;
}
int16_t CodeGenContext::getVectorCoalescingControl() const
{
return 0;
}
uint32_t CodeGenContext::getPrivateMemoryMinimalSizePerThread() const
{
return 0;
}
uint32_t CodeGenContext::getIntelScratchSpacePrivateMemoryMinimalSizePerThread() const
{
return 0;
}
bool CodeGenContext::isPOSH() const
{
return this->getModule()->getModuleFlag(
"IGC::PositionOnlyVertexShader") != nullptr;
}
bool CodeGenContext::isBufferBoundsChecking() const
{
return false;
}
void CodeGenContext::setFlagsPerCtx()
{
}
// Returns the SIMD mode of a kernel based on a platform and settings flags.
// VS, DS, HS, GS currently supported only.
SIMDMode CodeGenContext::GetSIMDMode()
{
SIMDMode simdMode = SIMDMode::UNKNOWN;
bool isGeomFF = (type == ShaderType::VERTEX_SHADER) ||
(type == ShaderType::HULL_SHADER) ||
(type == ShaderType::DOMAIN_SHADER) ||
(type == ShaderType::GEOMETRY_SHADER);
if (isGeomFF)
{
// Step 1: get platform-dependent default mode.
{
simdMode = platform.getMinDispatchMode();
}
}
else
{
IGC_ASSERT_MESSAGE(0, "Incorrect shader type");
}
IGC_ASSERT_MESSAGE(!hasSyncRTCalls() || (simdMode <= platform.getPreferredRayQuerySIMDSize()),
"Unsupported SIMD mode for RayQuery");
return simdMode;
}
uint64_t CodeGenContext::getMinimumValidAddress() const
{
return 0;
}
// [used by shader dump] create unqiue id, starting from 1, for each
// entry function.
// Each entry function has 1-1 map b/w its name and its dump name.
void CodeGenContext::createFunctionIDs()
{
if (IGC_IS_FLAG_ENABLED(DumpUseShorterName) &&
m_functionIDs.empty() && module != nullptr && m_pMdUtils != nullptr)
{
int id = 0;
for (auto i = m_pMdUtils->begin_FunctionsInfo(), e = m_pMdUtils->end_FunctionsInfo(); i != e; ++i)
{
Function* pFunc = i->first;
// Skip non-entry functions.
if (!isEntryFunc(m_pMdUtils, pFunc))
{
continue;
}
// Use kernel name so that it is created once and will work for both the first and retry.
StringRef kernelName = pFunc->getName();
if (!kernelName.empty()) {
// entry without name will not be in the map (getFunctionID() will
// return 0. Thus, ID here starts from 1.
m_functionIDs[kernelName.str()] = ++id;
}
}
m_enableDumpUseShorterName = true;
}
}
// getFunctionDumpName() is invoked if DumpUseShorterName is set.
// Expect to be used for any shader (aka entry function).
std::string CodeGenContext::getFunctionDumpName(int functionId)
{
IGC_ASSERT(IGC_IS_FLAG_ENABLED(DumpUseShorterName));
std::stringstream ss;
ss << "entry_" << std::setfill('0') << std::setw(4) << functionId;
return ss.str();
}
int CodeGenContext::getFunctionID(Function* F)
{
StringRef kernelName = F->getName();
auto MI = m_functionIDs.find(kernelName.str());
if (MI == m_functionIDs.end()) {
return 0;
}
return MI->second;
}
void CodeGenContext::initializeRemarkEmitter(const ShaderHash & hash) {
#if LLVM_VERSION_MAJOR >= 11
//setting up optimization remark emitter
if (IGC_IS_FLAG_ENABLED(EnableRemarks))
{
std::string remark_file_name = IGC::Debug::DumpName("Remark_")
.Type(this->type)
.Hash(hash)
.Extension("yaml")
.str();
llvm::Expected<std::unique_ptr<llvm::ToolOutputFile>> RemarksFileOrErr =
setupLLVMOptimizationRemarks(*this->getLLVMContext(), remark_file_name, "",
"yaml", false, 0);
this->RemarksFile = std::move(*RemarksFileOrErr);
this->RemarksFile->keep();
}
#endif
}
}
|