Home
last modified time | relevance | path

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

/external/clang/lib/Analysis/
DCFG.cpp386 LabelMapTy LabelMap; member in __anon83acd1880111::CFGBuilder
1063 LabelMapTy::iterator LI = LabelMap.find(G->getLabel()); in buildCFG()
1067 if (LI == LabelMap.end()) continue; in buildCFG()
1081 LabelMapTy::iterator LI = LabelMap.find(*I); in buildCFG()
1085 if (LI == LabelMap.end()) continue; in buildCFG()
2327 assert(LabelMap.find(L->getDecl()) == LabelMap.end() && in VisitLabelStmt()
2329 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos); in VisitLabelStmt()
2381 LabelMapTy::iterator I = LabelMap.find(G->getLabel()); in VisitGotoStmt()
2383 if (I == LabelMap.end()) in VisitGotoStmt()
/external/clang/lib/CodeGen/
DCGStmt.cpp453 JumpDest &Dest = LabelMap[D]; in getJumpDestForLabel()
470 JumpDest &Dest = LabelMap[D]; in EmitLabel()
499 assert(CGF.LabelMap.count(*i)); in rescopeLabels()
500 JumpDest &dest = CGF.LabelMap.find(*i)->second; in rescopeLabels()
DCodeGenFunction.h955 llvm::DenseMap<const LabelDecl*, JumpDest> LabelMap; variable
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
DGlobalISelEmitter.cpp456 DenseMap<unsigned, unsigned> LabelMap; member in __anon685cc1160111::MatchTable
531 LabelMap.insert(std::make_pair(LabelID, CurrentSize)); in defineLabel()
535 const auto I = LabelMap.find(LabelID); in getLabelIndex()
536 assert(I != LabelMap.end() && "Use of undeclared label"); in getLabelIndex()