Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dintrinsic_objects.cc80 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects) { in GetIntegerValueOfCache() argument
81 DCHECK(boot_image_live_objects != nullptr); in GetIntegerValueOfCache()
82 if (boot_image_live_objects->GetLength() == 0u) { in GetIntegerValueOfCache()
87 boot_image_live_objects->GetWithoutChecks<kVerifyNone, kWithoutReadBarrier>(0); in GetIntegerValueOfCache()
95 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects, in GetIntegerValueOfObject() argument
97 DCHECK(boot_image_live_objects != nullptr); in GetIntegerValueOfObject()
98 DCHECK_NE(boot_image_live_objects->GetLength(), 0); in GetIntegerValueOfObject()
100 static_cast<uint32_t>(GetIntegerValueOfCache(boot_image_live_objects)->GetLength())); in GetIntegerValueOfObject()
104 boot_image_live_objects->GetWithoutChecks<kVerifyNone, kWithoutReadBarrier>( in GetIntegerValueOfObject()
112 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects) { in GetIntegerValueOfArrayDataOffset() argument
[all …]
Dintrinsics.cc67 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 …]
Dintrinsic_objects.h64 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects)
67 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects,
70 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects)
/art/dex2oat/linker/
Dimage_writer.cc1929 Handle<mirror::ObjectArray<mirror::Object>> boot_image_live_objects) const { in CreateImageRoots()
1952 DCHECK(boot_image_live_objects != nullptr); in CreateImageRoots()
1953 image_roots->Set<false>(ImageHeader::kBootImageLiveObjects, boot_image_live_objects.Get()); in CreateImageRoots()
1955 DCHECK(boot_image_live_objects == nullptr); in CreateImageRoots()
2285 MutableHandle<ObjectArray<Object>> boot_image_live_objects = handles.NewHandle( in CalculateNewObjectOffsets() local
2291 image_roots.push_back(handles.NewHandle(CreateImageRoots(i, boot_image_live_objects))); in CalculateNewObjectOffsets()
2542 boot_image_live_objects_ = boot_image_live_objects.Get(); in CalculateNewObjectOffsets()
Dimage_writer.h491 Handle<mirror::ObjectArray<mirror::Object>> boot_image_live_objects) const
/art/oatdump/
Doatdump.cc1656 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects = in GetBootImageLiveObjectsDataRange() local
1659 DCHECK(boot_image_live_objects != nullptr); in GetBootImageLiveObjectsDataRange()
1660 DCHECK(heap->ObjectIsInBootImageSpace(boot_image_live_objects)); in GetBootImageLiveObjectsDataRange()
1662 reinterpret_cast<const uint8_t*>(boot_image_live_objects.Ptr()); in GetBootImageLiveObjectsDataRange()
1665 boot_image_live_objects->GetLength()).Uint32Value(); in GetBootImageLiveObjectsDataRange()