Lines Matching defs:LabelMap
513 // LabelMap records the mapping from Label expressions to their jump targets.
515 LabelMapTy LabelMap;
1638 LabelMapTy::iterator LI = LabelMap.find(G->getLabel());
1641 if (LI == LabelMap.end())
1651 LabelMapTy::iterator LI = LabelMap.find(L->getLabel());
1654 if (LI == LabelMap.end())
1671 LabelMapTy::iterator LI = LabelMap.find(*I);
1675 if (LI == LabelMap.end()) continue;
3394 assert(!LabelMap.contains(L->getDecl()) && "label already in map");
3395 LabelMap[L->getDecl()] = JumpTarget(LabelBlock, ScopePos);
3459 LabelMapTy::iterator I = LabelMap.find(G->getLabel());
3461 if (I == LabelMap.end())