Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Analysis/
H A DCFG.cpp495 LabelMapTy LabelMap; member in __anon8d78c9ed0411::CFGBuilder
1561 LabelMapTy::iterator LI = LabelMap.find(G->getLabel()); in buildCFG()
1564 if (LI == LabelMap.end()) in buildCFG()
1579 LabelMapTy::iterator LI = LabelMap.find(L->getLabel()); in buildCFG()
1582 if (LI == LabelMap.end()) in buildCFG()
1599 LabelMapTy::iterator LI = LabelMap.find(*I); in buildCFG()
1603 if (LI == LabelMap.end()) continue; in buildCFG()
3330 assert(LabelMap.find(L->getDecl()) == LabelMap.end() && in VisitLabelStmt()
3332 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos); in VisitLabelStmt()
3395 LabelMapTy::iterator I = LabelMap.find(G->getLabel()); in VisitGotoStmt()
[all …]
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmt.cpp616 JumpDest &Dest = LabelMap[D]; in getJumpDestForLabel()
633 JumpDest &Dest = LabelMap[D]; in EmitLabel()
671 assert(CGF.LabelMap.count(*i)); in rescopeLabels()
672 JumpDest &dest = CGF.LabelMap.find(*i)->second; in rescopeLabels()
H A DCodeGenFunction.h370 return !LabelMap.empty();
1424 llvm::DenseMap<const LabelDecl*, JumpDest> LabelMap;
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp510 DenseMap<unsigned, unsigned> LabelMap; member in __anoncee47b830111::MatchTable
585 LabelMap.insert(std::make_pair(LabelID, CurrentSize)); in defineLabel()
589 const auto I = LabelMap.find(LabelID); in getLabelIndex()
590 assert(I != LabelMap.end() && "Use of undeclared label"); in getLabelIndex()