Home | History | Annotate | Download | only in Analysis

Lines Matching defs:LabelMap

307   // LabelMap records the mapping from Label expressions to their jump targets.
309 LabelMapTy LabelMap;
946 LabelMapTy::iterator LI = LabelMap.find(G->getLabel());
950 if (LI == LabelMap.end()) continue;
964 LabelMapTy::iterator LI = LabelMap.find(*I);
968 if (LI == LabelMap.end()) continue;
2181 assert(LabelMap.find(L->getDecl()) == LabelMap.end() &&
2183 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos);
2223 LabelMapTy::iterator I = LabelMap.find(G->getLabel());
2225 if (I == LabelMap.end())