Home
last modified time | relevance | path

Searched refs:GetReference (Results 1 – 25 of 28) sorted by relevance

12

/art/runtime/
Dindirect_reference_table.cc173 if (table[index].GetReference()->IsNull()) { in CountNullEntries()
302 DCHECK(!p_scan->GetReference()->IsNull()); in Add()
304 while (!p_scan->GetReference()->IsNull()) { in Add()
328 if (!table_[i].GetReference()->IsNull()) { in AssertEmpty()
396 *table_[idx].GetReference() = GcRoot<mirror::Object>(nullptr); in Remove()
404 << table_[collapse_top_index - 1].GetReference()->Read<kWithoutReadBarrier>(); in Remove()
406 if (!table_[collapse_top_index - 1].GetReference()->IsNull()) { in Remove()
426 if (table_[idx].GetReference()->IsNull()) { in Remove()
434 *table_[idx].GetReference() = GcRoot<mirror::Object>(nullptr); in Remove()
467 ObjPtr<mirror::Object> obj = table_[i].GetReference()->Read<kWithoutReadBarrier>(); in Dump()
[all …]
Dhandle.h104 ALWAYS_INLINE StackReference<mirror::Object>* GetReference() { in GetReference() function
108 ALWAYS_INLINE const StackReference<mirror::Object>* GetReference() const { in GetReference() function
162 StackReference<mirror::Object>* ref = Handle<T>::GetReference(); in Assign()
169 StackReference<mirror::Object>* ref = Handle<T>::GetReference(); in Assign()
Dindirect_reference_table-inl.h59 if (UNLIKELY(table_[idx].GetReference()->IsNull())) { in GetChecked()
95 ObjPtr<mirror::Object> obj = table_[idx].GetReference()->Read<kReadBarrierOption>(); in Get()
Dhandle_scope_test.cc109 EXPECT_TRUE(hs.Contains(handles.back().GetReference())); in TEST_F()
110 EXPECT_TRUE(base->Contains(handles.back().GetReference())); in TEST_F()
Dindirect_reference_table.h161 GcRoot<mirror::Object>* GetReference() { in GetReference() function
166 const GcRoot<mirror::Object>* GetReference() const { in GetReference() function
200 return table_[i_].GetReference(); in REQUIRES_SHARED()
Dmethod_handles-inl.h53 ALWAYS_INLINE ObjPtr<mirror::Object> GetReference() REQUIRES_SHARED(Locks::mutator_lock_) { in GetReference() function
188 setter->SetReference(getter->GetReference()); in PerformConversions()
197 value.SetL(getter->GetReference()); in PerformConversions()
Dhandle_scope-inl.h77 inline ObjPtr<mirror::Object> HandleScope::GetReference(size_t i) const { in GetReference() function
117 visitor.VisitRootIfNonNull(GetHandle(i).GetReference()); in VisitRoots()
Dhandle_scope.h108 ALWAYS_INLINE ObjPtr<mirror::Object> GetReference(size_t i) const
Dstring_builder_append.cc285 ObjPtr<mirror::String>::DownCast(hs_.GetReference(handle_index)); in StoreData()
Dstack.cc165 return hs->GetReference(0); in GetThisObject()
/art/tools/veridex/
Dhidden_api_finder.cc89 reflection_locations_[name].push_back(method.GetReference()); in CollectAccesses()
99 CheckMethod(inst->VRegB_35c(), resolver, method.GetReference()); in CollectAccesses()
108 CheckMethod(inst->VRegB_3rc(), resolver, method.GetReference()); in CollectAccesses()
119 CheckField(inst->VRegC_22c(), resolver, method.GetReference()); in CollectAccesses()
130 CheckField(inst->VRegC_22c(), resolver, method.GetReference()); in CollectAccesses()
141 CheckField(inst->VRegB_21c(), resolver, method.GetReference()); in CollectAccesses()
152 CheckField(inst->VRegB_21c(), resolver, method.GetReference()); in CollectAccesses()
Dprecise_hidden_api_finder.cc70 AddUsesAt(collector.GetUses(), method.GetReference()); in Run()
88 AddUsesAt(substitutor.GetUses(), method.GetReference()); in Run()
/art/compiler/optimizing/
Dload_store_analysis.h45 HInstruction* GetReference() const { in GetReference() function
240 if (ref_info->GetReference() == ref) { in FindReferenceInfoOf()
360 if (ref_info1->GetReference()->IsNewInstance() || ref_info1->GetReference()->IsNewArray()) { in MayAliasWithPreexistenceChecking()
513 HInstruction* ref = location->GetReferenceInfo()->GetReference(); in VisitInstanceFieldSet()
Dload_store_elimination.cc400 HInstruction* ref = ref_info->GetReference(); in MergePredecessorValues()
649 … if (ref_info->IsSingleton() && !loop_info->IsDefinedOutOfTheLoop(ref_info->GetReference())) { in VisitSetLocation()
856 heap_location_collector_.GetHeapLocation(i)->GetReferenceInfo()->GetReference(); in VisitNewInstance()
884 HInstruction* ref = location->GetReferenceInfo()->GetReference(); in VisitNewArray()
Dcode_generator.cc166 reinterpret_cast64<uint64_t>(string.GetReference())); in ReserveJitStringRoot()
178 jit_class_roots_.Overwrite(type_reference, reinterpret_cast64<uint64_t>(klass.GetReference())); in ReserveJitClassRoot()
Doptimizing_compiler.cc1368 return handles.Contains(root.GetReference()); in JitCompile()
/art/compiler/driver/
Ddex_compilation_unit.cc66 if (GetCompilingClass().GetReference() != nullptr && !GetCompilingClass().IsNull()) { in RequiresConstructorBarrier()
/art/dex2oat/dex/
Ddex_to_dex_decompiler_test.cc89 method.GetReference()); in RunTest()
/art/runtime/interpreter/
Dunstarted_runtime_test.cc123 result->Set(static_cast<int32_t>(i), data.GetReference(i)); in CreateObjectArray()
135 EXPECT_OBJ_PTR_EQ(data.GetReference(i), array->Get(static_cast<int32_t>(i))) << i; in CheckObjectArray()
506 hs_expected.NewHandle(hs_dst.GetReference(0)); in TEST_F()
507 hs_expected.NewHandle(hs_dst.GetReference(1)); in TEST_F()
508 hs_expected.NewHandle(hs_src.GetReference(1)); in TEST_F()
537 hs_expected.NewHandle(hs_dst.GetReference(0)); in TEST_F()
538 hs_expected.NewHandle(hs_src.GetReference(1)); in TEST_F()
539 hs_expected.NewHandle(hs_dst.GetReference(2)); in TEST_F()
568 hs_expected.NewHandle(hs_src.GetReference(0)); in TEST_F()
569 hs_expected.NewHandle(hs_dst.GetReference(1)); in TEST_F()
[all …]
/art/libdexfile/dex/
Dclass_accessor-inl.h76 inline MethodReference ClassAccessor::Method::GetReference() const { in GetReference() function
Dclass_accessor.h103 MethodReference GetReference() const;
/art/runtime/mirror/
Demulated_stack_frame.cc109 ALWAYS_INLINE ObjPtr<mirror::Object> GetReference() REQUIRES_SHARED(Locks::mutator_lock_) { in GetReference() function in art::mirror::EmulatedStackFrameAccessor
Dvar_handle.cc859 return getter->GetReference(); in Get()
1704 obj = getter.GetReference(); in Access()
1747 ObjPtr<Object> raw_array(getter.GetReference()); in Access()
1839 ObjPtr<Object> raw_byte_array(getter.GetReference()); in Access()
1927 ObjPtr<Object> byte_buffer(getter.GetReference()); in Access()
/art/profman/
Dprofman.cc1121 methods.push_back(ProfileMethodInfo(method.GetReference())); in ProcessLine()
/art/dex2oat/driver/
Dcompiler_driver.cc713 profile_compilation_info->GetMethodHotness(method.GetReference()); in ResolveConstStrings()
1895 verification_results->CreateVerifiedMethodFor(method.GetReference()); in FastVerify()

12