Lines Matching refs:LabelAndGotoScopes
71 llvm::DenseMap<Stmt*, unsigned> LabelAndGotoScopes; member in __anon4a80b0130111::JumpScopeChecker
337 LabelAndGotoScopes[S] = ParentScope; in BuildScopeInformation()
342 LabelAndGotoScopes[S] = ParentScope; in BuildScopeInformation()
362 LabelAndGotoScopes[S] = ParentScope; in BuildScopeInformation()
371 LabelAndGotoScopes[S] = ParentScope; in BuildScopeInformation()
594 LabelAndGotoScopes[S] = ParentScope; in BuildScopeInformation()
600 LabelAndGotoScopes[AS] = ParentScope; in BuildScopeInformation()
641 LabelAndGotoScopes[SubStmt] = ParentScope; in BuildScopeInformation()
682 if (CHECK_PERMISSIVE(!LabelAndGotoScopes.count(SC))) in VerifyJumps()
740 if (CHECK_PERMISSIVE(!LabelAndGotoScopes.count(IG))) in VerifyIndirectOrAsmJumps()
742 unsigned IGScope = LabelAndGotoScopes[IG]; in VerifyIndirectOrAsmJumps()
761 if (CHECK_PERMISSIVE(!LabelAndGotoScopes.count(TheLabel->getStmt()))) in VerifyIndirectOrAsmJumps()
763 unsigned LabelScope = LabelAndGotoScopes[TheLabel->getStmt()]; in VerifyIndirectOrAsmJumps()
922 if (CHECK_PERMISSIVE(!LabelAndGotoScopes.count(From))) in CheckJump()
924 if (CHECK_PERMISSIVE(!LabelAndGotoScopes.count(To))) in CheckJump()
927 unsigned FromScope = LabelAndGotoScopes[From]; in CheckJump()
928 unsigned ToScope = LabelAndGotoScopes[To]; in CheckJump()
1002 for (unsigned I = LabelAndGotoScopes[AS]; I; I = Scopes[I].ParentScope) { in VerifyMustTailStmts()