Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp537 LabelMapTy LabelMap; member in __anonef2f84bd0411::CFGBuilder
1726 LabelMapTy::iterator LI = LabelMap.find(G->getLabel()); in buildCFG()
1729 if (LI == LabelMap.end()) in buildCFG()
1739 LabelMapTy::iterator LI = LabelMap.find(L->getLabel()); in buildCFG()
1742 if (LI == LabelMap.end()) in buildCFG()
1758 LabelMapTy::iterator LI = LabelMap.find(LD); in buildCFG()
1762 if (LI == LabelMap.end()) continue; in buildCFG()
3506 assert(!LabelMap.contains(L->getDecl()) && "label already in map"); in VisitLabelStmt()
3507 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos); in VisitLabelStmt()
3571 LabelMapTy::iterator I = LabelMap.find(G->getLabel()); in VisitGotoStmt()
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/
H A DGlobalISelMatchTable.h180 DenseMap<unsigned, unsigned> LabelMap; variable
222 LabelMap.try_emplace(LabelID, CurrentSize); in defineLabel()
226 const auto I = LabelMap.find(LabelID); in getLabelIndex()
227 assert(I != LabelMap.end() && "Use of undeclared label"); in getLabelIndex()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp707 JumpDest &Dest = LabelMap[D]; in getJumpDestForLabel()
724 JumpDest &Dest = LabelMap[D]; in EmitLabel()
761 assert(CGF.LabelMap.count(Label)); in rescopeLabels()
762 JumpDest &dest = CGF.LabelMap.find(Label)->second; in rescopeLabels()
H A DCodeGenFunction.h414 return !LabelMap.empty();
1552 llvm::DenseMap<const LabelDecl *, JumpDest> LabelMap;