Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp515 LabelMapTy LabelMap; member in __anond5061b330411::CFGBuilder
1638 LabelMapTy::iterator LI = LabelMap.find(G->getLabel()); in buildCFG()
1641 if (LI == LabelMap.end()) in buildCFG()
1651 LabelMapTy::iterator LI = LabelMap.find(L->getLabel()); in buildCFG()
1654 if (LI == LabelMap.end()) in buildCFG()
1671 LabelMapTy::iterator LI = LabelMap.find(*I); in buildCFG()
1675 if (LI == LabelMap.end()) continue; in buildCFG()
3397 assert(!LabelMap.contains(L->getDecl()) && "label already in map"); in VisitLabelStmt()
3398 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos); in VisitLabelStmt()
3462 LabelMapTy::iterator I = LabelMap.find(G->getLabel()); in VisitGotoStmt()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DGlobalISelMatchTable.h189 DenseMap<unsigned, unsigned> LabelMap; variable
235 LabelMap.insert(std::make_pair(LabelID, CurrentSize)); in defineLabel()
239 const auto I = LabelMap.find(LabelID); in getLabelIndex()
240 assert(I != LabelMap.end() && "Use of undeclared label"); in getLabelIndex()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp626 JumpDest &Dest = LabelMap[D]; in getJumpDestForLabel()
643 JumpDest &Dest = LabelMap[D]; in EmitLabel()
681 assert(CGF.LabelMap.count(*i)); in rescopeLabels()
682 JumpDest &dest = CGF.LabelMap.find(*i)->second; in rescopeLabels()
H A DCodeGenFunction.h379 return !LabelMap.empty();
1433 llvm::DenseMap<const LabelDecl*, JumpDest> LabelMap;