Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DCFG.cpp494 LabelMapTy LabelMap; member in __anon654da8e80411::CFGBuilder
1550 LabelMapTy::iterator LI = LabelMap.find(G->getLabel()); in buildCFG()
1553 if (LI == LabelMap.end()) in buildCFG()
1568 LabelMapTy::iterator LI = LabelMap.find(L->getLabel()); in buildCFG()
1571 if (LI == LabelMap.end()) in buildCFG()
1588 LabelMapTy::iterator LI = LabelMap.find(*I); in buildCFG()
1592 if (LI == LabelMap.end()) continue; in buildCFG()
3242 assert(LabelMap.find(L->getDecl()) == LabelMap.end() && in VisitLabelStmt()
3244 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos); in VisitLabelStmt()
3296 LabelMapTy::iterator I = LabelMap.find(G->getLabel()); in VisitGotoStmt()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp578 JumpDest &Dest = LabelMap[D]; in getJumpDestForLabel()
595 JumpDest &Dest = LabelMap[D]; in EmitLabel()
633 assert(CGF.LabelMap.count(*i)); in rescopeLabels()
634 JumpDest &dest = CGF.LabelMap.find(*i)->second; in rescopeLabels()
H A DCodeGenFunction.h371 return !LabelMap.empty();
1382 llvm::DenseMap<const LabelDecl*, JumpDest> LabelMap;
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp494 DenseMap<unsigned, unsigned> LabelMap; member in __anon332dbd1e0111::MatchTable
569 LabelMap.insert(std::make_pair(LabelID, CurrentSize)); in defineLabel()
573 const auto I = LabelMap.find(LabelID); in getLabelIndex()
574 assert(I != LabelMap.end() && "Use of undeclared label"); in getLabelIndex()