Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dmethod_verifier.cc3185 const RegType* common_super = nullptr; in GetCaughtExceptionType() local
3194 common_super = &reg_types_.JavaLangThrowable(false); in GetCaughtExceptionType()
3206 } else if (common_super == nullptr) { in GetCaughtExceptionType()
3207 common_super = &exception; in GetCaughtExceptionType()
3208 } else if (common_super->Equals(exception)) { in GetCaughtExceptionType()
3211 common_super = &common_super->Merge(exception, &reg_types_); in GetCaughtExceptionType()
3213 reg_types_.JavaLangThrowable(false).IsAssignableFrom(*common_super), in GetCaughtExceptionType()
3225 if (common_super == nullptr) { in GetCaughtExceptionType()
3230 return *common_super; in GetCaughtExceptionType()