Lines Matching refs:LabelAndGotoScopes
66 llvm::DenseMap<Stmt*, unsigned> LabelAndGotoScopes; member in __anond99f67050111::JumpScopeChecker
296 LabelAndGotoScopes[S] = ParentScope; in BuildScopeInformation()
301 LabelAndGotoScopes[S] = ParentScope; in BuildScopeInformation()
317 LabelAndGotoScopes[S] = ParentScope; in BuildScopeInformation()
400 LabelAndGotoScopes[SubStmt] = ParentScope; in BuildScopeInformation()
552 if (CHECK_PERMISSIVE(!LabelAndGotoScopes.count(SC))) in VerifyJumps()
607 if (CHECK_PERMISSIVE(!LabelAndGotoScopes.count(IG))) in VerifyIndirectJumps()
609 unsigned IGScope = LabelAndGotoScopes[IG]; in VerifyIndirectJumps()
627 if (CHECK_PERMISSIVE(!LabelAndGotoScopes.count(TheLabel->getStmt()))) in VerifyIndirectJumps()
629 unsigned LabelScope = LabelAndGotoScopes[TheLabel->getStmt()]; in VerifyIndirectJumps()
783 if (CHECK_PERMISSIVE(!LabelAndGotoScopes.count(From))) in CheckJump()
785 if (CHECK_PERMISSIVE(!LabelAndGotoScopes.count(To))) in CheckJump()
788 unsigned FromScope = LabelAndGotoScopes[From]; in CheckJump()
789 unsigned ToScope = LabelAndGotoScopes[To]; in CheckJump()