Lines Matching refs:SIAnnotateControlFlow
39 class SIAnnotateControlFlow : public FunctionPass { class
94 SIAnnotateControlFlow() : FunctionPass(ID) {} in SIAnnotateControlFlow() function in __anon9f980a420111::SIAnnotateControlFlow
113 INITIALIZE_PASS_BEGIN(SIAnnotateControlFlow, DEBUG_TYPE,
118 INITIALIZE_PASS_END(SIAnnotateControlFlow, DEBUG_TYPE,
121 char SIAnnotateControlFlow::ID = 0;
124 void SIAnnotateControlFlow::initialize(Module &M, const GCNSubtarget &ST) { in initialize()
149 bool SIAnnotateControlFlow::isUniform(BranchInst *T) { in isUniform()
154 bool SIAnnotateControlFlow::isTopOfStack(BasicBlock *BB) { in isTopOfStack()
159 Value *SIAnnotateControlFlow::popSaved() { in popSaved()
164 void SIAnnotateControlFlow::push(BasicBlock *BB, Value *Saved) { in push()
170 bool SIAnnotateControlFlow::isElse(PHINode *Phi) { in isElse()
187 bool SIAnnotateControlFlow::hasKill(const BasicBlock *BB) { in hasKill()
197 bool SIAnnotateControlFlow::eraseIfUnused(PHINode *Phi) { in eraseIfUnused()
205 bool SIAnnotateControlFlow::openIf(BranchInst *Term) { in openIf()
219 bool SIAnnotateControlFlow::insertElse(BranchInst *Term) { in insertElse()
234 Value *SIAnnotateControlFlow::handleLoopCondition( in handleLoopCondition()
270 bool SIAnnotateControlFlow::handleLoop(BranchInst *Term) { in handleLoop()
308 bool SIAnnotateControlFlow::closeControlFlow(BasicBlock *BB) { in closeControlFlow()
352 bool SIAnnotateControlFlow::runOnFunction(Function &F) { in runOnFunction()
406 return new SIAnnotateControlFlow(); in createSIAnnotateControlFlowPass()