Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp494 LabelMapTy LabelMap; member in __anona1d14af10411::CFGBuilder
1557 LabelMapTy::iterator LI = LabelMap.find(G->getLabel()); in buildCFG()
1560 if (LI == LabelMap.end()) in buildCFG()
1575 LabelMapTy::iterator LI = LabelMap.find(L->getLabel()); in buildCFG()
1578 if (LI == LabelMap.end()) in buildCFG()
1595 LabelMapTy::iterator LI = LabelMap.find(*I); in buildCFG()
1599 if (LI == LabelMap.end()) continue; in buildCFG()
3249 assert(LabelMap.find(L->getDecl()) == LabelMap.end() && in VisitLabelStmt()
3251 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos); in VisitLabelStmt()
3303 LabelMapTy::iterator I = LabelMap.find(G->getLabel()); in VisitGotoStmt()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp581 JumpDest &Dest = LabelMap[D]; in getJumpDestForLabel()
598 JumpDest &Dest = LabelMap[D]; in EmitLabel()
636 assert(CGF.LabelMap.count(*i)); in rescopeLabels()
637 JumpDest &dest = CGF.LabelMap.find(*i)->second; in rescopeLabels()
H A DCodeGenFunction.h371 return !LabelMap.empty();
1382 llvm::DenseMap<const LabelDecl*, JumpDest> LabelMap;
/freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp507 DenseMap<unsigned, unsigned> LabelMap; member in __anon612774070111::MatchTable
582 LabelMap.insert(std::make_pair(LabelID, CurrentSize)); in defineLabel()
586 const auto I = LabelMap.find(LabelID); in getLabelIndex()
587 assert(I != LabelMap.end() && "Use of undeclared label"); in getLabelIndex()