Home
last modified time | relevance | path

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

/art/compiler/dex/
Dtype_inference.cc42 if (UNLIKELY(component_type.ArrayDepth() == kMaxArrayDepth)) { in ArrayTypeFromComponent()
74 if (UNLIKELY(array_depth > kMaxArrayDepth)) { in DexType()
75 LOG(WARNING) << "Array depth exceeds " << kMaxArrayDepth << ": " << array_depth in DexType()
77 array_depth = kMaxArrayDepth; in DexType()
Dtype_inference.h329 static constexpr uint32_t kMaxArrayDepth = static_cast<uint32_t>(-1) >> kBitArrayDepthStart; member