Home
last modified time | relevance | path

Searched refs:it (Results 276 – 300 of 334) sorted by relevance

1...<<11121314

/art/compiler/driver/
Dcompiler_options_map.def31 // almost-always the value of the type as if it was memset to all 0.
/art/runtime/interpreter/mterp/x86/
Dother.S95 movl rIBASE, %ecx # preserve rIBASE (cltd trashes it)
105 movl rIBASE, %ecx # preserve rIBASE (cltd trashes it)
/art/runtime/verifier/
Dregister_line.cc408 auto it = src_map.find(src); in FindLockAliasedRegister() local
409 if (it == src_map.end()) { in FindLockAliasedRegister()
413 uint32_t src_lock_levels = it->second; in FindLockAliasedRegister()
Dverifier_deps.cc81 auto it = dex_deps_.find(&dex_file); in GetDexFileDeps() local
82 return (it == dex_deps_.end()) ? nullptr : it->second.get(); in GetDexFileDeps()
86 auto it = dex_deps_.find(&dex_file); in GetDexFileDeps() local
87 return (it == dex_deps_.end()) ? nullptr : it->second.get(); in GetDexFileDeps()
/art/libartbase/base/
Dhash_set.h372 iterator erase(iterator it) { in erase() argument
374 size_t empty_index = it.index_; in erase()
413 ++it; in erase()
415 return it; in erase()
/art/oatdump/
Doatdump.cc121 auto it = opened_dex_files.find(oat_dex_file); in OpenDexFile() local
122 if (it != opened_dex_files.end()) { in OpenDexFile()
123 return it->second.get(); in OpenDexFile()
696 auto it = offsets_.upper_bound(begin_offset); in ComputeSize() local
697 CHECK(it != offsets_.end()); in ComputeSize()
698 uintptr_t end_offset = *it; in ComputeSize()
817 for (const auto& it : stats.Children()) { in DumpStats() local
818 sorted_children.emplace(std::make_pair(-it.second.Value(), it.first), it.second); in DumpStats()
830 for (const auto& it : sorted_children) { in DumpStats() local
831 DumpStats(os, it.first.second, it.second, total); in DumpStats()
[all …]
/art/openjdkjvmti/
Dti_class.cc344 for (auto it = temp_classes.begin(); it != temp_classes.end(); ++it) { in HandleTempClass() local
345 … if (temp_klass.Get() == art::ObjPtr<art::mirror::Class>::DownCast(self->DecodeJObject(*it))) { in HandleTempClass()
346 self->GetJniEnv()->DeleteGlobalRef(*it); in HandleTempClass()
347 temp_classes.erase(it); in HandleTempClass()
Dti_redefine.cc863 for (const ObsoleteMap::ObsoleteMethodPair& it : *ctx.obsolete_map) { in FindAndAllocateObsoleteMethods()
866 jit->GetCodeCache()->MoveObsoleteMethod(it.old_method, it.obsolete_method); in FindAndAllocateObsoleteMethods()
1770 auto it = std::find_if(iterator.begin(), in CollectAndCreateNewInstances() local
1775 DCHECK(it != iterator.end()) << "Unable to find class pair for " in CollectAndCreateNewInstances()
1778 auto [_, new_type] = *it; in CollectAndCreateNewInstances()
1972 *cur_data + 1, holder.end(), [&](auto it) REQUIRES_SHARED(art::Locks::mutator_lock_) { in FinishNewClassAllocations()
1973 return it.GetMirrorClass() == old_type.Get(); in FinishNewClassAllocations()
2897 auto it = field_map.find(f); in UpdateClassStructurally()
2902 } else if (it != field_map.end()) { in UpdateClassStructurally()
2904 << it->second->PrettyField(); in UpdateClassStructurally()
[all …]
/art/tools/luci/config/
Dcr-buildbucket.cfg37 # the time it takes to run all steps on most builders.
/art/libartpalette/
DAndroid.bp38 // layer. It is only used on Android. For other targets, it just
/art/test/546-regression-simplify-catch/smali/
DTestCase.smali19 # because it did expect at least a control-flow instruction (b/25494450).
/art/runtime/interpreter/mterp/arm/
Dother.S15 bne MterpPossibleException @ let reference interpreter deal with it.
89 bne MterpPossibleException @ let reference interpreter deal with it.
331 GOTO_OPCODE ip @ execute it
/art/libprofile/
DAndroid.bp72 // generically. dex2oat takes care of it itself.
/art/test/550-checker-regression-wide-store/smali/
DTestCase.smali26 # behaviour implications so we run it from Main.main.
/art/tools/jvmti-agents/ti-fast/
DREADME.md5 anything meaning that it can be considered speed-of-light.
/art/test/563-checker-fakestring/smali/
DTestCase.smali28 # Create new instance of String and store it to v0, v1, v2.
42 # Test usage of String new-instance before it is initialized.
130 # Although it looks like we "use" the new-instance v0 here, the optimizing compiler
297 # Use the new-instance in the only way it can be used.
/art/test/543-checker-dce-trycatch/smali/
DTestCase.smali118 # throwing into it are removed.
166 # stored with the merge block gets deleted and SSAChecker would fail if it was
186 # Merge block. Make complex so it does not get merged with the live branch.
/art/runtime/
Druntime_options.def31 // almost-always the value of the type as if it was memset to all 0.
181 // work on host, and we do not want to enable it in tests.
Dmonitor.cc1650 for (auto it = list_.begin(); it != list_.end(); ) { in SweepMonitorList() local
1651 Monitor* m = *it; in SweepMonitorList()
1660 it = list_.erase(it); in SweepMonitorList()
1663 ++it; in SweepMonitorList()
Doat_file_manager.cc92 auto it = oat_files_.find(compare); in UnRegisterAndDeleteOatFile() local
93 CHECK(it != oat_files_.end()); in UnRegisterAndDeleteOatFile()
94 oat_files_.erase(it); in UnRegisterAndDeleteOatFile()
/art/dex2oat/
Ddex2oat_options.def31 // almost-always the value of the type as if it was memset to all 0.
/art/test/565-checker-irreducible-loop/smali/
DIrreducibleLoop.smali20 # move the constant-folded value to where it's expected.
/art/test/VerifierDeps/
DMain.smali416 # Method join() is declared in the superclass of MyThread. As such, it should
418 # on the invoke type, so it shall be resolved here anyway.
427 …# However, the lookup type does not depend on the invoke type, so it shall be resolved here anyway.
/art/compiler/optimizing/
Dssa_liveness_analysis.h1064 for (HLoopInformationOutwardIterator it(block_at_use); in AddBackEdgeUses()
1065 !it.Done(); in AddBackEdgeUses()
1066 it.Advance()) { in AddBackEdgeUses()
1067 HLoopInformation* current = it.Current(); in AddBackEdgeUses()
/art/runtime/gc/collector/
Dmark_sweep.cc1399 for (auto* it = mark_stack_->Begin(), *end = mark_stack_->End(); it < end; ) { in ProcessMarkStackParallel() local
1400 const size_t delta = std::min(static_cast<size_t>(end - it), chunk_size); in ProcessMarkStackParallel()
1401 thread_pool->AddTask(self, new MarkStackTask<false>(thread_pool, this, delta, it)); in ProcessMarkStackParallel()
1402 it += delta; in ProcessMarkStackParallel()

1...<<11121314