Lines Matching defs:Fn
62 static SmallVector<CallBrInst *, 2> FindCallBrs(Function &Fn);
70 bool runOnFunction(Function &Fn) override;
76 PreservedAnalyses CallBrPreparePass::run(Function &Fn,
79 SmallVector<CallBrInst *, 2> CBRs = FindCallBrs(Fn);
84 auto &DT = FAM.getResult<DominatorTreeAnalysis>(Fn);
109 SmallVector<CallBrInst *, 2> FindCallBrs(Function &Fn) {
111 for (BasicBlock &BB : Fn)
222 bool CallBrPrepare::runOnFunction(Function &Fn) {
224 SmallVector<CallBrInst *, 2> CBRs = FindCallBrs(Fn);
241 LazilyComputedDomTree.emplace(Fn);