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
|
// LLVM function pass to convert all PHIs to allocas.
//
// Copyright (c) 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 "LLVMUtils.h"
#include "PHIsToAllocas.h"
#include "VariableUniformityAnalysis.h"
#include "VariableUniformityAnalysisResult.hh"
#include "Workgroup.h"
#include "WorkitemHandlerChooser.h"
#include "WorkitemLoops.h"
POP_COMPILER_DIAGS
#define PASS_NAME "phistoallocas"
#define PASS_CLASS pocl::PHIsToAllocas
#define PASS_DESC "Convert all PHI nodes to allocas"
//#define DEBUG_PHIS_TO_ALLOCAS
// Skip PHIsToAllocas when we are not creating the work item loops,
// as it leads to worse code without benefits for the full replication method.
// Note: re-enabling this causes workgroup/cond_barriers_in_for_cbs to fail
//#define CBS_NO_PHIS_IN_SPLIT
#include <iostream>
namespace pocl {
using namespace llvm;
static llvm::Instruction *
breakPHIToAllocas(PHINode *Phi, VariableUniformityAnalysisResult &VUA);
static bool needsPHIsToAllocas(Function &F, WorkitemHandlerType WIH) {
#ifdef CBS_NO_PHIS_IN_SPLIT
bool RunWithCBS = true;
#else
bool RunWithCBS = false;
#endif
if (!isKernelToProcess(F))
return false;
if (WIH != WorkitemHandlerType::LOOPS &&
!(RunWithCBS && WIH == WorkitemHandlerType::CBS))
return false;
return true;
}
static bool runPHIsToAllocas(Function &F,
VariableUniformityAnalysisResult &VUA) {
typedef std::vector<llvm::Instruction* > InstructionVec;
InstructionVec PHIs;
for (Function::iterator bb = F.begin(); bb != F.end(); ++bb) {
for (BasicBlock::iterator p = bb->begin();
p != bb->end(); ++p) {
Instruction* instr = &*p;
if (isa<PHINode>(instr)) {
PHIs.push_back(instr);
}
}
}
bool changed = false;
for (InstructionVec::iterator i = PHIs.begin(); i != PHIs.end();
++i) {
Instruction *instr = *i;
breakPHIToAllocas(dyn_cast<PHINode>(instr), VUA);
changed = true;
}
return changed;
}
/**
* Convert a PHI to a read from a stack value and all the sources to
* writes to the same stack value.
*
* Used to fix context save/restore issues with regions with PHI nodes in the
* entry node (usually due to the use of work group scope variables such as
* B-loop iteration variables). In case of PHI nodes at region entries, we cannot
* just insert the context restore code because it is assumed there are no
* non-phi Instructions before PHIs which the context restore
* code constitutes to. Secondly, in case the PHINode is at a
* region entry (e.g. a B-Loop) adding new basic blocks before it would
* break the assumption of single entry regions.
*/
static llvm::Instruction *
breakPHIToAllocas(PHINode *Phi, VariableUniformityAnalysisResult &VUA) {
// Loop iteration variables can be detected only when they are
// implemented using PHI nodes. Maintain information of the
// split PHI nodes in the VUA by first analyzing the function
// with the PHIs intact and propagating the uniformity info
// of the PHI nodes.
std::string AllocaName = std::string(Phi->getName().str()) + ".ex_phi";
llvm::Function *Function = Phi->getParent()->getParent();
const bool OriginalPHIWasUniform = VUA.isUniform(Function, Phi);
IRBuilder<> Builder(&*(Function->getEntryBlock().getFirstInsertionPt()));
llvm::Instruction *AllocaI =
Builder.CreateAlloca(Phi->getType(), 0, AllocaName);
for (unsigned Incoming = 0; Incoming < Phi->getNumIncomingValues();
++Incoming) {
Value *Val = Phi->getIncomingValue(Incoming);
BasicBlock *IncomingBB = Phi->getIncomingBlock(Incoming);
Builder.SetInsertPoint(IncomingBB->getTerminator());
llvm::Instruction *Store = Builder.CreateStore(Val, AllocaI);
if (OriginalPHIWasUniform)
VUA.setUniform(Function, Store);
}
Builder.SetInsertPoint(Phi);
llvm::Instruction *LoadedValue = Builder.CreateLoad(Phi->getType(), AllocaI);
Phi->replaceAllUsesWith(LoadedValue);
if (OriginalPHIWasUniform) {
#ifdef DEBUG_PHIS_TO_ALLOCAS
std::cout << "PHIsToAllocas: Original PHI was uniform" << std::endl
<< "original:";
Phi->dump();
std::cout << "alloca:";
AllocaI->dump();
std::cout << "loadedValue:";
LoadedValue->dump();
#endif
VUA.setUniform(Function, AllocaI);
VUA.setUniform(Function, LoadedValue);
}
Phi->eraseFromParent();
return LoadedValue;
}
#if LLVM_MAJOR < MIN_LLVM_NEW_PASSMANAGER
char PHIsToAllocas::ID = 0;
bool PHIsToAllocas::runOnFunction(Function &F) {
WorkitemHandlerType WIH =
getAnalysis<pocl::WorkitemHandlerChooser>().chosenHandler();
if (!needsPHIsToAllocas(F, WIH))
return false;
VariableUniformityAnalysisResult &VUA =
getAnalysis<VariableUniformityAnalysis>().getResult();
return runPHIsToAllocas(F, VUA);
}
void PHIsToAllocas::getAnalysisUsage(AnalysisUsage &AU) const {
AU.addRequired<pocl::WorkitemHandlerChooser>();
AU.addPreserved<pocl::WorkitemHandlerChooser>();
AU.addRequired<pocl::VariableUniformityAnalysis>();
AU.addPreserved<pocl::VariableUniformityAnalysis>();
}
REGISTER_OLD_FPASS(PASS_NAME, PASS_CLASS, PASS_DESC);
#else
llvm::PreservedAnalyses PHIsToAllocas::run(llvm::Function &F,
llvm::FunctionAnalysisManager &AM) {
WorkitemHandlerType WIH = AM.getResult<WorkitemHandlerChooser>(F).WIH;
if (!needsPHIsToAllocas(F, WIH))
return PreservedAnalyses::all();
VariableUniformityAnalysisResult VUA =
AM.getResult<VariableUniformityAnalysis>(F);
PreservedAnalyses PAChanged = PreservedAnalyses::none();
PAChanged.preserve<VariableUniformityAnalysis>();
PAChanged.preserve<WorkitemHandlerChooser>();
return runPHIsToAllocas(F, VUA) ? PAChanged : PreservedAnalyses::all();
}
REGISTER_NEW_FPASS(PASS_NAME, PASS_CLASS, PASS_DESC);
#endif
} // namespace pocl
|