HomeSort by relevance Sort by last modified time
    Searched refs:mem_map_ (Results 1 - 17 of 17) sorted by null

  /art/runtime/gc/accounting/
read_barrier_table.h 46 mem_map_.reset(mem_map);
69 mem_map_->MadviseDontNeedAndZero();
72 memset(mem_map_->Begin(), kSetEntryValue, mem_map_->Size());
75 for (uint32_t* p = reinterpret_cast<uint32_t*>(mem_map_->Begin());
76 p < reinterpret_cast<uint32_t*>(mem_map_->End()); ++p) {
93 uint8_t* entry_addr = mem_map_->Begin() + reinterpret_cast<uintptr_t>(heap_addr) / kRegionSize;
109 uint8_t* begin = mem_map_->Begin();
110 uint8_t* end = mem_map_->End();
114 std::unique_ptr<MemMap> mem_map_; member in class:art::gc::accounting::ReadBarrierTable
    [all...]
card_table.cc 94 : mem_map_(mem_map), biased_begin_(biased_begin), offset_(offset) {
103 mem_map_->MadviseDontNeedAndZero();
121 uint8_t* begin = mem_map_->Begin() + offset_;
122 uint8_t* end = mem_map_->End();
atomic_stack.h 75 DCHECK(mem_map_.get() != nullptr);
80 mem_map_->MadviseDontNeedAndZero();
252 mem_map_.reset(MemMap::MapAnonymous(name_.c_str(), nullptr, capacity_ * sizeof(begin_[0]),
254 CHECK(mem_map_.get() != nullptr) << "couldn't allocate mark stack.\n" << error_msg;
255 uint8_t* addr = mem_map_->Begin();
265 std::unique_ptr<MemMap> mem_map_; member in class:art::gc::accounting::AtomicStack
card_table-inl.h 216 << " begin: " << reinterpret_cast<void*>(mem_map_->Begin() + offset_)
217 << " end: " << reinterpret_cast<void*>(mem_map_->End());
231 uint8_t* begin = mem_map_->Begin() + offset_;
232 uint8_t* end = mem_map_->End();
239 << " begin: " << reinterpret_cast<void*>(mem_map_->Begin() + offset_)
240 << " end: " << reinterpret_cast<void*>(mem_map_->End());
bitmap.cc 36 : mem_map_(mem_map), bitmap_begin_(reinterpret_cast<uintptr_t*>(mem_map->Begin())),
70 mem_map_->MadviseDontNeedAndZero();
card_table.h 147 std::unique_ptr<MemMap> mem_map_; member in class:art::gc::accounting::CardTable
150 // Card table doesn't begin at the beginning of the mem_map_, instead it is displaced by offset
space_bitmap.cc 66 : mem_map_(mem_map),
117 mem_map_->MadviseDontNeedAndZero();
bitmap.h 114 std::unique_ptr<MemMap> mem_map_; member in class:art::gc::accounting::Bitmap
space_bitmap.h 230 std::unique_ptr<MemMap> mem_map_; member in class:art::gc::accounting::SpaceBitmap
  /art/runtime/gc/space/
space.h 380 return mem_map_.get();
384 return mem_map_.get();
388 return mem_map_.release();
399 mem_map_(mem_map) {
403 std::unique_ptr<MemMap> mem_map_; member in class:art::gc::space::MemMapSpace
large_object_space.h 213 std::unique_ptr<MemMap> mem_map_; member in class:art::gc::space::FINAL
dlmalloc_space.cc 286 mspace_ = CreateMspace(mem_map_->Begin(), starting_size_, initial_size_);
rosalloc_space.cc 367 rosalloc_ = CreateRosAlloc(mem_map_->Begin(), starting_size_, initial_size_,
large_object_space.cc 360 mem_map_(mem_map),
  /art/runtime/dex/
art_dex_file_loader.cc 41 explicit MemMapContainer(std::unique_ptr<MemMap>&& mem_map) : mem_map_(std::move(mem_map)) { }
45 if (mem_map_.get() == nullptr) {
48 return mem_map_->GetProtect();
58 if (mem_map_.get() == nullptr) {
61 return mem_map_->Protect(PROT_READ | PROT_WRITE);
67 if (mem_map_.get() == nullptr) {
70 return mem_map_->Protect(PROT_READ);
75 std::unique_ptr<MemMap> mem_map_; member in class:art::__anon87::MemMapContainer
  /art/runtime/jit/
profile_compilation_info.h 664 : fd_(fd), mem_map_(std::move(mem_map)), mem_map_cur_(0) {}
669 std::unique_ptr<MemMap> mem_map_; member in class:art::ProfileCompilationInfo::ProfileSource
    [all...]
profile_compilation_info.cc     [all...]

Completed in 388 milliseconds