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
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2017-2021 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
#pragma once
#include "Compiler/MetaDataUtilsWrapper.h"
#include "Compiler/CodeGenContextWrapper.hpp"
#include "Compiler/CISACodeGen/TranslationTable.hpp"
#include "common/LLVMWarningsPush.hpp"
#include <llvmWrapper/IR/InstrTypes.h>
#include <llvm/Pass.h>
#include <llvm/IR/Function.h>
#include <llvm/IR/Instructions.h>
#include <llvm/IR/IntrinsicInst.h>
#include <llvm/Support/raw_ostream.h>
#include <llvm/ADT/Statistic.h>
#include <llvm/ADT/DenseMap.h>
#include <llvm/ADT/DenseSet.h>
#include <llvm/ADT/SmallSet.h>
#include <llvm/IR/Module.h>
#include <llvm/IR/Value.h>
#include <llvm/IR/InstIterator.h>
#include <llvm/IR/Dominators.h>
#include <llvm/Analysis/PostDominators.h>
#include "common/LLVMWarningsPop.hpp"
#ifdef OCL_SPECIFIC
#include "RuntimeServices.h"
#include "SoaAllocaAnalysis.h"
#include "Logger.h"
#endif
#include <vector>
#include <common/Types.hpp>
namespace IGC
{
class BranchInfo;
class WIAnalysis;
//This is a trick, since we cannot forward-declare enums embedded in class definitions.
// The better solution is to completely hoist-out the WIDependency enum into a separate enum class
// (c++ 11) and have it separate from WIAnalysis pass class. Nevertheless, that would require
// updating many places in the current CodeGen code...
// thus: WIAnalysis::WIDependancy ~ WIBaseClass::WIDependancy, the types are equal and do not require
// conversion
class WIBaseClass
{
public:
/// @brief describes the type of dependency on the work item
enum WIDependancy : uint8_t {
UNIFORM_GLOBAL = 0, /// Same for all work-items within a shader.
UNIFORM_WORKGROUP = 1, /// Same for all work-items within a work group (compute).
UNIFORM_THREAD = 2, /// Same for all work-items within a HW thread.
CONSECUTIVE = 3, /// Elements are consecutive
PTR_CONSECUTIVE = 4, /// Elements are pointers which are consecutive
STRIDED = 5, /// Elements are in strides
RANDOM = 6, /// Unknown or non consecutive order
NumDeps = 7, /// Overall amount of dependencies
INVALID = 8
};
};
// Provide FastValueMapAttributeInfo for WIDependancy.
template<> struct FastValueMapAttributeInfo<WIBaseClass::WIDependancy> {
static inline WIBaseClass::WIDependancy getEmptyAttribute() { return WIBaseClass::INVALID; }
};
class WIAnalysisRunner
{
public:
void init(
llvm::Function* F,
llvm::DominatorTree* DT,
llvm::PostDominatorTree* PDT,
IGCMD::MetaDataUtils* MDUtils,
CodeGenContext* CGCtx,
ModuleMetaData* ModMD,
TranslationTable* TransTable);
WIAnalysisRunner(
llvm::Function* F,
llvm::DominatorTree* DT,
llvm::PostDominatorTree* PDT,
IGCMD::MetaDataUtils* MDUtils,
CodeGenContext* CGCtx,
ModuleMetaData* ModMD,
TranslationTable* TransTable)
{
init(F, DT, PDT, MDUtils, CGCtx, ModMD, TransTable);
}
WIAnalysisRunner() {}
~WIAnalysisRunner() {}
bool run();
/// @brief Returns the type of dependency the instruction has on
/// the work-item
/// @param val llvm::Value to test
/// @return Dependency kind
WIBaseClass::WIDependancy whichDepend(const llvm::Value* val) const;
/// @brief Returns True if 'val' is uniform
/// @param val llvm::Value to test
bool isUniform(const llvm::Value* val) const;
bool isWorkGroupOrGlobalUniform(const llvm::Value* val) const;
bool isGlobalUniform(const llvm::Value* val) const;
/// incremental update of the dep-map on individual value
/// without propagation. Exposed for later pass.
void incUpdateDepend(const llvm::Value* val, WIBaseClass::WIDependancy dep)
{
m_depMap.SetAttribute(val, dep);
}
/// check if a value is defined inside divergent control-flow
bool insideDivergentCF(const llvm::Value* val) const
{
return(llvm::isa<llvm::Instruction>(val) &&
m_ctrlBranches.find(llvm::cast<llvm::Instruction>(val)->getParent()) != m_ctrlBranches.end());
}
/// check if a value is defined inside workgroup divergent control-flow.
/// This will return false if the value is in the influence region
/// of only global and workgroup uniform branches.
bool insideWorkgroupDivergentCF(const llvm::Value* val) const;
void releaseMemory()
{
m_ctrlBranches.clear();
m_changed1.clear();
m_changed2.clear();
m_allocaDepMap.clear();
m_storeDepMap.clear();
m_depMap.clear();
m_forcedUniforms.clear();
}
/// print - print m_deps in human readable form
void print(llvm::raw_ostream& OS, const llvm::Module* = 0) const;
/// dump - Dump the m_deps to a file.
void dump() const;
// helper for dumping WI info into files with lock
void lock_print();
private:
WIBaseClass::WIDependancy getCFDependency(const llvm::BasicBlock* BB) const;
struct AllocaDep
{
std::vector<const llvm::StoreInst*> stores;
std::vector<const llvm::IntrinsicInst*> lifetimes;
bool assume_uniform;
};
/// @brief Update dependency relations between all values
void updateDeps();
/// @brief mark the arguments dependency based on the metadata set
void updateArgsDependency(llvm::Function* pF);
/*! \name Dependency Calculation Functions
* \{ */
/// @brief Calculate the dependency type for the instruction
/// @param inst Instruction to inspect
/// @return Type of dependency.
void calculate_dep(const llvm::Value* val);
WIBaseClass::WIDependancy calculate_dep(const llvm::BinaryOperator* inst);
WIBaseClass::WIDependancy calculate_dep(const llvm::CallInst* inst);
WIBaseClass::WIDependancy calculate_dep(const llvm::GetElementPtrInst* inst);
WIBaseClass::WIDependancy calculate_dep(const llvm::PHINode* inst);
WIBaseClass::WIDependancy calculate_dep(const llvm::SelectInst* inst);
WIBaseClass::WIDependancy calculate_dep(const llvm::AllocaInst* inst);
WIBaseClass::WIDependancy calculate_dep(const llvm::CastInst* inst);
WIBaseClass::WIDependancy calculate_dep(const llvm::VAArgInst* inst);
WIBaseClass::WIDependancy calculate_dep(const llvm::LoadInst* inst);
WIBaseClass::WIDependancy calculate_dep_terminator(const IGCLLVM::TerminatorInst* inst);
/*! \} */
/// @brief do the trivial checking WI-dep
/// @param I instruction to check
/// @return Dependency type. Returns Uniform if all operands are
/// Uniform, Random otherwise
WIBaseClass::WIDependancy calculate_dep_simple(const llvm::Instruction* I);
/// @brief update the WI-dep from a divergent branch,
/// affected instructions are added to m_pChangedNew
/// @param the divergent branch
void update_cf_dep(const IGCLLVM::TerminatorInst* TI);
/// @brief update the WI-dep for a sequence of insert-elements forming a vector
/// affected instructions are added to m_pChangedNew
/// @param the insert-element instruction
void updateInsertElements(const llvm::InsertElementInst* inst);
/// @check phi divergence at a join-blk due to a divergent branch
void updatePHIDepAtJoin(llvm::BasicBlock* blk, BranchInfo* brInfo);
void updateDepMap(const llvm::Instruction* inst, WIBaseClass::WIDependancy dep);
/// @brief Provide known dependency type for requested value
/// @param val llvm::Value to examine
/// @return Dependency type. Returns Uniform for unknown type
WIBaseClass::WIDependancy getDependency(const llvm::Value* val);
/// @brief return true if there is calculated dependency type for requested value
/// @param val llvm::Value to examine
/// @return true if value has dependency type, false otherwise.
bool hasDependency(const llvm::Value* val) const;
/// @brief return true if all uses of this value are marked RANDOM
bool allUsesRandom(const llvm::Value* val);
/// @brief return true if any of the use require the value to be uniform
bool needToBeUniform(const llvm::Value* val);
/// @brief return true is the instruction is simple and making it random is cheap
bool isInstructionSimple(const llvm::Instruction* inst);
/// @brief return true if all the source operands are defined outside the region
bool isRegionInvariant(const llvm::Instruction* inst, BranchInfo* brInfo, unsigned level);
/// @brief update dependency structure for Alloca
bool TrackAllocaDep(const llvm::Value* I, AllocaDep& dep);
void checkLocalIdUniform(
llvm::Function* F,
bool& IsLxUniform,
bool& IsLyUniform,
bool& IsLzUniform);
private:
#ifdef OCL_SPECIFIC
// @brief pointer to Soa alloca analysis performed for this function
SoaAllocaAnalysis* m_soaAllocaAnalysis;
/// Runtime services pointer
RuntimeServices* m_rtServices;
#endif
/// The WIAnalysis follows pointer arithmetic
/// and Index arithmetic when calculating dependency
/// properties. If a part of the index is lost due to
/// a transformation, it is acceptable.
/// This constant decides how many bits need to be
/// preserved before we give up on the analysis.
static const unsigned int MinIndexBitwidthToPreserve;
/// Stores an updated list of all dependencies
/// for each block, store the list of diverging branches that affect it
llvm::DenseMap<const llvm::BasicBlock*, llvm::SmallPtrSet<const llvm::Instruction*, 4>> m_ctrlBranches;
/// Iteratively one set holds the changed from the previous iteration and
/// the other holds the new changed values from the current iteration.
std::vector<const llvm::Value*> m_changed1;
std::vector<const llvm::Value*> m_changed2;
/// ptr to m_changed1, m_changed2
std::vector<const llvm::Value*>* m_pChangedOld;
std::vector<const llvm::Value*>* m_pChangedNew;
/// <summary>
/// hold the vector-defs that are promoted from an uniform alloca
/// therefore, need to be forced into uniform no matter what.
/// </summary>
std::vector<const llvm::Value*> m_forcedUniforms;
llvm::Function* m_func;
llvm::DominatorTree* DT;
llvm::PostDominatorTree* PDT;
IGC::IGCMD::MetaDataUtils* m_pMdUtils;
IGC::CodeGenContext* m_CGCtx;
IGC::ModuleMetaData* m_ModMD;
IGC::TranslationTable* m_TT;
// Allow access to all the store into an alloca if we were able to track it
llvm::DenseMap<const llvm::AllocaInst*, AllocaDep> m_allocaDepMap;
// reverse map to allow to know what alloca to update when store changes
llvm::DenseMap<const llvm::StoreInst*, const llvm::AllocaInst*> m_storeDepMap;
IGC::FastValueMap<WIBaseClass::WIDependancy, FastValueMapAttributeInfo<WIBaseClass::WIDependancy>> m_depMap;
// For dumpping WIA info per each invocation
static llvm::DenseMap<const llvm::Function*, int> m_funcInvocationId;
};
/// @brief Work Item Analysis class used to provide information on
/// individual instructions. The analysis class detects values which
/// depend in work-item and describe their dependency.
/// The algorithm used is recursive and new instructions are updated
/// according to their operands (which are already calculated).
/// original code for OCL vectorizer
///
class WIAnalysis : public llvm::FunctionPass, public WIBaseClass
{
public:
static char ID; // Pass identification, replacement for typeid
WIAnalysis();
~WIAnalysis() {}
/// @brief Provides name of pass
llvm::StringRef getPassName() const override
{
return "WIAnalysis";
}
void getAnalysisUsage(llvm::AnalysisUsage& AU) const override
{
// Analysis pass preserve all
AU.setPreservesAll();
#ifdef OCL_SPECIFIC
AU.addRequired<SoaAllocaAnalysis>();
#endif
AU.addRequired<llvm::DominatorTreeWrapperPass>();
AU.addRequired<llvm::PostDominatorTreeWrapperPass>();
AU.addRequired<MetaDataUtilsWrapper>();
AU.addRequired<CodeGenContextWrapper>();
AU.addRequired<TranslationTable>();
}
/// @brief LLVM llvm::Function pass entry
/// @param F llvm::Function to transform
/// @return True if changed
bool runOnFunction(llvm::Function& F) override;
/// print - print m_deps in human readable form
void print(llvm::raw_ostream& OS, const llvm::Module* = 0) const override;
/// dump - Dump the m_deps to dbgs().
void dump() const;
bool isCompute()
{
return isComputeProgram;
}
public:
/// @brief Returns the type of dependency the instruction has on
/// the work-item
/// @param val llvm::Value to test
/// @return Dependency kind
WIDependancy whichDepend(const llvm::Value* val);
/// @brief Returns True if 'val' is uniform
/// @param val llvm::Value to test
bool isUniform(const llvm::Value* val) const; // Return true for any uniform
bool isWorkGroupOrGlobalUniform(const llvm::Value* val);
bool isGlobalUniform(const llvm::Value* val);
/// incremental update of the dep-map on individual value
/// without propagation. Exposed for later pass.
void incUpdateDepend(const llvm::Value* val, WIDependancy dep);
/// check if a value is defined inside divergent control-flow
bool insideDivergentCF(const llvm::Value* val) const;
/// check if a value is defined inside workgroup divergent control-flow
/// This will return false if the value is in the influence region
/// of only global and workgroup uniform branches.
bool insideWorkgroupDivergentCF(const llvm::Value* val) const;
void releaseMemory() override
{
Runner.releaseMemory();
}
/// Return true if Dep is any of uniform dependancy.
static bool isDepUniform(WIDependancy Dep) {
return Dep == WIDependancy::UNIFORM_GLOBAL ||
Dep == WIDependancy::UNIFORM_WORKGROUP ||
Dep == WIDependancy::UNIFORM_THREAD;
}
private:
WIAnalysisRunner Runner;
bool isComputeProgram;
};
} // namespace IGC
|