Searched refs:boot_image_live_objects (Results 1 – 7 of 7) sorted by relevance
/aosp_15_r20/art/compiler/optimizing/ |
H A D | intrinsic_objects.cc | 55 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects, size_t start_index) { in FillIntrinsicObjects() argument 61 boot_image_live_objects, \ in FillIntrinsicObjects() 74 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects) in HasIntrinsicObjects() argument 76 DCHECK(boot_image_live_objects != nullptr); in HasIntrinsicObjects() 77 uint32_t length = static_cast<uint32_t>(boot_image_live_objects->GetLength()); in HasIntrinsicObjects() 83 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects, in GetValueOfObject() argument 86 DCHECK(HasIntrinsicObjects(boot_image_live_objects)); in GetValueOfObject() 89 boot_image_live_objects->GetWithoutChecks<kVerifyNone, kWithoutReadBarrier>( in GetValueOfObject() 96 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects, in GetValueOfArrayDataOffset() argument 98 DCHECK(HasIntrinsicObjects(boot_image_live_objects)); in GetValueOfArrayDataOffset() [all …]
|
H A D | intrinsic_objects.h | 76 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects, \ 78 return GetValueOfObject(boot_image_live_objects, k ##name ##CacheFirstIndex, index); \ 81 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects) \ 83 return GetValueOfArrayDataOffset(boot_image_live_objects, k ##name ##CacheFirstIndex); \ 89 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects, size_t start_index) 97 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects, 102 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects,
|
H A D | intrinsics.cc | 60 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = in GetBootImageLiveObjects() local 63 DCHECK(boot_image_live_objects != nullptr); in GetBootImageLiveObjects() 64 DCHECK(heap->ObjectIsInBootImageSpace(boot_image_live_objects)); in GetBootImageLiveObjects() 65 return boot_image_live_objects; in GetBootImageLiveObjects() 150 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = GetBootImageLiveObjects(); in ComputeValueOfInfo() local 157 IntrinsicObjects::GetValueOfObject(boot_image_live_objects, base, index); in ComputeValueOfInfo() 165 CodeGenerator::GetBootImageOffset(boot_image_live_objects) + in ComputeValueOfInfo() 167 boot_image_live_objects, base).Uint32Value(); in ComputeValueOfInfo()
|
/aosp_15_r20/art/dex2oat/linker/ |
H A D | image_writer.cc | 1298 Handle<mirror::ObjectArray<mirror::Object>> boot_image_live_objects; in CreateImageRoots() local 1300 boot_image_live_objects = handles.NewHandle(AllocateBootImageLiveObjects(self, runtime)); in CreateImageRoots() 1301 if (boot_image_live_objects == nullptr) { in CreateImageRoots() 1308 boot_image_live_objects = handles.NewHandle(ObjPtr<ObjectArray<Object>>::DownCast( in CreateImageRoots() 1310 DCHECK(boot_image_live_objects != nullptr); in CreateImageRoots() 1393 DCHECK(boot_image_live_objects != nullptr); in CreateImageRoots() 1395 ImageHeader::kBootImageLiveObjects, boot_image_live_objects.Get()); in CreateImageRoots() 1397 DCHECK(boot_image_live_objects.GetReference() == nullptr); in CreateImageRoots() 2056 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = in ProcessRoots() local 2058 AssignImageBinSlot(boot_image_live_objects, GetDefaultOatIndex(), clean_bin); in ProcessRoots() [all …]
|
/aosp_15_r20/art/runtime/ |
H A D | runtime.cc | 2056 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = in Init() local 2060 boot_image_live_objects->Get(ImageHeader::kOomeWhenThrowingException)->AsThrowable()); in Init() 2064 boot_image_live_objects->Get(ImageHeader::kOomeWhenThrowingOome)->AsThrowable()); in Init() 2068 boot_image_live_objects->Get(ImageHeader::kOomeWhenHandlingStackOverflow)->AsThrowable()); in Init() 2072 boot_image_live_objects->Get(ImageHeader::kNoClassDefFoundError)->AsThrowable()); in Init()
|
H A D | class_linker.cc | 1466 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = in InitFromBootImage() local 1469 runtime->SetSentinel(boot_image_live_objects->Get(ImageHeader::kClearedJniWeakSentinel)); in InitFromBootImage()
|
/aosp_15_r20/art/oatdump/ |
H A D | oatdump.cc | 1582 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = in GetBootImageLiveObjectsDataRange() local 1585 DCHECK(boot_image_live_objects != nullptr); in GetBootImageLiveObjectsDataRange() 1586 DCHECK(heap->ObjectIsInBootImageSpace(boot_image_live_objects)); in GetBootImageLiveObjectsDataRange() 1588 reinterpret_cast<const uint8_t*>(boot_image_live_objects.Ptr()); in GetBootImageLiveObjectsDataRange() 1591 boot_image_live_objects->GetLength()).Uint32Value(); in GetBootImageLiveObjectsDataRange()
|