Home
last modified time | relevance | path

Searched refs:common_super (Results 1 – 1 of 1) sorted by relevance

/art/runtime/verifier/
Dmethod_verifier.cc3694 const RegType* common_super = nullptr; in GetCaughtExceptionType() local
3703 common_super = &reg_types_.JavaLangThrowable(false); in GetCaughtExceptionType()
3716 } else if (common_super == nullptr) { in GetCaughtExceptionType()
3717 common_super = &exception; in GetCaughtExceptionType()
3718 } else if (common_super->Equals(exception)) { in GetCaughtExceptionType()
3721 common_super = &common_super->Merge(exception, &reg_types_); in GetCaughtExceptionType()
3723 reg_types_.JavaLangThrowable(false).IsAssignableFrom(*common_super), in GetCaughtExceptionType()
3735 if (common_super == nullptr) { in GetCaughtExceptionType()
3740 return *common_super; in GetCaughtExceptionType()