Home
last modified time | relevance | path

Searched refs:boot_image_live_objects (Results 1 – 8 of 8) sorted by relevance

/aosp12/art/compiler/optimizing/
H A Dintrinsic_objects.cc48 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects) in HasIntrinsicObjects() argument
50 DCHECK(boot_image_live_objects != nullptr); in HasIntrinsicObjects()
51 uint32_t length = static_cast<uint32_t>(boot_image_live_objects->GetLength()); in HasIntrinsicObjects()
57 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects) { in GetIntegerValueOfCache() argument
58 if (!HasIntrinsicObjects(boot_image_live_objects)) { in GetIntegerValueOfCache()
72 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects, in GetIntegerValueOfObject() argument
74 DCHECK(HasIntrinsicObjects(boot_image_live_objects)); in GetIntegerValueOfObject()
88 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects) { in GetIntegerValueOfArrayDataOffset() argument
89 DCHECK(HasIntrinsicObjects(boot_image_live_objects)); in GetIntegerValueOfArrayDataOffset()
92 DCHECK_EQ(GetIntegerValueOfObject(boot_image_live_objects, 0u), in GetIntegerValueOfArrayDataOffset()
[all …]
H A Dintrinsics.cc68 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = in GetBootImageLiveObjects() local
71 DCHECK(boot_image_live_objects != nullptr); in GetBootImageLiveObjects()
72 DCHECK(heap->ObjectIsInBootImageSpace(boot_image_live_objects)); in GetBootImageLiveObjects()
73 return boot_image_live_objects; in GetBootImageLiveObjects()
133 IntrinsicObjects::GetIntegerValueOfObject(boot_image_live_objects, i); in CheckIntegerCache()
225 IntrinsicObjects::GetIntegerValueOfCache(boot_image_live_objects); in ComputeIntegerValueOfLocations()
240 IntrinsicObjects::GetIntegerValueOfObject(boot_image_live_objects, 0u); in ComputeIntegerValueOfLocations()
327 IntrinsicObjects::GetIntegerValueOfObject(boot_image_live_objects, 0u); in ComputeIntegerValueOfInfo()
343 IntrinsicObjects::GetIntegerValueOfCache(boot_image_live_objects)->GetLength()); in ComputeIntegerValueOfInfo()
350 IntrinsicObjects::GetIntegerValueOfObject(boot_image_live_objects, index); in ComputeIntegerValueOfInfo()
[all …]
H A Dintrinsic_objects.h62 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects)
65 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects,
68 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects)
/aosp12/art/runtime/
H A Druntime.cc1846 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = in Init() local
1850 boot_image_live_objects->Get(ImageHeader::kOomeWhenThrowingException)->AsThrowable()); in Init()
1854 boot_image_live_objects->Get(ImageHeader::kOomeWhenThrowingOome)->AsThrowable()); in Init()
1858 boot_image_live_objects->Get(ImageHeader::kOomeWhenHandlingStackOverflow)->AsThrowable()); in Init()
1862 boot_image_live_objects->Get(ImageHeader::kNoClassDefFoundError)->AsThrowable()); in Init()
H A Dclass_linker.cc1294 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = in InitFromBootImage() local
1297 runtime->SetSentinel(boot_image_live_objects->Get(ImageHeader::kClearedJniWeakSentinel)); in InitFromBootImage()
/aosp12/art/dex2oat/linker/
H A Dimage_writer.cc1310 Handle<mirror::ObjectArray<mirror::Object>> boot_image_live_objects) const { in CreateImageRoots()
1325 DCHECK(boot_image_live_objects != nullptr); in CreateImageRoots()
1326 image_roots->Set<false>(ImageHeader::kBootImageLiveObjects, boot_image_live_objects.Get()); in CreateImageRoots()
1328 DCHECK(boot_image_live_objects == nullptr); in CreateImageRoots()
2355 MutableHandle<ObjectArray<Object>> boot_image_live_objects = handles.NewHandle( in CalculateNewObjectOffsets() local
2361 image_roots.push_back(handles.NewHandle(CreateImageRoots(i, boot_image_live_objects))); in CalculateNewObjectOffsets()
2450 boot_image_live_objects_ = boot_image_live_objects.Get(); in CalculateNewObjectOffsets()
H A Dimage_writer.h470 Handle<mirror::ObjectArray<mirror::Object>> boot_image_live_objects) const
/aosp12/art/oatdump/
H A Doatdump.cc1555 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = in GetBootImageLiveObjectsDataRange() local
1558 DCHECK(boot_image_live_objects != nullptr); in GetBootImageLiveObjectsDataRange()
1559 DCHECK(heap->ObjectIsInBootImageSpace(boot_image_live_objects)); in GetBootImageLiveObjectsDataRange()
1561 reinterpret_cast<const uint8_t*>(boot_image_live_objects.Ptr()); in GetBootImageLiveObjectsDataRange()
1564 boot_image_live_objects->GetLength()).Uint32Value(); in GetBootImageLiveObjectsDataRange()