Home
last modified time | relevance | path

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

/art/runtime/
Dsubtype_check.h322 SubtypeCheckInfo sci = GetSubtypeCheckInfo(klass); in GetEncodedPathToRootForTarget() local
323 DCHECK_EQ(SubtypeCheckInfo::kAssigned, sci.GetState()); in GetEncodedPathToRootForTarget()
324 return sci.GetEncodedPathToRoot(); in GetEncodedPathToRootForTarget()
336 SubtypeCheckInfo sci = GetSubtypeCheckInfo(klass); in GetEncodedPathToRootMask() local
337 DCHECK_EQ(SubtypeCheckInfo::kAssigned, sci.GetState()); in GetEncodedPathToRootMask()
338 return sci.GetEncodedPathToRootMask(); in GetEncodedPathToRootMask()
355 SubtypeCheckInfo sci = GetSubtypeCheckInfo(source); in IsSubtypeOf() local
358 return sci.IsSubtypeOf(target_sci); in IsSubtypeOf()
410 SubtypeCheckInfo sci = GetSubtypeCheckInfo(klass, parent_depth + 1u); in InitializeOrAssign() local
414 const SubtypeCheckInfo::State sci_state = sci.GetState(); in InitializeOrAssign()
[all …]
Dsubtype_check_info_test.cc261 SubtypeCheckInfo sci = in TEST_F() local
267 EXPECT_EQ(MaxInt<StorageType>(LenForPos()), sci.GetEncodedPathToRoot()); in TEST_F()
312 SubtypeCheckInfo sci = SubtypeCheckInfo::CreateRoot(); in TEST_F() local
313 EXPECT_EQ(SubtypeCheckInfo::kAssigned, sci.GetState()); // Root is always assigned. in TEST_F()
314 EXPECT_EQ(0u, GetPathToRoot(sci).Length()); // Root's path length is 0. in TEST_F()
315 EXPECT_TRUE(HasNext(sci)); // Root always has a "Next". in TEST_F()
316 EXPECT_EQ(MakeBitStringChar(1u), sci.GetNext()); // Next>=1 to disambiguate from Uninitialized. in TEST_F()
/art/tools/jvmti-agents/ti-alloc-sample/
Dti_alloc_sample.cc284 ScopedClassInfo sci(jvmti, klass); in formatAllocation() local
285 if (sci.Init(/*get_generic=*/false)) { in formatAllocation()
286 allocation << ", jclass[" << sci << "]"; in formatAllocation()
/art/tools/jvmti-agents/ti-fast/
Dtifast.cc528 ScopedClassInfo sci(jvmti, klass); in PrintRest() local
529 if (sci.Init(event_ != JVMTI_EVENT_VM_OBJECT_ALLOC)) { in PrintRest()
530 stream << ", jobject[type: " << sci << "]"; in PrintRest()
548 ScopedClassInfo sci(jvmti, klass); in PrintRest() local
549 if (sci.Init(/*get_generic=*/event_ != JVMTI_EVENT_VM_OBJECT_ALLOC)) { in PrintRest()
550 stream << ", jclass[" << sci << "]"; in PrintRest()
/art/test/ti-stress/
Dstress.cc728 ScopedClassInfo sci(jvmti, k); in WatchAllFields() local
729 if (sci.Init()) { in WatchAllFields()
730 LOG(INFO) << "NOTE: class " << sci.GetName() << " already loaded."; in WatchAllFields()