HomeSort by relevance Sort by last modified time
    Searched defs:RegTypeCache (Results 1 - 2 of 2) sorted by null

  /art/runtime/verifier/
reg_type_cache.h 63 class RegTypeCache {
65 RegTypeCache(bool can_load_classes, ScopedArenaAllocator& allocator, bool can_suspend = true);
66 ~RegTypeCache();
68 if (!RegTypeCache::primitive_initialized_) {
69 CHECK_EQ(RegTypeCache::primitive_count_, 0);
71 CHECK_EQ(RegTypeCache::primitive_count_, kNumPrimitivesAndSmallConstants);
72 RegTypeCache::primitive_initialized_ = true;
194 // Number of well known primitives that will be copied into a RegTypeCache upon construction.
209 DISALLOW_COPY_AND_ASSIGN(RegTypeCache);
reg_type_cache.cc 37 bool RegTypeCache::primitive_initialized_ = false;
38 uint16_t RegTypeCache::primitive_count_ = 0;
39 const PreciseConstType* RegTypeCache::small_precise_constants_[kMaxSmallConstant -
57 void RegTypeCache::FillPrimitiveAndSmallConstantTypes() {
80 const RegType& RegTypeCache::FromDescriptor(ObjPtr<mirror::ClassLoader> loader,
83 DCHECK(RegTypeCache::primitive_initialized_);
113 const RegType& RegTypeCache::RegTypeFromPrimitiveType(Primitive::Type prim_type) const {
114 DCHECK(RegTypeCache::primitive_initialized_);
138 bool RegTypeCache::MatchDescriptor(size_t idx, const std::string_view& descriptor, bool precise) {
152 ObjPtr<mirror::Class> RegTypeCache::ResolveClass(const char* descriptor
    [all...]

Completed in 114 milliseconds