Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/Analysis/
H A DCFG.cpp499 LabelMapTy LabelMap; member in __anon8f5940ea0411::CFGBuilder
1619 LabelMapTy::iterator LI = LabelMap.find(G->getLabel()); in buildCFG()
1622 if (LI == LabelMap.end()) in buildCFG()
1637 LabelMapTy::iterator LI = LabelMap.find(L->getLabel()); in buildCFG()
1640 if (LI == LabelMap.end()) in buildCFG()
1657 LabelMapTy::iterator LI = LabelMap.find(*I); in buildCFG()
1661 if (LI == LabelMap.end()) continue; in buildCFG()
3390 assert(LabelMap.find(L->getDecl()) == LabelMap.end() && in VisitLabelStmt()
3392 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos); in VisitLabelStmt()
3456 LabelMapTy::iterator I = LabelMap.find(G->getLabel()); in VisitGotoStmt()
[all …]
/openbsd/gnu/llvm/clang/lib/CodeGen/
H A DCGStmt.cpp619 JumpDest &Dest = LabelMap[D]; in getJumpDestForLabel()
636 JumpDest &Dest = LabelMap[D]; in EmitLabel()
674 assert(CGF.LabelMap.count(*i)); in rescopeLabels()
675 JumpDest &dest = CGF.LabelMap.find(*i)->second; in rescopeLabels()
H A DCodeGenFunction.h371 return !LabelMap.empty();
1425 llvm::DenseMap<const LabelDecl*, JumpDest> LabelMap;
/openbsd/gnu/llvm/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp510 DenseMap<unsigned, unsigned> LabelMap; member in __anon64c0a0e00111::MatchTable
586 LabelMap.insert(std::make_pair(LabelID, CurrentSize)); in defineLabel()
590 const auto I = LabelMap.find(LabelID); in getLabelIndex()
591 assert(I != LabelMap.end() && "Use of undeclared label"); in getLabelIndex()