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
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2017-2021 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
#pragma once
#include "AdaptorCommon/ImplicitArgs.hpp"
#include "Compiler/MetaDataUtilsWrapper.h"
#include "Compiler/CISACodeGen/GenCodeGenModule.h"
#include "common/LLVMWarningsPush.hpp"
#include <llvm/Pass.h>
#include <llvm/IR/InstVisitor.h>
#include "common/LLVMWarningsPop.hpp"
namespace IGC
{
class WIFuncsAnalysis;
/// @brief WIFuncResolution pass used for resolving OpenCL WI (work item) functions.
/// This pass depends on the WIFuncAnalysis and AddImplicitArgs passes running before it
class WIFuncResolution : public llvm::FunctionPass, public llvm::InstVisitor<WIFuncResolution>
{
public:
// Pass identification, replacement for typeid
static char ID;
/// @brief Constructor
WIFuncResolution();
/// @brief Destructor
~WIFuncResolution() {}
/// @brief Provides name of pass
virtual llvm::StringRef getPassName() const override
{
return "WIFuncResolution";
}
void getAnalysisUsage(llvm::AnalysisUsage& AU) const override
{
AU.addRequired<MetaDataUtilsWrapper>();
AU.addRequired<CodeGenContextWrapper>();
}
/// @brief Main entry point.
/// Finds all OpenCL WI (Work item) function calls and resolve them into an llvm sequence
/// @param F The destination function.
virtual bool runOnFunction(llvm::Function& F) override;
/// @brief Call instructions visitor.
/// Checks for OpenCL WI functions and resolves them into appropriate sequence of code
/// @param CI The call instruction.
void visitCallInst(llvm::CallInst& CI);
private:
/// @brief Resolves get_local_id(dim).
/// Adds the appropriate sequence of code before the given call instruction
/// @param CI The call instruction.
/// @param argType The type of the appropriate implicit arg.
/// @return A value representing the local id
llvm::Value* getLocalId(llvm::CallInst& CI, ImplicitArg::ArgType argType);
/// @brief Resolves get_group_id(dim).
/// Adds the appropriate sequence of code before the given call instruction
/// @param CI The call instruction.
/// @return A value representing the group id
llvm::Value* getGroupId(llvm::CallInst& CI);
/// @brief Resolves get_local_thread_id(dim).
/// Adds the appropriate sequence of code before the given call instruction
/// @param CI The call instruction.
/// @return A value representing the local thread id
llvm::Value* getLocalThreadId(llvm::CallInst &CI);
/// @brief Resolves get_global_size(dim).
/// Adds the appropriate sequence of code before the given call instruction
/// @param CI The call instruction.
/// @return A value representing the global size
llvm::Value* getGlobalSize(llvm::CallInst& CI);
/// @brief Resolves get_local_size(dim).
/// Adds the appropriate sequence of code before the given call instruction
/// @param CI The call instruction.
/// @return A value representing the local size
llvm::Value* getLocalSize(llvm::CallInst& CI);
/// @brief Resolves get_enqueued_local_size(dim).
/// Adds the appropriate sequence of code before the given call instruction
/// @param CI The call instruction.
/// @return A value representing the enqueued local size
llvm::Value* getEnqueuedLocalSize(llvm::CallInst& CI);
/// @brief Resolves get_global_offset(dim).
/// Adds the appropriate sequence of code before the given call instruction
/// @param CI The call instruction.
/// @return A value representing the global offset
llvm::Value* getGlobalOffset(llvm::CallInst& CI);
/// @brief Resolves get_work_dim().
/// Adds the appropriate sequence of code before the given call instruction
/// @param CI The call instruction.
/// @return A value representing the work dimension
llvm::Value* getWorkDim(llvm::CallInst& CI);
/// @brief Resolves get_num_groups(dim).
/// Adds the appropriate sequence of code before the given call instruction
/// @param CI The call instruction.
/// @return A value representing the number of work groups
llvm::Value* getNumGroups(llvm::CallInst& CI);
/// @brief Resolves get_stage_in_grid_origin().
/// Adds the appropriate sequence of code before the given call instruction
/// @param CI The call instruction.
/// @return A value representing the stage in grid origin
llvm::Value* getStageInGridOrigin(llvm::CallInst& CI);
/// @brief Resolves get_stage_in_grid_size().
/// Adds the appropriate sequence of code before the given call instruction
/// @param CI The call instruction.
/// @return A value representing the stage in grid size
llvm::Value* getStageInGridSize(llvm::CallInst& CI);
/// @brief Resolves get_sync_buffer().
/// Adds the appropriate sequence of code before the given call instruction
/// @param CI The call instruction.
/// @return A value representing the sync buffer
llvm::Value* getSyncBufferPtr(llvm::CallInst& CI);
/// @brief The implicit arguments of the current function
ImplicitArgs m_implicitArgs;
/// @brief Emit intrinsics to store implicit buffer
/// pointer and local id pointer.
/// @param Function to add intrinsics to. This has to be
/// an entry level, ie kernel function.
void storeImplicitBufferPtrs(llvm::Function& F);
private:
/// @brief Indicates if the pass changed the processed function
bool m_changed = false;
IGCMD::MetaDataUtils* m_pMdUtils = nullptr;
};
} // namespace IGC
namespace IGC
{
class LowerImplicitArgIntrinsics : public llvm::FunctionPass, public llvm::InstVisitor<LowerImplicitArgIntrinsics>
{
public:
static char ID;
LowerImplicitArgIntrinsics();
~LowerImplicitArgIntrinsics() {}
virtual llvm::StringRef getPassName() const override
{
return "LowerImplicitArgIntrinsics";
}
void getAnalysisUsage(llvm::AnalysisUsage& AU) const override
{
AU.addRequired<MetaDataUtilsWrapper>();
AU.addRequired<CodeGenContextWrapper>();
}
virtual bool runOnFunction(llvm::Function& F) override;
void visitCallInst(llvm::CallInst& CI);
private:
GenXFunctionGroupAnalysis* m_FGA = nullptr;
IGC::CodeGenContext* m_ctx = nullptr;
std::map<llvm::GenISAIntrinsic::ID, llvm::Instruction*> usedIntrinsicsMap;
llvm::Value* BuildLoadInst(llvm::CallInst& CI, unsigned int Offset, llvm::Type* DataType);
llvm::Value* getIntrinsicCall(llvm::Function* F, llvm::GenISAIntrinsic::ID IntrinsicID, llvm::Type* DataType);
};
} // namespace IGC
|