| OLD | NEW |
| 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 for (const auto& process_entry : processes_) { | 173 for (const auto& process_entry : processes_) { |
| 174 const int child_process_id = process_entry.first; | 174 const int child_process_id = process_entry.first; |
| 175 const MemorySegmentMap& process_segments = process_entry.second; | 175 const MemorySegmentMap& process_segments = process_entry.second; |
| 176 for (const auto& segment_entry : process_segments) { | 176 for (const auto& segment_entry : process_segments) { |
| 177 const int segment_id = segment_entry.first; | 177 const int segment_id = segment_entry.first; |
| 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 | |
| 184 dump->AddScalar(base::trace_event::MemoryAllocatorDump::kNameSize, | 183 dump->AddScalar(base::trace_event::MemoryAllocatorDump::kNameSize, |
| 185 base::trace_event::MemoryAllocatorDump::kUnitsBytes, | 184 base::trace_event::MemoryAllocatorDump::kUnitsBytes, |
| 186 segment->memory()->mapped_size()); | 185 segment->memory()->mapped_size()); |
| 187 | 186 |
| 188 // Host can only tell if whole segment is locked or not. | |
| 189 dump->AddScalar( | |
| 190 "locked_size", base::trace_event::MemoryAllocatorDump::kUnitsBytes, | |
| 191 segment->memory()->IsMemoryLocked() ? segment->memory()->mapped_size() | |
| 192 : 0u); | |
| 193 | |
| 194 // Create the cross-process ownership edge. If the child creates a | 187 // Create the cross-process ownership edge. If the child creates a |
| 195 // corresponding dump for the same segment, this will avoid to | 188 // corresponding dump for the same segment, this will avoid to |
| 196 // double-count them in tracing. If, instead, no other process will emit a | 189 // 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. | 190 // dump with the same guid, the segment will be accounted to the browser. |
| 198 const uint64 child_tracing_process_id = | 191 const uint64 child_tracing_process_id = |
| 199 ChildProcessHostImpl::ChildProcessUniqueIdToTracingProcessId( | 192 ChildProcessHostImpl::ChildProcessUniqueIdToTracingProcessId( |
| 200 child_process_id); | 193 child_process_id); |
| 201 base::trace_event::MemoryAllocatorDumpGuid shared_segment_guid = | 194 base::trace_event::MemoryAllocatorDumpGuid shared_segment_guid = |
| 202 DiscardableSharedMemoryHeap::GetSegmentGUIDForTracing( | 195 DiscardableSharedMemoryHeap::GetSegmentGUIDForTracing( |
| 203 child_tracing_process_id, segment_id); | 196 child_tracing_process_id, segment_id); |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 473 | 466 |
| 474 enforce_memory_policy_pending_ = true; | 467 enforce_memory_policy_pending_ = true; |
| 475 base::ThreadTaskRunnerHandle::Get()->PostDelayedTask( | 468 base::ThreadTaskRunnerHandle::Get()->PostDelayedTask( |
| 476 FROM_HERE, | 469 FROM_HERE, |
| 477 base::Bind(&HostDiscardableSharedMemoryManager::EnforceMemoryPolicy, | 470 base::Bind(&HostDiscardableSharedMemoryManager::EnforceMemoryPolicy, |
| 478 weak_ptr_factory_.GetWeakPtr()), | 471 weak_ptr_factory_.GetWeakPtr()), |
| 479 base::TimeDelta::FromMilliseconds(kEnforceMemoryPolicyDelayMs)); | 472 base::TimeDelta::FromMilliseconds(kEnforceMemoryPolicyDelayMs)); |
| 480 } | 473 } |
| 481 | 474 |
| 482 } // namespace content | 475 } // namespace content |
| OLD | NEW |