Searched refs:boot_image_live_objects (Results 1 – 8 of 8) sorted by relevance
/art/compiler/optimizing/ |
D | intrinsic_objects.cc | 48 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() 63 boot_image_live_objects->GetWithoutChecks<kVerifyNone, kWithoutReadBarrier>( in GetIntegerValueOfCache() 72 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects, in GetIntegerValueOfObject() argument 74 DCHECK(HasIntrinsicObjects(boot_image_live_objects)); in GetIntegerValueOfObject() 76 static_cast<uint32_t>(GetIntegerValueOfCache(boot_image_live_objects)->GetLength())); in GetIntegerValueOfObject() 80 boot_image_live_objects->GetWithoutChecks<kVerifyNone, kWithoutReadBarrier>( in GetIntegerValueOfObject() [all …]
|
D | intrinsics.cc | 67 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = in GetBootImageLiveObjects() local 70 DCHECK(boot_image_live_objects != nullptr); in GetBootImageLiveObjects() 71 DCHECK(heap->ObjectIsInBootImageSpace(boot_image_live_objects)); in GetBootImageLiveObjects() 72 return boot_image_live_objects; in GetBootImageLiveObjects() 102 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects, in CheckIntegerCache() argument 132 IntrinsicObjects::GetIntegerValueOfObject(boot_image_live_objects, i); in CheckIntegerCache() 212 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = GetBootImageLiveObjects(); in ComputeIntegerValueOfLocations() local 214 IntrinsicObjects::GetIntegerValueOfCache(boot_image_live_objects); in ComputeIntegerValueOfLocations() 219 if (!CheckIntegerCache(self, runtime->GetClassLinker(), boot_image_live_objects, cache)) { in ComputeIntegerValueOfLocations() 224 DCHECK(CheckIntegerCache(self, runtime->GetClassLinker(), boot_image_live_objects, cache)); in ComputeIntegerValueOfLocations() [all …]
|
D | intrinsic_objects.h | 62 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)
|
/art/runtime/ |
D | runtime.cc | 1648 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = in Init() local 1652 boot_image_live_objects->Get(ImageHeader::kOomeWhenThrowingException)->AsThrowable()); in Init() 1656 boot_image_live_objects->Get(ImageHeader::kOomeWhenThrowingOome)->AsThrowable()); in Init() 1660 boot_image_live_objects->Get(ImageHeader::kOomeWhenHandlingStackOverflow)->AsThrowable()); in Init() 1664 boot_image_live_objects->Get(ImageHeader::kNoClassDefFoundError)->AsThrowable()); in Init()
|
D | class_linker.cc | 1351 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = in InitFromBootImage() local 1354 runtime->SetSentinel(boot_image_live_objects->Get(ImageHeader::kClearedJniWeakSentinel)); in InitFromBootImage()
|
/art/dex2oat/linker/ |
D | image_writer.cc | 1536 Handle<mirror::ObjectArray<mirror::Object>> boot_image_live_objects) const { in CreateImageRoots() 1551 DCHECK(boot_image_live_objects != nullptr); in CreateImageRoots() 1552 image_roots->Set<false>(ImageHeader::kBootImageLiveObjects, boot_image_live_objects.Get()); in CreateImageRoots() 1554 DCHECK(boot_image_live_objects == nullptr); in CreateImageRoots() 2398 MutableHandle<ObjectArray<Object>> boot_image_live_objects = handles.NewHandle( in CalculateNewObjectOffsets() local 2404 image_roots.push_back(handles.NewHandle(CreateImageRoots(i, boot_image_live_objects))); in CalculateNewObjectOffsets() 2512 boot_image_live_objects_ = boot_image_live_objects.Get(); in CalculateNewObjectOffsets()
|
D | image_writer.h | 480 Handle<mirror::ObjectArray<mirror::Object>> boot_image_live_objects) const
|
/art/oatdump/ |
D | oatdump.cc | 1659 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = in GetBootImageLiveObjectsDataRange() local 1662 DCHECK(boot_image_live_objects != nullptr); in GetBootImageLiveObjectsDataRange() 1663 DCHECK(heap->ObjectIsInBootImageSpace(boot_image_live_objects)); in GetBootImageLiveObjectsDataRange() 1665 reinterpret_cast<const uint8_t*>(boot_image_live_objects.Ptr()); in GetBootImageLiveObjectsDataRange() 1668 boot_image_live_objects->GetLength()).Uint32Value(); in GetBootImageLiveObjectsDataRange()
|