Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: content/common/host_discardable_shared_memory_manager.cc

Issue 1375963007: [tracing] Display the resident size of the discardable memory segments (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lock_discardable
Patch Set: Fix mac. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/common/host_discardable_shared_memory_manager.h" 5 #include "content/common/host_discardable_shared_memory_manager.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/atomic_sequence_num.h" 9 #include "base/atomic_sequence_num.h"
10 #include "base/bind.h" 10 #include "base/bind.h"
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 const MemorySegment* segment = segment_entry.second.get(); 178 const MemorySegment* segment = segment_entry.second.get();
179 std::string dump_name = base::StringPrintf( 179 std::string dump_name = base::StringPrintf(
180 "discardable/process_%x/segment_%d", child_process_id, segment_id); 180 "discardable/process_%x/segment_%d", child_process_id, segment_id);
181 base::trace_event::MemoryAllocatorDump* dump = 181 base::trace_event::MemoryAllocatorDump* dump =
182 pmd->CreateAllocatorDump(dump_name); 182 pmd->CreateAllocatorDump(dump_name);
183 183
184 dump->AddScalar(base::trace_event::MemoryAllocatorDump::kNameSize, 184 dump->AddScalar(base::trace_event::MemoryAllocatorDump::kNameSize,
185 base::trace_event::MemoryAllocatorDump::kUnitsBytes, 185 base::trace_event::MemoryAllocatorDump::kUnitsBytes,
186 segment->memory()->mapped_size()); 186 segment->memory()->mapped_size());
187 187
188 ssize_t resident_size =
189 base::trace_event::ProcessMemoryDump::CountResidentBytes(
190 segment->memory()->memory(), segment->memory()->mapped_size());
191 if (resident_size >= 0) {
192 dump->AddScalar("resident_size",
193 base::trace_event::MemoryAllocatorDump::kUnitsBytes,
194 static_cast<uint64>(resident_size));
195 }
196
188 // Host can only tell if whole segment is locked or not. 197 // Host can only tell if whole segment is locked or not.
189 dump->AddScalar( 198 dump->AddScalar(
190 "locked_size", base::trace_event::MemoryAllocatorDump::kUnitsBytes, 199 "locked_size", base::trace_event::MemoryAllocatorDump::kUnitsBytes,
191 segment->memory()->IsMemoryLocked() ? segment->memory()->mapped_size() 200 segment->memory()->IsMemoryLocked() ? segment->memory()->mapped_size()
192 : 0u); 201 : 0u);
193 202
194 // Create the cross-process ownership edge. If the child creates a 203 // Create the cross-process ownership edge. If the child creates a
195 // corresponding dump for the same segment, this will avoid to 204 // corresponding dump for the same segment, this will avoid to
196 // double-count them in tracing. If, instead, no other process will emit a 205 // double-count them in tracing. If, instead, no other process will emit a
197 // dump with the same guid, the segment will be accounted to the browser. 206 // dump with the same guid, the segment will be accounted to the browser.
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 482
474 enforce_memory_policy_pending_ = true; 483 enforce_memory_policy_pending_ = true;
475 base::ThreadTaskRunnerHandle::Get()->PostDelayedTask( 484 base::ThreadTaskRunnerHandle::Get()->PostDelayedTask(
476 FROM_HERE, 485 FROM_HERE,
477 base::Bind(&HostDiscardableSharedMemoryManager::EnforceMemoryPolicy, 486 base::Bind(&HostDiscardableSharedMemoryManager::EnforceMemoryPolicy,
478 weak_ptr_factory_.GetWeakPtr()), 487 weak_ptr_factory_.GetWeakPtr()),
479 base::TimeDelta::FromMilliseconds(kEnforceMemoryPolicyDelayMs)); 488 base::TimeDelta::FromMilliseconds(kEnforceMemoryPolicyDelayMs));
480 } 489 }
481 490
482 } // namespace content 491 } // namespace content
OLDNEW
« base/trace_event/process_memory_dump.cc ('K') | « content/common/discardable_shared_memory_heap.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698