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

Side by Side Diff: components/discardable_memory/service/discardable_shared_memory_manager.cc

Issue 2535213002: [WIP] Add SharedMemoryTracker to dump base::SharedMemory usage
Patch Set: (wip) Created 3 years, 9 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 "components/discardable_memory/service/discardable_shared_memory_manage r.h" 5 #include "components/discardable_memory/service/discardable_shared_memory_manage r.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/atomic_sequence_num.h" 10 #include "base/atomic_sequence_num.h"
11 #include "base/bind.h" 11 #include "base/bind.h"
12 #include "base/callback.h" 12 #include "base/callback.h"
13 #include "base/command_line.h" 13 #include "base/command_line.h"
14 #include "base/debug/crash_logging.h" 14 #include "base/debug/crash_logging.h"
15 #include "base/macros.h" 15 #include "base/macros.h"
16 #include "base/memory/discardable_memory.h" 16 #include "base/memory/discardable_memory.h"
17 #include "base/memory/memory_coordinator_client_registry.h" 17 #include "base/memory/memory_coordinator_client_registry.h"
18 #include "base/memory/ptr_util.h" 18 #include "base/memory/ptr_util.h"
19 #include "base/memory/shared_memory_tracker.h"
19 #include "base/numerics/safe_math.h" 20 #include "base/numerics/safe_math.h"
20 #include "base/process/memory.h" 21 #include "base/process/memory.h"
21 #include "base/strings/string_number_conversions.h" 22 #include "base/strings/string_number_conversions.h"
22 #include "base/strings/stringprintf.h" 23 #include "base/strings/stringprintf.h"
23 #include "base/sys_info.h" 24 #include "base/sys_info.h"
24 #include "base/threading/thread_task_runner_handle.h" 25 #include "base/threading/thread_task_runner_handle.h"
25 #include "base/trace_event/memory_allocator_dump.h" 26 #include "base/trace_event/memory_allocator_dump.h"
26 #include "base/trace_event/memory_dump_manager.h" 27 #include "base/trace_event/memory_dump_manager.h"
27 #include "base/trace_event/process_memory_dump.h" 28 #include "base/trace_event/process_memory_dump.h"
28 #include "base/trace_event/trace_event.h" 29 #include "base/trace_event/trace_event.h"
29 #include "build/build_config.h" 30 #include "build/build_config.h"
30 #include "components/discardable_memory/common/discardable_shared_memory_heap.h" 31 #include "components/discardable_memory/common/discardable_shared_memory_heap.h"
31 #include "mojo/public/cpp/bindings/strong_binding.h" 32 #include "mojo/public/cpp/bindings/strong_binding.h"
32 #include "mojo/public/cpp/system/platform_handle.h" 33 #include "mojo/public/cpp/system/platform_handle.h"
33 34
34 #if defined(OS_LINUX) 35 #if defined(OS_LINUX)
35 #include "base/files/file_path.h" 36 #include "base/files/file_path.h"
36 #include "base/files/file_util.h" 37 #include "base/files/file_util.h"
37 #include "base/metrics/histogram_macros.h" 38 #include "base/metrics/histogram_macros.h"
38 #endif 39 #endif
39 40
40 namespace discardable_memory { 41 namespace discardable_memory {
41 namespace { 42 namespace {
42 43
43 const char kSingleProcess[] = "single-process";
44
45 const int kInvalidUniqueClientID = -1; 44 const int kInvalidUniqueClientID = -1;
46 45
47 const uint64_t kBrowserTracingProcessId = std::numeric_limits<uint64_t>::max();
48
49 uint64_t ClientProcessUniqueIdToTracingProcessId(int client_id) {
50 // TODO(penghuang): Move this function to right place.
51 // https://crbug.com/661257
52 if (base::CommandLine::ForCurrentProcess()->HasSwitch(kSingleProcess))
53 return kBrowserTracingProcessId;
54 // The hash value is incremented so that the tracing id is never equal to
55 // MemoryDumpManager::kInvalidTracingProcessId.
56 return static_cast<uint64_t>(base::Hash(
57 reinterpret_cast<const char*>(&client_id), sizeof(client_id))) +
58 1;
59 }
60
61 // mojom::DiscardableSharedMemoryManager implementation. It contains the 46 // mojom::DiscardableSharedMemoryManager implementation. It contains the
62 // |client_id_| which is not visible to client. We associate allocations with a 47 // |client_id_| which is not visible to client. We associate allocations with a
63 // given mojo instance, so if the instance is closed, we can release the 48 // given mojo instance, so if the instance is closed, we can release the
64 // allocations associated with that instance. 49 // allocations associated with that instance.
65 class MojoDiscardableSharedMemoryManagerImpl 50 class MojoDiscardableSharedMemoryManagerImpl
66 : public mojom::DiscardableSharedMemoryManager { 51 : public mojom::DiscardableSharedMemoryManager {
67 public: 52 public:
68 MojoDiscardableSharedMemoryManagerImpl( 53 MojoDiscardableSharedMemoryManagerImpl(
69 int32_t client_id, 54 int32_t client_id,
70 ::discardable_memory::DiscardableSharedMemoryManager* manager) 55 ::discardable_memory::DiscardableSharedMemoryManager* manager)
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 // Host can only tell if whole segment is locked or not. 299 // Host can only tell if whole segment is locked or not.
315 dump->AddScalar( 300 dump->AddScalar(
316 "locked_size", base::trace_event::MemoryAllocatorDump::kUnitsBytes, 301 "locked_size", base::trace_event::MemoryAllocatorDump::kUnitsBytes,
317 segment->memory()->IsMemoryLocked() ? segment->memory()->mapped_size() 302 segment->memory()->IsMemoryLocked() ? segment->memory()->mapped_size()
318 : 0u); 303 : 0u);
319 304
320 // Create the cross-process ownership edge. If the client creates a 305 // Create the cross-process ownership edge. If the client creates a
321 // corresponding dump for the same segment, this will avoid to 306 // corresponding dump for the same segment, this will avoid to
322 // double-count them in tracing. If, instead, no other process will emit a 307 // double-count them in tracing. If, instead, no other process will emit a
323 // dump with the same guid, the segment will be accounted to the browser. 308 // dump with the same guid, the segment will be accounted to the browser.
324 const uint64_t client_tracing_id = 309
325 ClientProcessUniqueIdToTracingProcessId(client_id); 310 base::SharedMemoryTracker::AddOwnershipEdges(
326 base::trace_event::MemoryAllocatorDumpGuid shared_segment_guid = 311 pmd, dump->guid(), segment->memory()->handle(),
327 DiscardableSharedMemoryHeap::GetSegmentGUIDForTracing( 312 segment->memory()->mapped_size());
328 client_tracing_id, segment_id);
329 pmd->CreateSharedGlobalAllocatorDump(shared_segment_guid);
330 pmd->AddOwnershipEdge(dump->guid(), shared_segment_guid);
331 313
332 #if defined(COUNT_RESIDENT_BYTES_SUPPORTED) 314 #if defined(COUNT_RESIDENT_BYTES_SUPPORTED)
333 if (args.level_of_detail == 315 if (args.level_of_detail ==
334 base::trace_event::MemoryDumpLevelOfDetail::DETAILED) { 316 base::trace_event::MemoryDumpLevelOfDetail::DETAILED) {
335 size_t resident_size = 317 // TODO: Fix this
318 /*size_t resident_size =
336 base::trace_event::ProcessMemoryDump::CountResidentBytes( 319 base::trace_event::ProcessMemoryDump::CountResidentBytes(
337 segment->memory()->memory(), segment->memory()->mapped_size()); 320 segment->memory()->memory(), segment->memory()->mapped_size());*/
338 321
339 // This is added to the global dump since it has to be attributed to 322 // This is added to the global dump since it has to be attributed to
340 // both the allocator dumps involved. 323 // both the allocator dumps involved.
341 pmd->GetSharedGlobalAllocatorDump(shared_segment_guid) 324 /*pmd->GetSharedGlobalAllocatorDump(shared_segment_guid)
342 ->AddScalar("resident_size", 325 ->AddScalar("resident_size",
hajimehoshi 2017/03/27 10:05:01 I have no idea what is the difference between 'res
343 base::trace_event::MemoryAllocatorDump::kUnitsBytes, 326 base::trace_event::MemoryAllocatorDump::kUnitsBytes,
344 static_cast<uint64_t>(resident_size)); 327 static_cast<uint64_t>(resident_size));*/
345 } 328 }
346 #endif // defined(COUNT_RESIDENT_BYTES_SUPPORTED) 329 #endif // defined(COUNT_RESIDENT_BYTES_SUPPORTED)
347 } 330 }
348 } 331 }
349 return true; 332 return true;
350 } 333 }
351 334
352 void DiscardableSharedMemoryManager:: 335 void DiscardableSharedMemoryManager::
353 AllocateLockedDiscardableSharedMemoryForClient( 336 AllocateLockedDiscardableSharedMemoryForClient(
354 int client_id, 337 int client_id,
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
625 return; 608 return;
626 609
627 enforce_memory_policy_pending_ = true; 610 enforce_memory_policy_pending_ = true;
628 DCHECK(enforce_memory_policy_task_runner_); 611 DCHECK(enforce_memory_policy_task_runner_);
629 enforce_memory_policy_task_runner_->PostDelayedTask( 612 enforce_memory_policy_task_runner_->PostDelayedTask(
630 FROM_HERE, enforce_memory_policy_callback_, 613 FROM_HERE, enforce_memory_policy_callback_,
631 base::TimeDelta::FromMilliseconds(kEnforceMemoryPolicyDelayMs)); 614 base::TimeDelta::FromMilliseconds(kEnforceMemoryPolicyDelayMs));
632 } 615 }
633 616
634 } // namespace discardable_memory 617 } // namespace discardable_memory
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698