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
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2017-2021 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
#pragma once
#include "common/LLVMWarningsPush.hpp"
#include "llvm/Pass.h"
#include "llvm/Analysis/LoopInfo.h"
#include "common/LLVMWarningsPop.hpp"
#include "Compiler/CodeGenPublic.h"
#include "Compiler/CISACodeGen/WIAnalysis.hpp"
namespace IGC {
namespace IGCMD {
class MetaDataUtils;
}
/// @brief This pass implements a heuristic to determine whether SIMD32 is profitable.
class Simd32ProfitabilityAnalysis : public llvm::FunctionPass {
public:
static char ID;
Simd32ProfitabilityAnalysis();
~Simd32ProfitabilityAnalysis() {}
virtual llvm::StringRef getPassName() const override { return "Simd32Profitability"; }
virtual bool runOnFunction(llvm::Function &F) override;
virtual void getAnalysisUsage(llvm::AnalysisUsage &AU) const override {
AU.setPreservesAll();
AU.addRequired<WIAnalysis>();
AU.addRequired<llvm::LoopInfoWrapperPass>();
AU.addRequired<llvm::PostDominatorTreeWrapperPass>();
AU.addRequired<MetaDataUtilsWrapper>();
AU.addRequired<CodeGenContextWrapper>();
}
bool isSimd32Profitable() const { return m_isSimd32Profitable; }
bool isSimd16Profitable() const { return m_isSimd16Profitable; }
private:
llvm::Function *F;
llvm::PostDominatorTree *PDT;
llvm::LoopInfo *LI;
IGCMD::MetaDataUtils *pMdUtils;
WIAnalysis *WI;
bool m_isSimd32Profitable;
bool m_isSimd16Profitable;
unsigned getLoopCyclomaticComplexity();
bool checkSimd32Profitable(CodeGenContext *);
bool checkSimd16Profitable(CodeGenContext *);
unsigned estimateLoopCount(llvm::Loop *L);
unsigned estimateLoopCount_CASE1(llvm::Loop *L);
unsigned estimateLoopCount_CASE2(llvm::Loop *L);
bool checkPSSimd32Profitable();
void print(llvm::raw_ostream &OS) const;
};
} // namespace IGC
|