Searched defs:precise (Results 1 - 4 of 4) sorted by relevance

/art/runtime/verifier/
H A Dreg_type_cache-inl.h34 inline ConstantType& RegTypeCache::FromCat1Const(int32_t value, bool precise) { argument
35 // We only expect 0 to be a precise constant.
36 DCHECK(value != 0 || precise);
37 if (precise && (value >= kMinSmallConstant) && (value <= kMaxSmallConstant)) {
40 return FromCat1NonSmallConstant(value, precise);
H A Dreg_type_cache.cc32 static bool MatchingPrecisionForClass(RegType* entry, bool precise)
34 if (entry->IsPreciseReference() == precise) {
35 // We were or weren't looking for a precise reference and we found what we need.
38 if (!precise && entry->GetClass()->CannotBeAssignedFromOtherTypes()) {
39 // We weren't looking for a precise reference, as we're looking up based on a descriptor, but
40 // we found a matching entry based on the descriptor. Return the precise entry in that case.
69 bool precise) {
94 return From(loader, descriptor, precise);
125 bool RegTypeCache::MatchDescriptor(size_t idx, const StringPiece& descriptor, bool precise) { argument
131 return MatchingPrecisionForClass(entry, precise);
68 FromDescriptor(mirror::ClassLoader* loader, const char* descriptor, bool precise) argument
159 From(mirror::ClassLoader* loader, const char* descriptor, bool precise) argument
213 FromClass(const char* descriptor, mirror::Class* klass, bool precise) argument
505 FromCat1NonSmallConstant(int32_t value, bool precise) argument
524 FromCat2ConstLo(int32_t value, bool precise) argument
542 FromCat2ConstHi(int32_t value, bool precise) argument
[all...]
H A Dmethod_verifier.cc4133 RegType& MethodVerifier::DetermineCat1Constant(int32_t value, bool precise) { argument
4134 if (precise) {
/art/runtime/base/
H A Dtiming_logger.cc130 TimingLogger::TimingLogger(const char* name, bool precise, bool verbose) argument
131 : name_(name), precise_(precise), verbose_(verbose) {

Completed in 1228 milliseconds