Home
last modified time | relevance | path

Searched refs:LabelMap (Results 1 – 3 of 3) sorted by relevance

/minix3/external/bsd/llvm/dist/clang/lib/Analysis/
H A DCFG.cpp315 LabelMapTy LabelMap; member in __anon557f5a500111::CFGBuilder
1016 LabelMapTy::iterator LI = LabelMap.find(G->getLabel()); in buildCFG()
1020 if (LI == LabelMap.end()) continue; in buildCFG()
1034 LabelMapTy::iterator LI = LabelMap.find(*I); in buildCFG()
1038 if (LI == LabelMap.end()) continue; in buildCFG()
2248 assert(LabelMap.find(L->getDecl()) == LabelMap.end() && in VisitLabelStmt()
2250 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos); in VisitLabelStmt()
2290 LabelMapTy::iterator I = LabelMap.find(G->getLabel()); in VisitGotoStmt()
2292 if (I == LabelMap.end()) in VisitGotoStmt()
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp395 JumpDest &Dest = LabelMap[D]; in getJumpDestForLabel()
412 JumpDest &Dest = LabelMap[D]; in EmitLabel()
442 assert(CGF.LabelMap.count(*i)); in rescopeLabels()
443 JumpDest &dest = CGF.LabelMap.find(*i)->second; in rescopeLabels()
H A DCodeGenFunction.h910 llvm::DenseMap<const LabelDecl*, JumpDest> LabelMap; variable