Home
last modified time | relevance | path

Searched refs:first (Results 101 – 125 of 226) sorted by relevance

12345678910

/art/runtime/jit/
Djit_code_cache.cc431 const uint8_t* root_table = GetRootTable(entry.first, &number_of_roots); in SweepRootTables()
521 CHECK_EQ(debug_info.count(it.first), 1u) << "No debug info: " << it.second->PrettyMethod(); in FreeAllMethodHeaders()
546 it->first.UpdateShorty(it->second.GetMethods().front()); in RemoveMethodsIn()
552 method_headers.insert(OatQuickMethodHeader::FromCodePointer(it->first)); in RemoveMethodsIn()
553 VLOG(jit) << "JIT removed " << it->second->PrettyMethod() << ": " << it->first; in RemoveMethodsIn()
561 if (alloc.ContainsUnsafe(it->first)) { in RemoveMethodsIn()
848 it->first.UpdateShorty(it->second.GetMethods().front()); in RemoveMethodLocked()
856 FreeCodeAndData(it->first); in RemoveMethodLocked()
858 VLOG(jit) << "JIT removed " << it->second->PrettyMethod() << ": " << it->first; in RemoveMethodLocked()
1262 const void* code_ptr = it->first; in RemoveUnmarkedCode()
[all …]
/art/libprofile/profile/
Dprofile_compilation_info.cc470 DCHECK_GE(method_it.first, last_method_index); in Save()
471 uint16_t diff_with_last_method_index = method_it.first - last_method_index; in Save()
472 last_method_index = method_it.first; in Save()
529 uint16_t dex_pc = inline_cache_it.first; in AddInlineCacheToBuffer()
563 ProfileIndexType dex_profile_index = dex_it.first; in AddInlineCacheToBuffer()
1139 size_t method_id = (size_t)(method_it.first); in VerifyProfileData()
1163 ProfileIndexType dex_profile_index = dex_it.first; in VerifyProfileData()
1566 uint16_t other_method_index = other_method_it.first; in MergeWith()
1573 uint16_t other_dex_pc = other_ic_it.first; in MergeWith()
1692 os << "\n\t\t" << dex_file->PrettyMethod(method_it.first, true); in DumpInfo()
[all …]
Dprofile_boot_info.cc53 AddUintToBuffer(&buffer, pair.first); in Save()
/art/runtime/
Dclass_table.cc213 DCHECK(!a.Read<kWithoutReadBarrier>()->DescriptorEquals(b.first)); in operator ()()
216 return a.Read<kWithoutReadBarrier>()->DescriptorEquals(b.first); in operator ()()
220 return ComputeModifiedUtf8Hash(pair.first); in operator ()()
Dcha.cc39 decltype(cha_dependency_map_)::value_type(method, ListOfDependentPairs())).first; in AddDependency()
669 ArtMethod* method = dependent.first;; in InvalidateSingleImplementationMethods()
690 code_cache->InvalidateCompiledCodeFor(pair.first, pair.second); in InvalidateSingleImplementationMethods()
711 if (linear_alloc->ContainsUnsafe(it->first)) { in RemoveDependenciesForLinearAlloc()
Dstack_map.h364 uint32_t first = (depth == 0) in GetInlineDexRegisterMapOf() local
368 DexRegisterMap map(last - first, DexRegisterLocation::Invalid()); in GetInlineDexRegisterMapOf()
369 DecodeDexRegisterMap(stack_map.Row(), first, &map); in GetInlineDexRegisterMapOf()
/art/libartbase/base/
Dhash_set_test.cc264 pair.first.clear(); in MakeEmpty()
267 return pair.first.empty(); in IsEmpty()
362 HashSet<std::string>::iterator it = hash_set.insert(test_string).first; in TEST_F()
371 HashSet<std::string>::iterator insert_pos = hash_set.insert(test_string).first; in TEST_F()
Dmem_map.cc70 it != end && it->first == map.BaseBegin(); in GetGMapsEntry()
83 void* base = it->first; in operator <<()
292 it = debugStrMap.insert(std::make_pair(std::move(debug_friendly_name), 1)).first; in SetDebugName()
297 prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, map_ptr, size, it->first.c_str()); in SetDebugName()
918 void* base = it->first; in DumpMapsLocked()
963 it != end && it->first == base_begin; ++it) { in HasMemMap()
976 it != end && it->first == address; ++it) { in GetLargestMemMapAt()
1062 size_t delta = reinterpret_cast<uintptr_t>(it->first) - ptr; in MapInternalArtLow4GBAllocator()
Darena_allocator.cc130 void ArenaAllocatorStatsImpl<kCount>::Dump(std::ostream& os, const Arena* first, in Dump() argument
135 for (const Arena* arena = first; arena != nullptr; arena = arena->next_) { in Dump()
/art/test/509-pre-header/smali/
DPreHeader.smali22 # is the first predecessor of the loop header.
/art/compiler/optimizing/
Dsuperblock_cloner.cc547 HBasicBlock* orig_block = entry.first; in ResolveDataFlow()
632 HInstruction* value = live_out_it->first; in ConstructSubgraphClosedSSA()
670 DCHECK(it.first != it.second); in FixSubgraphClosedSSAAfterCloning()
671 HInstruction* orig_value = it.first; in FixSubgraphClosedSSAAfterCloning()
777 HInstruction* orig_instr = it.first; in VerifyGraph()
780 DCHECK(it.first->GetBlock() != nullptr); in VerifyGraph()
972 work_set.SetBit(iter.first->GetBlockId()); // Original block. in Run()
993 HBasicBlock* orig_block = entry.first; in CleanUp()
Dinstruction_builder.cc615 HInstruction* first = LoadLocal(instruction.VRegA(), DataType::Type::kInt32); in If_22t() local
617 T* comparison = new (allocator_) T(first, second, dex_pc); in If_22t()
636 HInstruction* first = LoadLocal(instruction.VRegB(), type); in Unop_12x() local
637 AppendInstruction(new (allocator_) T(type, first, dex_pc)); in Unop_12x()
645 HInstruction* first = LoadLocal(instruction.VRegB(), input_type); in Conversion_12x() local
646 AppendInstruction(new (allocator_) HTypeConversion(result_type, first, dex_pc)); in Conversion_12x()
654 HInstruction* first = LoadLocal(instruction.VRegB(), type); in Binop_23x() local
656 AppendInstruction(new (allocator_) T(type, first, second, dex_pc)); in Binop_23x()
664 HInstruction* first = LoadLocal(instruction.VRegB(), type); in Binop_23x_shift() local
666 AppendInstruction(new (allocator_) T(type, first, second, dex_pc)); in Binop_23x_shift()
[all …]
Dregister_allocator_linear_scan.cc346 Location first = locations->InAt(0); in ProcessInstruction() local
347 if (first.IsRegister() || first.IsFpuRegister()) { in ProcessInstruction()
349 current->SetRegister(first.reg()); in ProcessInstruction()
350 } else if (first.IsPair()) { in ProcessInstruction()
352 current->SetRegister(first.low()); in ProcessInstruction()
354 high->SetRegister(first.high()); in ProcessInstruction()
/art/runtime/entrypoints/
Dentrypoint_utils.cc241 ArtMethod* outer_method = outer_caller_and_pc.first; in GetCalleeSaveMethodCaller()
252 result.outer_method = outer_caller_and_pc.first; in GetCalleeSaveMethodCallerAndOuterMethod()
262 return DoGetCalleeSaveMethodOuterCallerAndPc(sp, type).first; in GetCalleeSaveOuterMethod()
/art/tools/veridex/
Dveridex.cc199 hidden_api.AddSignatureSource(it.first, SignatureSource::BOOT); in Run()
237 if (!hidden_api.IsInBoot(it.first)) { in Run()
238 hidden_api.AddSignatureSource(it.first, SignatureSource::APP); in Run()
/art/test/098-ddmc/
Dexpected.txt21 second > first =true
/art/compiler/debug/
Delf_symtab_writer.h107 uint64_t dex_address = dex->GetAddress() + it.first /* offset within the section */; in WriteDebugSymbols()
Delf_debug_loc_writer.h116 const uint32_t low_pc = it->first; in GetVariableLocations()
122 ? next_it->first in GetVariableLocations()
/art/build/apex/
DAndroid.bp15 // only the "first" (likely 64-bit) version is required on host).
69 // only the "first" (likely 64-bit) version is required on host).
209 first: {
244 first: {
330 first: {
/art/tools/jvmti-agents/field-null-percent/
Dfieldnull.cc102 jclass klass = p.first; in DataDumpRequestCb()
107 p.first, in DataDumpRequestCb()
/art/runtime/gc/
Dtask_processor.cc83 for (auto it = range.first; it != range.second; ++it) { in UpdateTargetRunTime()
/art/test/800-smali/smali/
Db_21869691A.smali23 # method. In this test, this is done in A (A < B, so processed first). The "real" call is in B.
/art/dex2oat/linker/
Dimage_writer.cc499 ArrayRef<const uint8_t> raw_image_data(image_info.image_.Begin() + block.first, in Write()
507 out_offset = block.first; in Write()
515 /*image_offset=*/ block.first, in Write()
946 const size_t length = RoundUp(image_info.CreateImageSections().first, kPageSize); in AllocMemory()
1467 const DexFile* image_dex_file = pair.first; in CollectDexCaches()
2031 DCHECK(entry.first->IsClass()); in ProcessDexFileObjects()
2032 bool assigned = TryAssignBinSlot(entry.first, entry.second); in ProcessDexFileObjects()
2093 VisitReferences(/*obj=*/ pair.first, /*oat_index=*/ pair.second); in ProcessWorkQueue()
2492 image_info.image_size_ = RoundUp(image_info.CreateImageSections().first, kPageSize); in CalculateNewObjectOffsets()
2667 const size_t image_end = section_info_pair.first; in CreateHeader()
[all …]
/art/runtime/gc/space/
Dmalloc_space.cc77 freed.first = nullptr; in MallocSpace()
128 if (recent_freed_objects_[pos].first == obj) { in FindRecentFreedObject()
/art/test/435-try-finally-without-catch/
Dinfo.txt25 instructions in a proper fashion, by removing them as users first, and

12345678910