Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dreg_type_cache-inl.h40 inline const ConstantType& RegTypeCache::FromCat1Const(int32_t value, bool precise) { in FromCat1Const() argument
42 DCHECK(value != 0 || precise); in FromCat1Const()
43 if (precise && (value >= kMinSmallConstant) && (value <= kMaxSmallConstant)) { in FromCat1Const()
46 return FromCat1NonSmallConstant(value, precise); in FromCat1Const()
159 inline const RegType& RegTypeCache::JavaLangThrowable(bool precise) { in JavaLangThrowable() argument
162 precise); in JavaLangThrowable()
163 if (precise) { in JavaLangThrowable()
172 inline const RegType& RegTypeCache::JavaLangObject(bool precise) { in JavaLangObject() argument
173 const RegType* result = &FromClass("Ljava/lang/Object;", GetClassRoot<mirror::Object>(), precise); in JavaLangObject()
174 if (precise) { in JavaLangObject()
Dreg_type_cache.h77 const RegType& From(ObjPtr<mirror::ClassLoader> loader, const char* descriptor, bool precise)
80 const RegType* FindClass(ObjPtr<mirror::Class> klass, bool precise) const
85 bool precise)
88 const RegType& FromClass(const char* descriptor, ObjPtr<mirror::Class> klass, bool precise)
90 const ConstantType& FromCat1Const(int32_t value, bool precise)
92 const ConstantType& FromCat2ConstLo(int32_t value, bool precise)
94 const ConstantType& FromCat2ConstHi(int32_t value, bool precise)
98 bool precise)
137 const RegType& JavaLangThrowable(bool precise) REQUIRES_SHARED(Locks::mutator_lock_);
138 const RegType& JavaLangObject(bool precise) REQUIRES_SHARED(Locks::mutator_lock_);
[all …]
Dreg_type_cache.cc42 ALWAYS_INLINE static inline bool MatchingPrecisionForClass(const RegType* entry, bool precise) in MatchingPrecisionForClass() argument
44 if (entry->IsPreciseReference() == precise) { in MatchingPrecisionForClass()
48 if (!precise && entry->GetClass()->CannotBeAssignedFromOtherTypes()) { in MatchingPrecisionForClass()
82 bool precise) { in FromDescriptor() argument
107 return From(loader, descriptor, precise); in FromDescriptor()
138 bool RegTypeCache::MatchDescriptor(size_t idx, const std::string_view& descriptor, bool precise) { in MatchDescriptor() argument
144 return MatchingPrecisionForClass(entry, precise); in MatchDescriptor()
181 bool precise) { in From() argument
186 if (MatchDescriptor(i, sv_descriptor, precise)) { in From()
198 DCHECK(!precise || klass->IsInstantiable()); in From()
[all …]
Dmethod_verifier.cc554 const RegType& DetermineCat1Constant(int32_t value, bool precise)
562 const RegType& FromClass(const char* descriptor, ObjPtr<mirror::Class> klass, bool precise)
3727 bool precise = klass->CannotBeAssignedFromOtherTypes(); in ResolveClass() local
3728 if (precise && !IsInstantiableOrPrimitive(klass)) { in ResolveClass()
3731 precise = false; in ResolveClass()
3733 result = reg_types_.FindClass(klass, precise); in ResolveClass()
3736 result = reg_types_.InsertClass(descriptor, klass, precise); in ResolveClass()
5042 const RegType& MethodVerifier<kVerifierDebug>::DetermineCat1Constant(int32_t value, bool precise) { in DetermineCat1Constant() argument
5043 if (precise) { in DetermineCat1Constant()
5073 bool precise) { in FromClass() argument
[all …]
/art/test/072-precise-gc/
Dinfo.txt1 Try to detect whether precise GC is working.
/art/test/800-smali/smali/
Db_23502994.smali10 # the register type more precise.
36 # more precise.
Db_22411633_2.smali17 # Create a non-precise object reference. We can do this by merging to objects together
Db_22881413.smali5 # avoid automatically getting precise reference types.
/art/tools/veridex/
Dveridex.cc79 bool precise = true; member
105 options->precise = false; in ParseArgs()
227 api_finder.Dump(std::cout, &stats, !options.precise); in Run()
229 if (options.precise) { in Run()
237 if (options.precise) { in Run()
/art/runtime/base/
Dtiming_logger.cc134 bool precise, in TimingLogger() argument
137 : name_(name), precise_(precise), verbose_(verbose), kind_(kind) { in TimingLogger()
Dtiming_logger.h155 bool precise,