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

/freebsd-12-stable/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp494 // LabelMap records the mapping from Label expressions to their jump targets.
496 LabelMapTy LabelMap;
1552 LabelMapTy::iterator LI = LabelMap.find(G->getLabel());
1555 if (LI == LabelMap.end())
1570 LabelMapTy::iterator LI = LabelMap.find(L->getLabel());
1573 if (LI == LabelMap.end())
1590 LabelMapTy::iterator LI = LabelMap.find(*I);
1594 if (LI == LabelMap.end()) continue;
3223 assert(LabelMap.find(L->getDecl()) == LabelMap
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp529 JumpDest &Dest = LabelMap[D];
546 JumpDest &Dest = LabelMap[D];
584 assert(CGF.LabelMap.count(*i));
585 JumpDest &dest = CGF.LabelMap.find(*i)->second;
H A DCodeGenFunction.h339 return !LabelMap.empty();
1256 /// LabelMap - This keeps track of the LLVM basic block for each C label.
1257 llvm::DenseMap<const LabelDecl*, JumpDest> LabelMap; member in class:clang::CodeGen::CodeGenFunction
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp488 DenseMap<unsigned, unsigned> LabelMap; member in class:__anon5929::MatchTable
563 LabelMap.insert(std::make_pair(LabelID, CurrentSize));
567 const auto I = LabelMap.find(LabelID);
568 assert(I != LabelMap.end() && "Use of undeclared label");

Completed in 146 milliseconds