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
|
// Class definition for parallel regions, a group of BasicBlocks that
// each kernel should run in parallel.
//
// Copyright (c) 2011 Universidad Rey Juan Carlos and
// 2012-2019 Pekka Jääskeläinen
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#include "CompilerWarnings.h"
IGNORE_COMPILER_WARNING("-Wmaybe-uninitialized")
#include <llvm/ADT/Twine.h>
POP_COMPILER_DIAGS
IGNORE_COMPILER_WARNING("-Wunused-parameter")
#include "llvm/IR/IRBuilder.h"
#include "llvm/IR/ValueSymbolTable.h"
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
#include "llvm/Transforms/Utils/Cloning.h"
#include "ParallelRegion.h"
#include "Barrier.h"
#include "Kernel.h"
#include "DebugHelpers.h"
POP_COMPILER_DIAGS
#include <algorithm>
#include <map>
#include <set>
#include <sstream>
#include "pocl_llvm_api.h"
using namespace std;
using namespace llvm;
using namespace pocl;
//#define DEBUG_REMAP
//#define DEBUG_REPLICATE
//#define DEBUG_PURGE
//#define DEBUG_CREATE
#include <iostream>
int ParallelRegion::idGen = 0;
ParallelRegion::ParallelRegion(int forcedRegionId) :
LocalIDXLoadInstr(NULL), LocalIDYLoadInstr(NULL), LocalIDZLoadInstr(NULL),
exitIndex_(0), entryIndex_(0), pRegionId(forcedRegionId)
{
if (forcedRegionId == -1)
pRegionId = idGen++;
}
/**
* Ensure all variables are named so they will be replicated and renamed
* correctly.
*/
void
ParallelRegion::GenerateTempNames(llvm::BasicBlock *bb)
{
for (llvm::BasicBlock::iterator i = bb->begin(), e = bb->end(); i != e; ++i)
{
llvm::Instruction *instr = &*i;
if (instr->hasName() || !instr->isUsedOutsideOfBlock(bb)) continue;
int tempCounter = 0;
std::string tempName = "";
do {
std::ostringstream name;
name << ".pocl_temp." << tempCounter;
++tempCounter;
tempName = name.str();
} while (bb->getParent()->getValueSymbolTable()->lookup(tempName) != NULL);
instr->setName(tempName);
}
}
// BarrierBlock *
// ParallelRegion::getEntryBarrier()
// {
// BasicBlock *entry = front();
// BasicBlock *barrier = entry->getSinglePredecessor();
// return cast<BarrierBlock> (barrier);
// }
ParallelRegion *
ParallelRegion::replicate(ValueToValueMapTy &map,
const Twine &suffix = "")
{
ParallelRegion *new_region = new ParallelRegion(pRegionId);
/* Because ParallelRegions are all replicated before they
are attached to the function, it can happen that
the same BB is replicated multiple times and it gets
the same name (only the BB name will be autorenamed
by LLVM). This causes the variable references to become
broken. This hack ensures the BB suffixes are unique
before cloning so each path gets their own value
names. Split points can be such paths.*/
static std::map<std::string, int> cloneCounts;
for (iterator i = begin(), e = end(); i != e; ++i) {
BasicBlock *block = *i;
GenerateTempNames(block);
std::ostringstream suf;
suf << suffix.str();
std::string block_name = block->getName().str() + "." + suffix.str();
if (cloneCounts[block_name] > 0)
{
suf << ".pocl_" << cloneCounts[block_name];
}
BasicBlock *new_block = CloneBasicBlock(block, map, suf.str());
cloneCounts[block_name]++;
// Insert the block itself into the map.
map[block] = new_block;
new_region->push_back(new_block);
#ifdef DEBUG_REPLICATE
std::cerr << "### clonee block:" << std::endl;
block->dump();
std::cerr << endl << "### cloned block: " << std::endl;
new_block->dump();
#endif
}
new_region->exitIndex_ = exitIndex_;
new_region->entryIndex_ = entryIndex_;
/* Remap here to get local variables fixed before they
are (possibly) overwritten by another clone of the
same BB. */
new_region->remap(map);
#ifdef DEBUG_REPLICATE
Verify();
#endif
LocalizeIDLoads();
return new_region;
}
void
ParallelRegion::remap(ValueToValueMapTy &map)
{
for (iterator i = begin(), e = end(); i != e; ++i) {
#ifdef DEBUG_REMAP
std::cerr << "### block before remap:" << std::endl;
(*i)->dump();
#endif
for (BasicBlock::iterator ii = (*i)->begin(), ee = (*i)->end();
ii != ee; ++ii)
RemapInstruction(&*ii, map,
RF_IgnoreMissingLocals | RF_NoModuleLevelChanges);
#ifdef DEBUG_REMAP
std::cerr << endl << "### block after remap: " << std::endl;
(*i)->dump();
#endif
}
}
void
ParallelRegion::chainAfter(ParallelRegion *region)
{
/* If we are replicating a conditional barrier region, the last block can be
an unreachable block to mark the impossible path. Skip it and choose the
correct branch instead.
TODO: why have the unreachable block there the first place? Could we just
not add it and fix the branch? */
BasicBlock *tail = region->exitBB();
auto t = tail->getTerminator();
if (isa<UnreachableInst>(t))
{
tail = region->at(region->size() - 2);
t = tail->getTerminator();
}
#ifdef LLVM_BUILD_MODE_DEBUG
if (t->getNumSuccessors() != 1) {
std::cout << "!!! trying to chain region" << std::endl;
this->dumpNames();
std::cout << "!!! after region" << std::endl;
region->dumpNames();
t->getParent()->dump();
assert (t->getNumSuccessors() == 1);
}
#endif
BasicBlock *successor = t->getSuccessor(0);
Function *F = successor->getParent();
#if LLVM_MAJOR < 16
Function::BasicBlockListType &bb_list =
F->getBasicBlockList();
for (iterator i = begin(), e = end(); i != e; ++i)
bb_list.insertAfter(tail->getIterator(), *i);
#else
for (iterator i = begin(), e = end(); i != e; ++i)
F->insert(tail->getIterator(), *i);
#endif
t->setSuccessor(0, entryBB());
t = exitBB()->getTerminator();
assert (t->getNumSuccessors() == 1);
t->setSuccessor(0, successor);
}
/**
* Removes known dead side exits from parallel regions.
*
* These occur with conditional barriers. The head of the path
* leading to the conditional barrier is shared by two PRs. The
* first work-item defines which path is taken (by definition the
* barrier is taken by all or none of the work-items). The blocks
* in the branches are in different regions which can contain branches
* to blocks that are in known non-taken path. This method replaces
* the targets of such branches with undefined BBs so they will be cleaned
* up by the optimizer.
*/
void
ParallelRegion::purge()
{
SmallVector<BasicBlock *, 4> new_blocks;
// Go through all the BBs in the region and check their branch
// targets, looking for destinations that are outside the region.
// Only the last block in the PR can now contain such branches.
for (iterator i = begin(), e = end(); i != e; ++i) {
// Exit block has a successor out of the region.
if (*i == exitBB())
continue;
#ifdef DEBUG_PURGE
std::cerr << "### block before purge:" << std::endl;
(*i)->dump();
#endif
auto t = (*i)->getTerminator();
for (unsigned ii = 0, ee = t->getNumSuccessors(); ii != ee; ++ii) {
BasicBlock *successor = t->getSuccessor(ii);
if (count(begin(), end(), successor) == 0) {
// This successor is not on the parallel region, purge.
#ifdef DEBUG_PURGE
std::cerr
<< "purging a branch to a block "
<< successor->getName().str() << " outside the region"
<< std::endl;
#endif
BasicBlock *unreachable =
BasicBlock::Create((*i)->getContext(),
(*i)->getName() + ".unreachable",
(*i)->getParent(), back());
new UnreachableInst(unreachable->getContext(),
unreachable);
t->setSuccessor(ii, unreachable);
new_blocks.push_back(unreachable);
}
}
#ifdef DEBUG_PURGE
std::cerr << std::endl << "### block after purge:" << std::endl;
(*i)->dump();
#endif
}
// Add the new "unreachable" blocks to the
// region. We cannot do in the loop as it
// corrupts iterators.
insert(end(), new_blocks.begin(), new_blocks.end());
}
void
ParallelRegion::insertLocalIdInit(llvm::BasicBlock* Entry,
unsigned X, unsigned Y, unsigned Z) {
IRBuilder<> Builder(Entry, Entry->getFirstInsertionPt());
Module *M = Entry->getParent()->getParent();
unsigned long address_bits;
getModuleIntMetadata(*M, "device_address_bits", address_bits);
llvm::Type *SizeT = IntegerType::get(M->getContext(), address_bits);
GlobalVariable *GVX = M->getGlobalVariable(POCL_LOCAL_ID_X_GLOBAL);
if (GVX != NULL)
Builder.CreateStore(ConstantInt::get(SizeT, X), GVX);
GlobalVariable *GVY = M->getGlobalVariable(POCL_LOCAL_ID_Y_GLOBAL);
if (GVY != NULL)
Builder.CreateStore(ConstantInt::get(SizeT, Y), GVY);
GlobalVariable *GVZ = M->getGlobalVariable(POCL_LOCAL_ID_Z_GLOBAL);
if (GVZ != NULL)
Builder.CreateStore(ConstantInt::get(SizeT, Z), GVZ);
}
void
ParallelRegion::insertPrologue(unsigned x,
unsigned y,
unsigned z)
{
BasicBlock *entry = entryBB();
ParallelRegion::insertLocalIdInit(entry, x, y, z);
}
void
ParallelRegion::dump()
{
#ifdef LLVM_BUILD_MODE_DEBUG
for (iterator i = begin(), e = end(); i != e; ++i)
(*i)->dump();
#endif
}
void
ParallelRegion::dumpNames()
{
for (iterator i = begin(), e = end(); i != e; ++i)
{
std::cerr << (*i)->getName().str();
if (entryBB() == (*i))
std::cerr << "(EN)";
if (exitBB() == (*i))
std::cerr << "(EX)";
std::cerr << " ";
}
std::cerr << std::endl;
}
ParallelRegion *
ParallelRegion::Create(const SmallPtrSet<BasicBlock *, 8>& bbs, BasicBlock *entry, BasicBlock *exit)
{
ParallelRegion *new_region = new ParallelRegion();
assert (entry != NULL);
assert (exit != NULL);
// This is done in two steps so order of the vector
// is the same as original function order.
Function *F = entry->getParent();
for (Function::iterator i = F->begin(), e = F->end(); i != e; ++i) {
BasicBlock *b = &*i;
for (SmallPtrSetIterator<BasicBlock *> j = bbs.begin(); j != bbs.end(); ++j) {
if (*j == b) {
new_region->push_back(&*i);
if (entry == *j)
new_region->setEntryBBIndex(new_region->size() - 1);
else if (exit == *j)
new_region->setExitBBIndex(new_region->size() - 1);
break;
}
}
}
new_region->LocalizeIDLoads();
#ifdef DEBUG_CREATE
assert(new_region->Verify());
#endif
return new_region;
}
bool
ParallelRegion::Verify()
{
// Parallel region conditions:
// 1) Single entry, in entry block.
// 2) Single outgoing edge from exit block
// (other outgoing edges allowed, will be purged in replicas).
// 3) No barriers inside the region.
int entry_edges = 0;
for (iterator i = begin(), e = end(); i != e; ++i) {
for (pred_iterator ii(*i), ee(*i, true); ii != ee; ++ii) {
if (count(begin(), end(), *ii) == 0) {
if ((*i) != entryBB()) {
dumpNames();
std::cerr << "suspicious block: " << (*i)->getName().str() << std::endl;
std::cerr << "the entry is: " << entryBB()->getName().str() << std::endl;
ParallelRegion::ParallelRegionVector prvec;
prvec.push_back(this);
std::set<llvm::BasicBlock*> highlights;
highlights.insert(entryBB());
highlights.insert(*i);
pocl::dumpCFG(*(*i)->getParent(),
(*i)->getParent()->getName().str() + ".dot", nullptr,
&prvec, &highlights);
assert(0 && "Incoming edges to non-entry block!");
return false;
} else if (!Barrier::hasBarrier(*ii)) {
(*i)->getParent()->viewCFG();
assert (0 && "Entry has edges from non-barrier blocks!");
return false;
}
++entry_edges;
}
}
// if (entry_edges != 1) {
// assert(0 && "Parallel regions must be single entry!");
// return false;
// }
if (exitBB()->getTerminator()->getNumSuccessors() != 1) {
ParallelRegion::ParallelRegionVector regions;
regions.push_back(this);
#ifdef LLVM_BUILD_MODE_DEBUG
std::set<llvm::BasicBlock*> highlights;
highlights.insert((*i));
highlights.insert(exitBB());
exitBB()->dump();
dumpNames();
dumpCFG(*(*i)->getParent(), "broken.dot", nullptr,
®ions, &highlights);
#endif
assert(0 && "Multiple outgoing edges from exit block!");
return false;
}
for (BasicBlock::iterator ii = (*i)->begin(), ee = (*i)->end();
ii != ee; ++ii) {
if (isa<Barrier> (ii)) {
assert(0 && "Barrier found inside parallel region!");
return false;
}
}
}
return true;
}
#define PARALLEL_MD_NAME "llvm.access.group"
/**
* Adds metadata to all the memory instructions to denote
* they originate from a parallel loop.
*
* Due to nested parallel loops, there can be multiple loop
* references.
*
* Format (LLVM 8+):
*
* !llvm.access.group !0
*
* !0 distinct !{}
*
* In a 2-nested loop:
*
* !llvm.access.group !0
*
* !0 { !1, !2 }
* !1 distinct !{}
* !2 distinct !{}
*
* Parallel loop metadata prior to LLVM 12.0.1 on memory reads also implies that
* if-conversion (i.e., speculative execution within a loop iteration) is safe.
* Given an instruction reading from memory, IsLoadUnconditionallySafe should
* return whether it is safe under (unconditional, unpredicated) speculative
* execution. See https://bugs.llvm.org/show_bug.cgi?id=46666 and
* https://github.com/pocl/pocl/issues/757.
*
* From LLVM 12.0.1 onward parallel loop metadata does not imply if-conversion
* safety anymore. This got fixed by this change:
* https://reviews.llvm.org/D103907 for LLVM 13 which also got backported to
* LLVM 12.0.1. In other words this means that before the fix, the loop
* vectorizer was not able to vectorize some kernels because they would required
* a huge runtime memory check code insertion. Leading to vectorizer to give up.
* With above fix, we can add metadata to every load. This will cause
* vectorizer to skip runtime memory check code insertion part because it
* indicates that iterations do not depend on each other. Which in turn makes
* vectorization easier. In this case using of IsLoadUnconditionallySafe
* parameter will be skipped.
*/
void
ParallelRegion::AddParallelLoopMetadata(
llvm::MDNode *Identifier,
std::function<bool(llvm::Instruction *)> IsLoadUnconditionallySafe) {
for (iterator i = begin(), e = end(); i != e; ++i) {
BasicBlock* bb = *i;
for (BasicBlock::iterator ii = bb->begin(), ee = bb->end();
ii != ee; ii++) {
if (!ii->mayReadOrWriteMemory()) {
continue;
}
MDNode *NewMD = MDNode::get(bb->getContext(), Identifier);
MDNode *OldMD = ii->getMetadata(PARALLEL_MD_NAME);
if (OldMD != nullptr) {
NewMD = llvm::MDNode::concatenate(OldMD, NewMD);
}
ii->setMetadata(PARALLEL_MD_NAME, NewMD);
}
}
}
void
ParallelRegion::AddIDMetadata(
llvm::LLVMContext& context,
std::size_t x,
std::size_t y,
std::size_t z) {
int counter = 1;
Metadata *v1[] = {
MDString::get(context, "WI_region"),
llvm::ConstantAsMetadata::get(
ConstantInt::get(Type::getInt32Ty(context), pRegionId))
};
MDNode* mdRegion = MDNode::get(context, v1);
Metadata *v2[] = {
MDString::get(context, "WI_xyz"),
llvm::ConstantAsMetadata::get(
ConstantInt::get(Type::getInt32Ty(context), x)),
llvm::ConstantAsMetadata::get(
ConstantInt::get(Type::getInt32Ty(context), y)),
llvm::ConstantAsMetadata::get(
ConstantInt::get(Type::getInt32Ty(context), z))};
MDNode* mdXYZ = MDNode::get(context, v2);
Metadata *v[] = {
MDString::get(context, "WI_data"),
mdRegion,
mdXYZ};
MDNode* md = MDNode::get(context, v);
for (iterator i = begin(), e = end(); i != e; ++i) {
BasicBlock* bb = *i;
for (BasicBlock::iterator ii = bb->begin();
ii != bb->end(); ii++) {
Metadata *v3[] = {
MDString::get(context, "WI_counter"),
llvm::ConstantAsMetadata::get(
ConstantInt::get(Type::getInt32Ty(context), counter))};
MDNode* mdCounter = MDNode::get(context, v3);
counter++;
ii->setMetadata("wi", md);
ii->setMetadata("wi_counter", mdCounter);
}
}
}
/**
* Inserts a new basic block to the region, before an old basic block in
* the region.
*
* Assumes the inserted block to be before the other block in control
* flow, that is, there should be direct CFG edge from the block to the
* other.
*/
void
ParallelRegion::AddBlockBefore(llvm::BasicBlock *block, llvm::BasicBlock *before)
{
llvm::BasicBlock *oldExit = exitBB();
ParallelRegion::iterator beforePos = find(begin(), end(), before);
ParallelRegion::iterator oldExitPos = find(begin(), end(), oldExit);
assert (beforePos != end());
/* The old exit node might is now pushed further, at most one position.
Whether this is the case, depends if the node was inserted before or
after that node in the vector. That is, if indexof(before) < indexof(oldExit). */
if (beforePos < oldExitPos) ++exitIndex_;
insert(beforePos, block);
/* The entryIndex_ should be still correct. In case the 'before' block
was an old entry node, the new one replaces it as an entry node at
the same index and the old one gets pushed forward. */
}
void
ParallelRegion::AddBlockAfter(llvm::BasicBlock *block, llvm::BasicBlock *after)
{
llvm::BasicBlock *oldExit = exitBB();
ParallelRegion::iterator afterPos = find(begin(), end(), after);
ParallelRegion::iterator oldExitPos = find(begin(), end(), oldExit);
assert (afterPos != end());
/* The old exit node might be pushed further, at most one position.
Whether this is the case, depends if the node was inserted before or
after that node in the vector. That is, if indexof(before) < indexof(oldExit). */
if (afterPos < oldExitPos) ++exitIndex_;
afterPos++;
insert(afterPos, block);
}
bool
ParallelRegion::HasBlock(llvm::BasicBlock *bb)
{
return find(begin(), end(), bb) != end();
}
/**
* Find the instruction that loads the Z dimension of the work item
* in the beginning of the parallel region, if not found, creates it.
*/
llvm::Instruction*
ParallelRegion::LocalIDZLoad()
{
if (LocalIDZLoadInstr != NULL) return LocalIDZLoadInstr;
IRBuilder<> builder(&*(entryBB()->getFirstInsertionPt()));
GlobalVariable *Ptr = entryBB()->getParent()->getParent()->getGlobalVariable(
POCL_LOCAL_ID_Z_GLOBAL);
return LocalIDZLoadInstr = builder.CreateLoad(
#if LLVM_MAJOR > 14
Ptr->getValueType(),
#else
Ptr->getType()->getPointerElementType(),
#endif
Ptr);
}
/**
* Find the instruction that loads the Y dimension of the work item
* in the beginning of the parallel region, if not found, creates it.
*/
llvm::Instruction*
ParallelRegion::LocalIDYLoad()
{
if (LocalIDYLoadInstr != NULL) return LocalIDYLoadInstr;
IRBuilder<> builder(&*(entryBB()->getFirstInsertionPt()));
GlobalVariable *Ptr = entryBB()->getParent()->getParent()->getGlobalVariable(
POCL_LOCAL_ID_Y_GLOBAL);
return LocalIDYLoadInstr = builder.CreateLoad(
#if LLVM_MAJOR > 14
Ptr->getValueType(),
#else
Ptr->getType()->getPointerElementType(),
#endif
Ptr);
}
/**
* Find the instruction that loads the X dimension of the work item
* in the beginning of the parallel region, if not found, creates it.
*/
llvm::Instruction*
ParallelRegion::LocalIDXLoad()
{
if (LocalIDXLoadInstr != NULL) return LocalIDXLoadInstr;
IRBuilder<> builder(&*(entryBB()->getFirstInsertionPt()));
GlobalVariable *Ptr = entryBB()->getParent()->getParent()->getGlobalVariable(
POCL_LOCAL_ID_X_GLOBAL);
return LocalIDXLoadInstr = builder.CreateLoad(
#if LLVM_MAJOR > 14
Ptr->getValueType(),
#else
Ptr->getType()->getPointerElementType(),
#endif
Ptr);
}
void
ParallelRegion::InjectPrintF
(llvm::Instruction *before, std::string formatStr,
std::vector<Value*>& params)
{
IRBuilder<> builder(before);
llvm::Module *M = before->getParent()->getParent()->getParent();
llvm::Value *stringArg =
builder.CreateGlobalString(formatStr);
/* generated with help from https://llvm.org/demo/index.cgi */
Function* printfFunc = M->getFunction("printf");
if (printfFunc == NULL) {
PointerType* PointerTy_4 = PointerType::get(IntegerType::get(M->getContext(), 8), 0);
std::vector<Type*> FuncTy_6_args;
FuncTy_6_args.push_back(PointerTy_4);
FunctionType* FuncTy_6 =
FunctionType::get
(/*Result=*/IntegerType::get(M->getContext(), 32),
/*Params=*/FuncTy_6_args,
/*isVarArg=*/true);
printfFunc =
Function::Create
(/*Type=*/FuncTy_6,
/*Linkage=*/GlobalValue::ExternalLinkage,
/*Name=*/"printf", M);
printfFunc->setCallingConv(CallingConv::C);
AttributeList func_printf_PAL =
AttributeList()
.addAttributeAtIndex(M->getContext(), 1U, Attribute::NoCapture)
.addAttributeAtIndex(M->getContext(), 4294967295U,
Attribute::NoUnwind);
printfFunc->setAttributes(func_printf_PAL);
}
std::vector<Constant*> const_ptr_8_indices;
ConstantInt* const_int64_9 = ConstantInt::get(M->getContext(), APInt(64, StringRef("0"), 10));
const_ptr_8_indices.push_back(const_int64_9);
const_ptr_8_indices.push_back(const_int64_9);
assert (isa<Constant>(stringArg));
Constant* const_ptr_8 =
ConstantExpr::getGetElementPtr
(PointerType::getUnqual(Type::getInt8Ty(M->getContext())), cast<Constant>(stringArg), const_ptr_8_indices);
std::vector<Value*> args;
args.push_back(const_ptr_8);
args.insert(args.end(), params.begin(), params.end());
CallInst::Create(printfFunc, args, "", before);
}
void
ParallelRegion::SetExitBB(llvm::BasicBlock *block)
{
for (size_t i = 0; i < size(); ++i)
{
if (at(i) == block)
{
setExitBBIndex(i);
return;
}
}
assert (false && "The block was not found in the PRegion!");
}
/**
* Adds a printf to the end of the parallel region that prints the
* region ID and the work item ID.
*
* Useful for debugging control flow bugs.
*/
void
ParallelRegion::InjectRegionPrintF()
{
llvm::Module *M = entryBB()->getParent()->getParent();
#if 0
// it should reuse equal strings anyways
const char* FORMAT_STR_VAR = ".pocl.pRegion_debug_str";
llvm::Value *stringArg = M->getGlobalVariable(FORMAT_STR_VAR);
if (stringArg == NULL)
{
IRBuilder<> builder(entryBB());
stringArg = builder.CreateGlobalString("PR %d WI %u %u %u\n", FORMAT_STR_VAR);
}
#endif
ConstantInt* pRID = ConstantInt::get(M->getContext(), APInt(32, pRegionId, 10));
std::vector<Value*> params;
params.push_back(pRID);
params.push_back(LocalIDXLoad());
params.push_back(LocalIDYLoad());
params.push_back(LocalIDZLoad());
InjectPrintF(exitBB()->getTerminator(), "PR %d WI %u %u %u\n", params);
}
/**
* Adds a printf to the end of the parallel region that prints the
* hex contents of all named non-pointer variables.
*
* Useful for debugging data flow bugs.
*/
void
ParallelRegion::InjectVariablePrintouts()
{
for (ParallelRegion::iterator i = begin();
i != end(); ++i)
{
llvm::BasicBlock *bb = *i;
for (llvm::BasicBlock::iterator instr = bb->begin();
instr != bb->end(); ++instr)
{
llvm::Instruction *instruction = &*instr;
if (isa<PointerType>(instruction->getType()) ||
!instruction->hasName()) continue;
std::string name = instruction->getName().str();
std::vector<Value*> args;
IRBuilder<> builder(exitBB()->getTerminator());
args.push_back(builder.CreateGlobalString(name));
args.push_back(instruction);
InjectPrintF(instruction->getParent()->getTerminator(), "variable %s == %x\n", args);
}
}
}
/**
* Localizes all the loads to the the work-item identifiers.
*
* In case the code inside the region queries the WI id, it
* should not (re)use one that is loaded in another region, but
* one that is loaded in the same region. Otherwise, it ends
* up using the last id the previous PR work-item loop got.
* This caused problems in cases where the local id was stored
* to a temporary variable in an earlier region and that temp
* was reused later.
*
* The function scans for all loads from the local id variables
* and converts them to loads inside the parallel region.
*/
void
ParallelRegion::LocalizeIDLoads()
{
/* The local id loads inside the parallel region. */
llvm::Instruction* LocalIDXLoadInstr = LocalIDXLoad();
llvm::Instruction* LocalIDYLoadInstr = LocalIDYLoad();
llvm::Instruction* LocalIDZLoadInstr = LocalIDZLoad();
llvm::Module *M = LocalIDXLoadInstr->getParent()->getParent()->getParent();
llvm::Value *localIdZ = M->getNamedGlobal(POCL_LOCAL_ID_Z_GLOBAL);
llvm::Value *localIdY = M->getNamedGlobal(POCL_LOCAL_ID_Y_GLOBAL);
llvm::Value *localIdX = M->getNamedGlobal(POCL_LOCAL_ID_X_GLOBAL);
assert (localIdZ != NULL && localIdY != NULL && localIdX != NULL &&
"The local id globals were not created.");
for (ParallelRegion::iterator i = begin();
i != end(); ++i)
{
llvm::BasicBlock *bb = *i;
for (llvm::BasicBlock::iterator instrI = bb->begin();
instrI != bb->end(); ++instrI)
{
llvm::Instruction *instr = &*instrI;
if (instr == LocalIDXLoadInstr ||
instr == LocalIDYLoadInstr ||
instr == LocalIDZLoadInstr) continue;
/* Search all operands of the instruction. If any of them is
using a local id, replace it with the intra-PR load from the
id variable. */
for (unsigned opr = 0; opr < instr->getNumOperands(); ++opr)
{
llvm::LoadInst *load =
dyn_cast<llvm::LoadInst>(instr->getOperand(opr));
if (load == NULL) continue;
if (load == LocalIDXLoadInstr ||
load == LocalIDYLoadInstr ||
load == LocalIDZLoadInstr) continue;
if (load->getPointerOperand() == localIdZ)
instr->setOperand(opr, LocalIDZLoadInstr);
if (load->getPointerOperand() == localIdY)
instr->setOperand(opr, LocalIDYLoadInstr);
if (load->getPointerOperand() == localIdX)
instr->setOperand(opr, LocalIDXLoadInstr);
}
}
}
}
|