Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
HDCFG.cpp496 LabelMapTy LabelMap; member in __anon4992f0f40411::CFGBuilder
1552 LabelMapTy::iterator LI = LabelMap.find(G->getLabel()); in buildCFG()
1555 if (LI == LabelMap.end()) in buildCFG()
1570 LabelMapTy::iterator LI = LabelMap.find(L->getLabel()); in buildCFG()
1573 if (LI == LabelMap.end()) in buildCFG()
1590 LabelMapTy::iterator LI = LabelMap.find(*I); in buildCFG()
1594 if (LI == LabelMap.end()) continue; in buildCFG()
3223 assert(LabelMap.find(L->getDecl()) == LabelMap.end() && in VisitLabelStmt()
3225 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos); in VisitLabelStmt()
3277 LabelMapTy::iterator I = LabelMap.find(G->getLabel()); in VisitGotoStmt()
[all …]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGStmt.cpp529 JumpDest &Dest = LabelMap[D]; in getJumpDestForLabel()
546 JumpDest &Dest = LabelMap[D]; in EmitLabel()
584 assert(CGF.LabelMap.count(*i)); in rescopeLabels()
585 JumpDest &dest = CGF.LabelMap.find(*i)->second; in rescopeLabels()
HDCodeGenFunction.h339 return !LabelMap.empty();
1257 llvm::DenseMap<const LabelDecl*, JumpDest> LabelMap;
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
HDGlobalISelEmitter.cpp488 DenseMap<unsigned, unsigned> LabelMap; member in __anon51f7cbaa0111::MatchTable
563 LabelMap.insert(std::make_pair(LabelID, CurrentSize)); in defineLabel()
567 const auto I = LabelMap.find(LabelID); in getLabelIndex()
568 assert(I != LabelMap.end() && "Use of undeclared label"); in getLabelIndex()