Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dintrinsic_objects.cc55 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 …]
Dintrinsic_objects.h76 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,
Dintrinsics.cc60 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()
/art/dex2oat/linker/
Dimage_writer.cc1297 Handle<mirror::ObjectArray<mirror::Object>> boot_image_live_objects; in CreateImageRoots() local
1299 boot_image_live_objects = handles.NewHandle(AllocateBootImageLiveObjects(self, runtime)); in CreateImageRoots()
1300 if (boot_image_live_objects == nullptr) { in CreateImageRoots()
1307 boot_image_live_objects = handles.NewHandle(ObjPtr<ObjectArray<Object>>::DownCast( in CreateImageRoots()
1309 DCHECK(boot_image_live_objects != nullptr); in CreateImageRoots()
1392 DCHECK(boot_image_live_objects != nullptr); in CreateImageRoots()
1394 ImageHeader::kBootImageLiveObjects, boot_image_live_objects.Get()); in CreateImageRoots()
1396 DCHECK(boot_image_live_objects.GetReference() == nullptr); in CreateImageRoots()
2053 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = in ProcessRoots() local
2055 AssignImageBinSlot(boot_image_live_objects, GetDefaultOatIndex(), clean_bin); in ProcessRoots()
[all …]
/art/runtime/
Druntime.cc2061 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = in Init() local
2065 boot_image_live_objects->Get(ImageHeader::kOomeWhenThrowingException)->AsThrowable()); in Init()
2069 boot_image_live_objects->Get(ImageHeader::kOomeWhenThrowingOome)->AsThrowable()); in Init()
2073 boot_image_live_objects->Get(ImageHeader::kOomeWhenHandlingStackOverflow)->AsThrowable()); in Init()
2077 boot_image_live_objects->Get(ImageHeader::kNoClassDefFoundError)->AsThrowable()); in Init()
Dclass_linker.cc1452 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = in InitFromBootImage() local
1455 runtime->SetSentinel(boot_image_live_objects->Get(ImageHeader::kClearedJniWeakSentinel)); in InitFromBootImage()
/art/oatdump/
Doatdump.cc1573 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = in GetBootImageLiveObjectsDataRange() local
1576 DCHECK(boot_image_live_objects != nullptr); in GetBootImageLiveObjectsDataRange()
1577 DCHECK(heap->ObjectIsInBootImageSpace(boot_image_live_objects)); in GetBootImageLiveObjectsDataRange()
1579 reinterpret_cast<const uint8_t*>(boot_image_live_objects.Ptr()); in GetBootImageLiveObjectsDataRange()
1582 boot_image_live_objects->GetLength()).Uint32Value(); in GetBootImageLiveObjectsDataRange()