Lines Matching defs:LabelMap
513 // LabelMap records the mapping from Label expressions to their jump targets.
515 LabelMapTy LabelMap;
1645 LabelMapTy::iterator LI = LabelMap.find(G->getLabel());
1648 if (LI == LabelMap.end())
1658 LabelMapTy::iterator LI = LabelMap.find(L->getLabel());
1661 if (LI == LabelMap.end())
1678 LabelMapTy::iterator LI = LabelMap.find(*I);
1682 if (LI == LabelMap.end()) continue;
3404 assert(!LabelMap.contains(L->getDecl()) && "label already in map");
3405 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos);
3469 LabelMapTy::iterator I = LabelMap.find(G->getLabel());
3471 if (I == LabelMap.end())