Home
last modified time | relevance | path

Searched refs:End (Results 1 – 25 of 45) sorted by relevance

12

/art/runtime/gc/space/
Dmalloc_space.cc50 CHECK(IsAligned<kGcCardSize>(reinterpret_cast<uintptr_t>(mem_map->End()))); in MallocSpace()
132 byte* original_end = End(); in MoreCore()
166 SetEnd(reinterpret_cast<byte*>(RoundUp(reinterpret_cast<uintptr_t>(End()), kPageSize))); in CreateZygoteSpace()
168 DCHECK(IsAligned<accounting::CardTable::kCardSize>(End())); in CreateZygoteSpace()
170 DCHECK(IsAligned<kPageSize>(End())); in CreateZygoteSpace()
178 << "End " << reinterpret_cast<const void*>(End()) << "\n" in CreateZygoteSpace()
191 std::unique_ptr<MemMap> mem_map(GetMemMap()->RemapAtEnd(End(), alloc_space_name, in CreateZygoteSpace()
194 void* allocator = CreateAllocator(End(), starting_size_, initial_size_, capacity, in CreateZygoteSpace()
201 *out_malloc_space = CreateInstance(alloc_space_name, mem_map.release(), allocator, End(), end, in CreateZygoteSpace()
203 SetLimit(End()); in CreateZygoteSpace()
[all …]
Dzygote_space.cc51 reinterpret_cast<uintptr_t>(mem_map->End()), visitor); in Create()
65 : ContinuousMemMapAllocSpace(name, mem_map, mem_map->Begin(), mem_map->End(), mem_map->End(), in ZygoteSpace()
73 << ",end=" << reinterpret_cast<void*>(End()) in Dump()
Dbump_pointer_space.cc56 : ContinuousMemMapAllocSpace(name, mem_map, mem_map->Begin(), mem_map->Begin(), mem_map->End(), in BumpPointerSpace()
58 growth_end_(mem_map->End()), in BumpPointerSpace()
86 << reinterpret_cast<void*>(Begin()) << "-" << reinterpret_cast<void*>(End()) << " - " in Dump()
155 byte* end = End(); in Walk()
192 CHECK_LE(reinterpret_cast<const byte*>(end), End()); in Walk()
263 size_t max_contiguous_allocation = Limit() - End(); in LogFragmentationAllocFailure()
Dlarge_object_space.cc179 callback(mem_map->Begin(), mem_map->End(), mem_map->Size(), arg); in Walk()
264 DCHECK_LT(info, reinterpret_cast<AllocationInfo*>(allocation_info_map_->End())); in GetSlotIndexForAllocationInfo()
291 return new FreeListSpace(name, mem_map, mem_map->Begin(), mem_map->End()); in Create()
342 << reinterpret_cast<void*>(End()); in Free()
437 new_info = GetAllocationInfoForAddress(reinterpret_cast<uintptr_t>(End()) - free_end_); in Alloc()
468 << " end: " << reinterpret_cast<void*>(End()) << "\n"; in Dump()
509 if (Begin() >= End()) { in Sweep()
520 reinterpret_cast<uintptr_t>(End()), SweepCallback, &scc); in Sweep()
Dlarge_object_space.h78 byte* End() const { in End() function
83 return End() - Begin(); in Size()
88 return Begin() <= byte_obj && byte_obj < End(); in Contains()
Dbump_pointer_space.h116 return Begin() == End(); in IsEmpty()
125 return byte_obj >= Begin() && byte_obj < End(); in Contains()
/art/runtime/
Doat_file.cc239 if (oat > End()) { in Setup()
245 if (oat > End()) { in Setup()
249 End()); in Setup()
263 if (UNLIKELY(oat > End())) { in Setup()
271 if (UNLIKELY(oat > End())) { in Setup()
281 if (UNLIKELY(oat > End())) { in Setup()
301 if (UNLIKELY(oat > End())) { in Setup()
325 if (UNLIKELY(oat > End())) { in Setup()
363 const byte* OatFile::End() const { in End() function in art::OatFile
472 CHECK_LT(oat_class_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass()
[all …]
Dmem_map.h110 byte* End() const { in End() function
127 return Begin() <= addr && addr < End(); in HasAddress()
Delf_file.h62 byte* End() const { in End() function
63 return map_->End(); in End()
Doat_file.h286 return End() - Begin(); in Size()
290 const byte* End() const;
/art/runtime/gc/accounting/
Datomic_stack.h147 T* End() const { in End() function
165 std::sort(Begin(), End()); in Sort()
175 return std::binary_search(Begin(), End(), value); in ContainsSorted()
179 return std::find(Begin(), End(), value) != End(); in Contains()
Dcard_table.cc96 byte* card_end = CardFromAddr(space->End()); // Make sure to round up. in ClearSpaceCards()
112 byte* end = mem_map_->End(); in CheckAddrIsInCardTable()
Dcard_table-inl.h204 << " end: " << reinterpret_cast<void*>(mem_map_->End()); in AddrFromCard()
221 << " end: " << reinterpret_cast<void*>(mem_map_->End()); in CheckCardValid()
Dcard_table.h134 byte* end = mem_map_->End(); in IsValidCard()
/art/compiler/utils/
Dswap_space.cc177 CHECK_LE(prev->End(), chunk.Start()); in Free()
178 if (prev->End() == chunk.Start()) { in Free()
189 CHECK_LE(chunk.End(), it->Start()); in Free()
190 if (chunk.End() == it->Start()) { in Free()
Dscoped_arena_allocator.cc70 top_end_ = top_arena_->End(); in AllocateFromNextArena()
133 mark_end_ = arena_stack_->top_end_ = mark_arena_->End(); in Reset()
/art/compiler/dex/
Dbb_optimizations.h110 void End(PassDataHolder* data) const { in End() function
165 void End(PassDataHolder* data) const { in End() function
196 void End(PassDataHolder* data) const { in End() function
231 void End(PassDataHolder* data) const OVERRIDE { in End() function
Dpass.h75 virtual void End(PassDataHolder* data) const { in End() function
Dpost_opt_passes.h118 void End(PassDataHolder* data) const { in End() function
291 void End(PassDataHolder* data) const { in End() function
/art/test/701-easy-div-rem/
Dexpected.txt8 End
/art/runtime/gc/collector/
Dmark_compact.cc127 reinterpret_cast<uintptr_t>(space_->End()), in CalculateObjectForwardingAddresses()
277 std::vector<Object*> temp(mark_stack_->Begin(), mark_stack_->End()); in ResizeMarkStack()
361 reinterpret_cast<uintptr_t>(space->End()), in UpdateReferences()
373 reinterpret_cast<uintptr_t>(space_->End()), in UpdateReferences()
386 int64_t bytes_freed = reinterpret_cast<int64_t>(space_->End()) - in Compact()
525 reinterpret_cast<uintptr_t>(space_->End()), in MoveObjects()
Dmark_sweep.cc330 std::vector<Object*> temp(mark_stack_->Begin(), mark_stack_->End()); in ResizeMarkStack()
738 Object** mark_stack_end = mark_stack_->End(); in ScanGrayObjects()
750 byte* card_end = space->End(); in ScanGrayObjects()
771 DCHECK_EQ(mark_stack_end, mark_stack_->End()); in ScanGrayObjects()
808 card_table->Scan(space->GetMarkBitmap(), space->Begin(), space->End(), visitor, in ScanGrayObjects()
867 uintptr_t end = reinterpret_cast<uintptr_t>(space->End()); in RecursiveMark()
889 uintptr_t end = reinterpret_cast<uintptr_t>(space->End()); in RecursiveMark()
938 CHECK(std::find(allocation_stack->Begin(), allocation_stack->End(), obj) != in VerifyIsLive()
939 allocation_stack->End()) << "Found dead object " << obj << "\n" << heap_->DumpSpaces(); in VerifyIsLive()
1173 for (mirror::Object **it = mark_stack_->Begin(), **end = mark_stack_->End(); it < end; ) { in ProcessMarkStackParallel()
Dsemi_space.cc353 reinterpret_cast<uintptr_t>(space->End()), in MarkReachableObjects()
361 reinterpret_cast<uintptr_t>(space->End()), in MarkReachableObjects()
384 reinterpret_cast<uintptr_t>(large_object_space->End()), in MarkReachableObjects()
409 last_gc_to_space_end_ = to_space_->End(); in ReclaimPhase()
414 std::vector<Object*> temp(mark_stack_->Begin(), mark_stack_->End()); in ResizeMarkStack()
/art/runtime/gc/allocator/
Drosalloc.cc159 … if (it != free_page_runs_.rend() && (last_free_page_run = *it)->End(this) == base_ + footprint_) { in AllocPages()
187 DCHECK_EQ(last_free_page_run->End(this), base_ + new_footprint); in AllocPages()
351 << std::hex << reinterpret_cast<uintptr_t>(fpr->End(this)) << " [" << std::dec in FreePages()
352 … << (fpr->End(this) == End() ? page_map_size_ : ToPageMapIndex(fpr->End(this))) << "]"; in FreePages()
362 << std::hex << reinterpret_cast<uintptr_t>(h->End(this)) << " [" << std::dec in FreePages()
363 … << (h->End(this) == End() ? page_map_size_ : ToPageMapIndex(h->End(this))) << "]"; in FreePages()
365 if (fpr->End(this) == h->Begin()) { in FreePages()
404 << std::hex << reinterpret_cast<uintptr_t>(l->End(this)) << " [" << std::dec in FreePages()
405 … << (l->End(this) == End() ? page_map_size_ : ToPageMapIndex(l->End(this))) << "]"; in FreePages()
407 if (l->End(this) == fpr->Begin()) { in FreePages()
[all …]
/art/compiler/
Delf_patcher.cc133 CHECK_LE(patch_ptr, reinterpret_cast<uintptr_t>(oat_file_->End())); in GetPatchLocation()
138 CHECK_LT(ret, reinterpret_cast<uintptr_t>(elf_file_->End())); in GetPatchLocation()
288 reinterpret_cast<uintptr_t>(elf_file_->End())) << "section is too large"; in WriteOutPatchData()

12