Searched defs:it (Results 76 - 82 of 82) sorted by relevance

1234

/art/compiler/optimizing/
H A Dcode_generator_x86.cc452 // probably still be a from-space reference (unless it gets updated by
491 // No need to save live registers; it's taken care of by the
521 // Should the reference in `ref_` be unpoisoned prior to marking it?
577 // No need to save live registers; it's taken care of by the
606 // another thread had concurrently changed it. In that case, the
614 // mutator updates before us, but it's OK. This is achieved
662 // to unpoison it.
666 // No need to unpoison `expected` (EAX), as it is be overwritten below.
684 // Should the reference in `ref_` be unpoisoned prior to marking it?
708 // If `obj` is equal to `out` or `ref`, it mean
7836 const auto& it = jit_string_roots_.find( local
7843 const auto& it = jit_class_roots_.find( local
[all...]
H A Dcode_generator_x86_64.cc465 // probably still be a from-space reference (unless it gets updated by
505 // No need to save live registers; it's taken care of by the
535 // Should the reference in `ref_` be unpoisoned prior to marking it?
596 // No need to save live registers; it's taken care of by the
625 // another thread had concurrently changed it. In that case, the
633 // mutator updates before us, but it's OK. This is achived
682 // to unpoison it.
686 // No need to unpoison `expected` (RAX), as it is be overwritten below.
704 // Should the reference in `ref_` be unpoisoned prior to marking it?
729 // If `obj` is equal to `out` or `ref`, it mean
7143 const auto& it = jit_string_roots_.find( local
7150 const auto& it = jit_class_roots_.find( local
[all...]
/art/dexlayout/
H A Ddex_ir.h143 // Returns the existing item if it is already inserted, null otherwise.
145 auto it = collection_.find(offset); local
146 return it != collection_.end() ? it->second.get() : nullptr;
151 auto it = collection_.emplace(offset, std::unique_ptr<T>(object)); local
152 CHECK(it.second) << "CollectionMap already has an object with offset " << offset << " "
153 << " and address " << it.first->second.get();
/art/oatdump/
H A Doatdump.cc104 auto it = opened_dex_files.find(oat_dex_file); local
105 if (it != opened_dex_files.end()) {
106 return it->second.get();
230 // Note: even if this is an interface or a native class, we still have to walk it, as there
232 ClassDataItemIterator it(dex_file, class_data);
234 for (; it.HasNextStaticField(); it.Next()) { /* skip */ }
235 for (; it.HasNextInstanceField(); it.Next()) { /* skip */ }
236 for (; it
549 auto it = offsets_.upper_bound(begin_offset); local
1064 SkipAllFields(ClassDataItemIterator& it) argument
2172 auto it = state->dex_caches_.find(obj); local
2437 SizeAndCountTable::iterator it = sizes_and_counts.find(descriptor); local
[all...]
/art/runtime/
H A Ddebugger.cc111 // Method() is called from root visiting, do not use ScopedObjectAccess here or it can cause
163 // send the METHOD_ENTRY event. And we can also group it with other events for this location
171 // also group it with other events for this location like BREAKPOINT or SINGLE_STEP.
284 // JDWP is allowed unless the Zygote forbids it.
471 * type. The debugger may take a special interest in these (e.g. it
773 // Set ACC_SUPER. Dex files don't contain this flag but only classes are supposed to have it set,
775 // Class.getModifiers doesn't return it, but JDWP does, so we set it here.
955 // also ignores these cases and never return an error. However it's not obvious why this command
1469 // We should not get here for a method without code (native, proxy or abstract). Log it an
4934 auto it = table_.find(s); local
[all...]
H A Dclass_linker.cc226 // might have meant to go down the earlier if statement with the original error but it got
399 CHECK(!heap->HasBootImageSpace()) << "Runtime has image. We should use it.";
405 // java_lang_Class comes first, it's needed for AllocClass
438 // Allocate in non-movable so that it's possible to check if a JNI weak global ref has been
622 // Run Class through FindSystemClass. This initializes the dex_cache_ fields and register it
966 // Allocate in non-movable so that it's possible to check if a JNI weak global ref has been
1041 // Null dex file means it was probably a jar with no dex files, return a null string.
1394 auto it = new_class_set->Find(ClassTable::TableSlot(klass)); local
1395 DCHECK(it != new_class_set->end());
1396 DCHECK_EQ(it
3296 LoadField(const ClassDataItemIterator& it, Handle<mirror::Class> klass, ArtField* dst) argument
3305 LoadMethod(const DexFile& dex_file, const ClassDataItemIterator& it, Handle<mirror::Class> klass, ArtMethod* dst) argument
7270 auto it = move_table_.find(translated_method); local
7275 auto it = move_table_.find(translated_method); local
7307 auto it = move_table_.find(m); local
7320 auto it = move_table_.find(out_imt[i]); local
8879 auto it = extra_stats_.find(std::addressof(resolved_classes)); local
[all...]
/art/runtime/gc/
H A Dheap.cc144 // How much we grow the TLAB if we can do it.
380 // Reserve the non moving mem map before the other two since it needs to be at a specific
507 // Remove the main backup space since it slows down the GC to have unused extra spaces.
553 // now. We don't create it earlier to make it clear that you can't use locks during heap
691 // If we are the zygote and don't yet have a zygote space, it means that the zygote fork will
738 // The allocation stack may have non movable objects in it. We need to flush it since the GC
766 // we attempt to disable it.
912 // collection where it'
1063 auto it = std::find(continuous_spaces_.begin(), continuous_spaces_.end(), continuous_space); local
1071 auto it = std::find(discontinuous_spaces_.begin(), discontinuous_spaces_.end(), local
1077 auto it = std::find(alloc_spaces_.begin(), alloc_spaces_.end(), space->AsAllocSpace()); local
2373 auto it = bins_.lower_bound(alloc_size); local
3298 auto it = mod_union_tables_.find(space); local
3306 auto it = remembered_sets_.find(space); local
4016 auto it = remembered_sets_.find(space); local
[all...]

Completed in 557 milliseconds

1234