blob: 173ca28a7f4873329feea6458a1982de9b1c61b7 [file] [log] [blame]
Andrew Scull0372a572018-11-16 15:47:06 +00001//===- llvm/Analysis/LegacyDivergenceAnalysis.h - KernelDivergence Analysis -*- C++ -*-===//
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Andrew Scull0372a572018-11-16 15:47:06 +000010// The kernel divergence analysis is an LLVM pass which can be used to find out
11// if a branch instruction in a GPU program (kernel) is divergent or not. It can help
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010012// branch optimizations such as jump threading and loop unswitching to make
13// better decisions.
14//
15//===----------------------------------------------------------------------===//
Andrew Scull0372a572018-11-16 15:47:06 +000016#ifndef LLVM_ANALYSIS_LEGACY_DIVERGENCE_ANALYSIS_H
17#define LLVM_ANALYSIS_LEGACY_DIVERGENCE_ANALYSIS_H
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010018
19#include "llvm/ADT/DenseSet.h"
20#include "llvm/IR/Function.h"
21#include "llvm/Pass.h"
22
23namespace llvm {
24class Value;
Andrew Scull0372a572018-11-16 15:47:06 +000025class LegacyDivergenceAnalysis : public FunctionPass {
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010026public:
27 static char ID;
28
Andrew Scull0372a572018-11-16 15:47:06 +000029 LegacyDivergenceAnalysis() : FunctionPass(ID) {
30 initializeLegacyDivergenceAnalysisPass(*PassRegistry::getPassRegistry());
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010031 }
32
33 void getAnalysisUsage(AnalysisUsage &AU) const override;
34
35 bool runOnFunction(Function &F) override;
36
37 // Print all divergent branches in the function.
38 void print(raw_ostream &OS, const Module *) const override;
39
Andrew Scullcdfcccc2018-10-05 20:58:37 +010040 // Returns true if V is divergent at its definition.
41 //
42 // Even if this function returns false, V may still be divergent when used
43 // in a different basic block.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010044 bool isDivergent(const Value *V) const { return DivergentValues.count(V); }
45
46 // Returns true if V is uniform/non-divergent.
Andrew Scullcdfcccc2018-10-05 20:58:37 +010047 //
48 // Even if this function returns true, V may still be divergent when used
49 // in a different basic block.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010050 bool isUniform(const Value *V) const { return !isDivergent(V); }
51
Andrew Scullcdfcccc2018-10-05 20:58:37 +010052 // Keep the analysis results uptodate by removing an erased value.
53 void removeValue(const Value *V) { DivergentValues.erase(V); }
54
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010055private:
56 // Stores all divergent values.
57 DenseSet<const Value *> DivergentValues;
58};
59} // End llvm namespace
60
Andrew Scull0372a572018-11-16 15:47:06 +000061#endif //LLVM_ANALYSIS_LEGACY_DIVERGENCE_ANALYSIS_H