Lines Matching refs:JumpScope
690 unsigned JumpScope = LabelAndGotoScopes[G]; in VerifyJumps() local
692 if (JumpScope != TargetScope) in VerifyJumps()
693 DiagnoseIndirectOrAsmJump(G, JumpScope, LD, TargetScope); in VerifyJumps()
756 using JumpScope = std::pair<unsigned, Stmt *>; in VerifyIndirectJumps() typedef
757 SmallVector<JumpScope, 32> JumpScopes; in VerifyIndirectJumps()
814 for (auto [JumpScope, JumpStmt] : JumpScopes) { in VerifyIndirectJumps()
815 unsigned Scope = JumpScope; in VerifyIndirectJumps()
826 for (unsigned S = JumpScope; S != Scope; S = Scopes[S].ParentScope) in VerifyIndirectJumps()
845 DiagnoseIndirectOrAsmJump(JumpStmt, JumpScope, TargetLabel, TargetScope); in VerifyIndirectJumps()
888 void JumpScopeChecker::DiagnoseIndirectOrAsmJump(Stmt *Jump, unsigned JumpScope, in DiagnoseIndirectOrAsmJump() argument
891 if (CHECK_PERMISSIVE(JumpScope == TargetScope)) in DiagnoseIndirectOrAsmJump()
894 unsigned Common = GetDeepestCommonScope(JumpScope, TargetScope); in DiagnoseIndirectOrAsmJump()
898 for (unsigned I = JumpScope; I != Common; I = Scopes[I].ParentScope) in DiagnoseIndirectOrAsmJump()