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