Searched refs:LabelMap (Results 1 - 3 of 3) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Analysis/
H A DCFG.cpp384 // LabelMap records the mapping from Label expressions to their jump targets.
386 LabelMapTy LabelMap; member in class:__anon3711::CFGBuilder
1063 LabelMapTy::iterator LI = LabelMap.find(G->getLabel());
1067 if (LI == LabelMap.end()) continue;
1081 LabelMapTy::iterator LI = LabelMap.find(*I);
1085 if (LI == LabelMap.end()) continue;
2313 assert(LabelMap.find(L->getDecl()) == LabelMap.end() &&
2315 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos);
2367 LabelMapTy::iterator I = LabelMap
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp423 JumpDest &Dest = LabelMap[D];
440 JumpDest &Dest = LabelMap[D];
469 assert(CGF.LabelMap.count(*i));
470 JumpDest &dest = CGF.LabelMap.find(*i)->second;
H A DCodeGenFunction.h929 /// LabelMap - This keeps track of the LLVM basic block for each C label.
930 llvm::DenseMap<const LabelDecl*, JumpDest> LabelMap; member in class:clang::CodeGen::CodeGenFunction

Completed in 51 milliseconds