/art/libdexfile/dex/ |
D | class_accessor_test.cc | 49 EXPECT_EQ(field.GetIndex(), field_it->GetIndex()); in TEST_F() 57 EXPECT_EQ(field.GetIndex(), field_it->GetIndex()); in TEST_F() 59 EXPECT_EQ(field.GetIndex(), instance_field_it->GetIndex()); in TEST_F() 68 EXPECT_EQ(method.GetIndex(), method_it->GetIndex()); in TEST_F() 77 EXPECT_EQ(method.GetIndex(), method_it->GetIndex()); in TEST_F()
|
D | art_dex_file_loader_test.cc | 177 const dex::MethodId& method_id = raw->GetMethodId(cur_method->GetIndex()); in TEST_F() 251 const dex::MethodId& method_id = raw->GetMethodId(cur_method->GetIndex()); in TEST_F() 261 raw->PrettyMethod(cur_method->GetIndex(), /* with_signature= */ false)); in TEST_F() 263 raw->PrettyMethod(cur_method->GetIndex(), /* with_signature= */ true)); in TEST_F()
|
D | dex_file_verifier.cc | 1272 uint32_t index = field.GetIndex(); in CheckStaticFieldTypes() 1601 const uint32_t direct_idx = direct_methods->GetIndex(); in CheckIntraClassDataItemMethods() 2522 DCHECK_LE(read_field.GetIndex(), dex_file_->NumFieldIds()); in FindFirstClassDataDefiner() 2523 return dex_file_->GetFieldId(read_field.GetIndex()).class_idx_.index_; in FindFirstClassDataDefiner() 2529 DCHECK_LE(read_method.GetIndex(), dex_file_->NumMethodIds()); in FindFirstClassDataDefiner() 2530 return dex_file_->GetMethodId(read_method.GetIndex()).class_idx_.index_; in FindFirstClassDataDefiner() 2617 ptr_, data_end, member_type, member.GetIndex()); in CheckInterHiddenapiClassData() 2623 decoded_flags, member_type, member.GetIndex()); in CheckInterHiddenapiClassData() 3162 DCHECK_LE(read_field.GetIndex(), header_->field_ids_size_); in CheckInterClassDataItem() 3163 const dex::FieldId& field = dex_file_->GetFieldId(read_field.GetIndex()); in CheckInterClassDataItem() [all …]
|
D | dex_file_tracking_registrar.cc | 207 const dex::MethodId& methodid_item = dex_file_->GetMethodId(method.GetIndex()); in SetCodeItemRegistration()
|
D | class_accessor-inl.h | 77 return MethodReference(&dex_file_, GetIndex()); in GetReference()
|
D | class_accessor.h | 49 uint32_t GetIndex() const { in GetIndex() function
|
/art/compiler/optimizing/ |
D | instruction_simplifier_arm64.cc | 207 instruction->GetIndex(), in VisitArrayGet() 219 instruction->GetIndex(), in VisitArraySet() 292 TryExtractVecArrayAccessAddress(instruction, instruction->GetIndex())) { in VisitVecLoad() 298 codegen_, instruction, instruction->GetArray(), instruction->GetIndex(), offset)) { in VisitVecLoad() 306 TryExtractVecArrayAccessAddress(instruction, instruction->GetIndex())) { in VisitVecStore() 312 codegen_, instruction, instruction->GetArray(), instruction->GetIndex(), offset)) { in VisitVecStore()
|
D | code_sinking.cc | 222 : block->GetPredecessors()[use.GetIndex()]; in FindIdealPosition() 306 env->RemoveAsUserOfInput(use.GetIndex()); in FindIdealPosition() 307 env->SetRawEnvAt(use.GetIndex(), /*instruction=*/ nullptr); in FindIdealPosition() 484 environment->RemoveAsUserOfInput(use.GetIndex()); in SinkCodeToUncommonBranch() 485 environment->SetRawEnvAt(use.GetIndex(), nullptr); in SinkCodeToUncommonBranch()
|
D | load_store_analysis.h | 126 HInstruction* GetIndex() const { return index_; } in GetIndex() function 304 loc->GetIndex() == index && in FindHeapLocationIndex() 416 HInstruction* idx1 = loc1->GetIndex(); in ComputeMayAlias() 417 HInstruction* idx2 = loc2->GetIndex(); in ComputeMayAlias()
|
D | instruction_simplifier_arm.cc | 226 instruction->GetIndex(), in VisitArrayGet() 248 instruction->GetIndex(), in VisitArraySet()
|
D | nodes_shared.h | 102 HInstruction* GetIndex() const { return InputAt(0); } in GetIndex() function
|
D | ssa_phi_elimination.cc | 116 user->SetRawEnvAt(use.GetIndex(), nullptr); in EliminateDeadPhis()
|
D | instruction_simplifier_shared.cc | 196 (index->IsBoundsCheck() && index->AsBoundsCheck()->GetIndex()->IsConstant())) { in TryExtractArrayAccessAddress()
|
/art/dex2oat/linker/ |
D | index_bss_mapping_encoder.h | 44 DCHECK_NE(index, entry_.GetIndex(index_bits_)); in TryMerge() 48 uint32_t diff = index - entry_.GetIndex(index_bits_); in TryMerge()
|
/art/runtime/verifier/ |
D | class_verifier.cc | 117 const uint32_t method_idx = method.GetIndex(); in VerifyClass() 154 UpdateMethodFlags(method.GetIndex(), klass, dex_cache, callbacks, result.types); in VerifyClass() 160 dex_file->PrettyMethod(method.GetIndex()).c_str()); in VerifyClass()
|
/art/tools/veridex/ |
D | resolver.cc | 41 field_infos_[field.GetIndex()] = field.GetDataPointer(); in Run() 44 method_infos_[method.GetIndex()] = method.GetDataPointer(); in Run() 143 const dex::MethodId& other_method_id = other_dex_file.GetMethodId(method.GetIndex()); in LookupMethodIn() 198 const dex::FieldId& other_field_id = other_dex_file.GetFieldId(field.GetIndex()); in LookupFieldIn() 249 other_dex_file.GetMethodId(method.GetIndex()), in LookupDeclaredMethodIn()
|
/art/runtime/oat/ |
D | index_bss_mapping.h | 54 uint32_t GetIndex(size_t index_bits) const { in GetIndex() function
|
D | index_bss_mapping.cc | 29 uint32_t diff = GetIndex(index_bits) - index; in GetBssOffset()
|
/art/test/983-source-transform-verify/ |
D | source_transform_art.cc | 59 LOG(FATAL) << "Unexpected instruction found in " << dex->PrettyMethod(method.GetIndex()) in VerifyClassData()
|
/art/dex2oat/dex/ |
D | verification_results.cc | 65 MethodReference method_ref(&dex_file, method.GetIndex()); in AddUncompilableClass()
|
/art/libdexfile/external/ |
D | dex_file_ext.cc | 73 .index = method.GetIndex(), in FindMethod() 255 .index = method.GetIndex(), in ADexFile_forEachMethod()
|
/art/runtime/ |
D | hidden_api.cc | 272 const dex::FieldId& field_id = dex_file.GetFieldId(field.GetIndex()); in MemberSignature() 281 const dex::MethodId& method_id = dex_file.GetMethodId(method.GetIndex()); in MemberSignature() 520 if (dex_member.GetIndex() == member_index) { in GetDexFlags()
|
/art/dexlist/ |
D | dexlist.cc | 152 method.GetIndex(), in dumpClass()
|
/art/tools/dexanalyze/ |
D | dexanalyze_experiments.cc | 95 CodeItemDebugInfoAccessor code_item(*dex_file, method.GetCodeItem(), method.GetIndex()); in ProcessDexFiles() 256 static_field_index_map_[field.GetIndex()] = current_idx++; in ProcessDexFile() 261 instance_field_index_map_[field.GetIndex()] = current_idx++; in ProcessDexFile()
|
/art/runtime/jni/ |
D | local_reference_table.cc | 57 inline size_t SmallLrtAllocator::GetIndex(size_t size) { in GetIndex() function in art::jni::SmallLrtAllocator 67 size_t index = GetIndex(size); in Allocate() 101 size_t index = GetIndex(size); in Deallocate()
|