/art/runtime/mirror/ |
D | method_type.cc | 115 ObjPtr<Class> klass = p_types->GetWithoutChecks(i); in NumberOfVRegs() 132 if (p_types->GetWithoutChecks(i) != target_p_types->GetWithoutChecks(i)) { in IsExactMatch() 156 if (!IsParameterTypeConvertible(p_types->GetWithoutChecks(i), in IsConvertible() 157 target_p_types->GetWithoutChecks(i))) { in IsConvertible() 205 if (!IsParameterInPlaceConvertible(ptypes->GetWithoutChecks(i), in IsInPlaceConvertible() 206 target_ptypes->GetWithoutChecks(i))) { in IsInPlaceConvertible() 222 ss << p_types->GetWithoutChecks(i)->PrettyDescriptor(); in PrettyDescriptor()
|
D | object_array-inl.h | 98 inline ObjPtr<T> ObjectArray<T>::GetWithoutChecks(int32_t i) { in GetWithoutChecks() function 111 src->GetWithoutChecks(src_pos + i); in AssignableMemmove() 133 ObjPtr<T> obj = src->template GetWithoutChecks<kDefaultVerifyFlags, kWithoutReadBarrier>( in AssignableMemmove() 142 ObjPtr<T> obj = src->GetWithoutChecks(src_pos + i); in AssignableMemmove() 158 ObjPtr<T> obj = src->template GetWithoutChecks<kDefaultVerifyFlags, kWithoutReadBarrier>( in AssignableMemmove() 167 ObjPtr<T> obj = src->GetWithoutChecks(src_pos + i); in AssignableMemmove() 176 GetWithoutChecks(dst_pos + i); in AssignableMemmove() 189 src->GetWithoutChecks(src_pos + i); in AssignableMemcpy() 209 src->template GetWithoutChecks<kDefaultVerifyFlags, kWithoutReadBarrier>(src_pos + i); in AssignableMemcpy() 217 ObjPtr<T> obj = src->GetWithoutChecks(src_pos + i); in AssignableMemcpy() [all …]
|
D | object_array.h | 87 ALWAYS_INLINE ObjPtr<T> GetWithoutChecks(int32_t i) REQUIRES_SHARED(Locks::mutator_lock_); 193 return array_->GetWithoutChecks(idx_); 197 return array_->GetWithoutChecks(idx_);
|
D | array-inl.h | 70 return GetWithoutChecks(i); in Get() 99 Runtime::Current()->RecordWriteArray(this, i, GetWithoutChecks(i)); in SetWithoutChecks() 246 static_cast<uint64_t>(AsLongArrayUnchecked<kVerifyFlags>()->GetWithoutChecks(idx)); in GetElementPtrSizeUnchecked() 250 static_cast<uint32_t>(AsIntArrayUnchecked<kVerifyFlags>()->GetWithoutChecks(idx)); in GetElementPtrSizeUnchecked()
|
D | iftable-inl.h | 31 GetWithoutChecks<kVerifyFlags, kReadBarrierOption>((i * kMax) + kInterface)->AsClass(); in GetInterface()
|
D | emulated_stack_frame.cc | 46 ObjPtr<mirror::Class> type = p_types->GetWithoutChecks(i); in CalculateFrameAndReferencesSize() 218 value->SetL(references->GetWithoutChecks(references->GetLength() - 1)); in GetReturnValue()
|
D | array.h | 180 T GetWithoutChecks(int32_t i) ALWAYS_INLINE REQUIRES_SHARED(Locks::mutator_lock_) { in GetWithoutChecks() function
|
/art/runtime/ |
D | transaction_test.cc | 385 ASSERT_EQ(booleanArray->GetWithoutChecks(0), false); in TEST_F() 393 ASSERT_EQ(byteArray->GetWithoutChecks(0), 0); in TEST_F() 401 ASSERT_EQ(charArray->GetWithoutChecks(0), 0u); in TEST_F() 409 ASSERT_EQ(shortArray->GetWithoutChecks(0), 0); in TEST_F() 417 ASSERT_EQ(intArray->GetWithoutChecks(0), 0); in TEST_F() 425 ASSERT_EQ(longArray->GetWithoutChecks(0), static_cast<int64_t>(0)); in TEST_F() 433 ASSERT_FLOAT_EQ(floatArray->GetWithoutChecks(0), static_cast<float>(0.0f)); in TEST_F() 441 ASSERT_DOUBLE_EQ(doubleArray->GetWithoutChecks(0), static_cast<double>(0.0f)); in TEST_F() 450 ASSERT_EQ(objectArray->GetWithoutChecks(0), nullptr); in TEST_F() 474 EXPECT_EQ(booleanArray->GetWithoutChecks(0), false); in TEST_F() [all …]
|
D | method_handles-inl.h | 137 callsite_type->GetPTypes()->GetWithoutChecks(index), in ConvertArgumentValue() 138 callee_type->GetPTypes()->GetWithoutChecks(index), in ConvertArgumentValue() 178 ObjPtr<mirror::Class> from(from_types->GetWithoutChecks(i)); in PerformConversions() 179 ObjPtr<mirror::Class> to(to_types->GetWithoutChecks(i - start_index)); in PerformConversions() 250 ObjPtr<mirror::Class> ptype(ptypes->GetWithoutChecks(i)); in CopyArguments()
|
D | class_root-inl.h | 42 class_roots->GetWithoutChecks<kDefaultVerifyFlags, kReadBarrierOption>(index); in GetClassRoot()
|
D | class_loader_utils.h | 147 long_array->GetWithoutChecks(j))); in VisitClassLoaderDexFiles()
|
D | art_method.cc | 527 if (type != params->GetWithoutChecks(i)) { in EqualParameters()
|
D | class_loader_context.cc | 1009 reinterpret_cast64<const DexFile*>(long_array->GetWithoutChecks(j)); in CollectDexFilesFromJavaDexFile()
|
D | class_linker.cc | 6456 return interfaces_->GetWithoutChecks(index); in GetInterface()
|
/art/compiler/optimizing/ |
D | intrinsic_objects.cc | 63 boot_image_live_objects->GetWithoutChecks<kVerifyNone, kWithoutReadBarrier>( in GetIntegerValueOfCache() 80 boot_image_live_objects->GetWithoutChecks<kVerifyNone, kWithoutReadBarrier>( in GetIntegerValueOfObject()
|
D | intrinsics.cc | 137 boot_image_cache->GetWithoutChecks<kVerifyNone, kWithoutReadBarrier>(i); in CheckIntegerCache() 205 ObjPtr<mirror::Object> current_object = current_cache->GetWithoutChecks(i); in ComputeIntegerValueOfLocations()
|
/art/openjdkjvmti/ |
D | ti_class_loader.cc | 129 new_cookie->SetWithoutChecks<false>(0, cookie->GetWithoutChecks(0)); in AllocateNewDexFileCookie()
|
/art/runtime/native/ |
D | java_lang_reflect_Executable.cc | 142 ObjPtr<mirror::Object> annotation = annotations->GetWithoutChecks(i); in Executable_getParameterAnnotationsNative() 150 ObjPtr<mirror::Object> annotation = annotations->GetWithoutChecks(i - offset); in Executable_getParameterAnnotationsNative()
|
/art/runtime/hprof/ |
D | hprof.cc | 252 AddObjectId(values->GetWithoutChecks(i).Ptr()); in AddIdList()
|
/art/dex2oat/linker/ |
D | image_writer.cc | 218 CHECK_EQ(integer_cache->GetWithoutChecks(i), in AllocateBootImageLiveObjects() 1993 image_roots->GetWithoutChecks<kVerifyNone, kWithoutReadBarrier>(ImageHeader::kDexCaches)); in ProcessRoots() 2483 image_roots->GetWithoutChecks<kVerifyNone, kWithoutReadBarrier>( in CalculateNewObjectOffsets()
|
/art/runtime/interpreter/ |
D | interpreter_switch_impl-inl.h | 319 (this->*setVReg)(A(), array->GetWithoutChecks(index)); in HandleAGet()
|
D | interpreter_common.cc | 1515 runtime->RecordWriteArray(array.Ptr(), i, array->GetWithoutChecks(i)); in RecordArrayElementsInTransactionImpl()
|
/art/runtime/dex/ |
D | dex_file_annotations.cc | 942 ObjPtr<mirror::Object> obj = result->GetWithoutChecks(i); in ProcessAnnotationSet()
|
/art/runtime/gc/space/ |
D | image_space.cc | 1235 image_roots->GetWithoutChecks<kVerifyNone, in RelocateInPlace() 2700 image_roots->GetWithoutChecks<kVerifyNone>(class_roots_index).Ptr())); in DoRelocateSpaces()
|