Lines Matching refs:SIAnnotateControlFlow
39 class SIAnnotateControlFlow : public FunctionPass { class
94 SIAnnotateControlFlow() : FunctionPass(ID) {} in SIAnnotateControlFlow() function in __anonadaa4d380111::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()
155 bool SIAnnotateControlFlow::isTopOfStack(BasicBlock *BB) { in isTopOfStack()
160 Value *SIAnnotateControlFlow::popSaved() { in popSaved()
165 void SIAnnotateControlFlow::push(BasicBlock *BB, Value *Saved) { in push()
171 bool SIAnnotateControlFlow::isElse(PHINode *Phi) { in isElse()
188 bool SIAnnotateControlFlow::hasKill(const BasicBlock *BB) { in hasKill()
198 bool SIAnnotateControlFlow::eraseIfUnused(PHINode *Phi) { in eraseIfUnused()
206 bool SIAnnotateControlFlow::openIf(BranchInst *Term) { in openIf()
220 bool SIAnnotateControlFlow::insertElse(BranchInst *Term) { in insertElse()
235 Value *SIAnnotateControlFlow::handleLoopCondition( in handleLoopCondition()
271 bool SIAnnotateControlFlow::handleLoop(BranchInst *Term) { in handleLoop()
309 bool SIAnnotateControlFlow::closeControlFlow(BasicBlock *BB) { in closeControlFlow()
349 bool SIAnnotateControlFlow::runOnFunction(Function &F) { in runOnFunction()
403 return new SIAnnotateControlFlow(); in createSIAnnotateControlFlowPass()