Lines Matching refs:LabelAndGotoScopes
66 llvm::DenseMap<Stmt*, unsigned> LabelAndGotoScopes; member in __anond99f67050111::JumpScopeChecker
297 LabelAndGotoScopes[S] = ParentScope; in BuildScopeInformation()
302 LabelAndGotoScopes[S] = ParentScope; in BuildScopeInformation()
322 LabelAndGotoScopes[S] = ParentScope; in BuildScopeInformation()
536 LabelAndGotoScopes[S] = ParentScope; in BuildScopeInformation()
565 LabelAndGotoScopes[SubStmt] = ParentScope; in BuildScopeInformation()
606 if (CHECK_PERMISSIVE(!LabelAndGotoScopes.count(SC))) in VerifyJumps()
661 if (CHECK_PERMISSIVE(!LabelAndGotoScopes.count(IG))) in VerifyIndirectJumps()
663 unsigned IGScope = LabelAndGotoScopes[IG]; in VerifyIndirectJumps()
681 if (CHECK_PERMISSIVE(!LabelAndGotoScopes.count(TheLabel->getStmt()))) in VerifyIndirectJumps()
683 unsigned LabelScope = LabelAndGotoScopes[TheLabel->getStmt()]; in VerifyIndirectJumps()
837 if (CHECK_PERMISSIVE(!LabelAndGotoScopes.count(From))) in CheckJump()
839 if (CHECK_PERMISSIVE(!LabelAndGotoScopes.count(To))) in CheckJump()
842 unsigned FromScope = LabelAndGotoScopes[From]; in CheckJump()
843 unsigned ToScope = LabelAndGotoScopes[To]; in CheckJump()