OLD | NEW |
---|---|
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "base/trace_event/process_memory_dump.h" | 5 #include "base/trace_event/process_memory_dump.h" |
6 | 6 |
7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/aligned_memory.h" |
8 #include "base/process/process_metrics.h" | |
8 #include "base/trace_event/memory_allocator_dump_guid.h" | 9 #include "base/trace_event/memory_allocator_dump_guid.h" |
9 #include "base/trace_event/trace_event_argument.h" | 10 #include "base/trace_event/trace_event_argument.h" |
10 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
11 | 12 |
12 namespace base { | 13 namespace base { |
13 namespace trace_event { | 14 namespace trace_event { |
14 | 15 |
15 TEST(ProcessMemoryDumpTest, Clear) { | 16 TEST(ProcessMemoryDumpTest, Clear) { |
16 scoped_ptr<ProcessMemoryDump> pmd1(new ProcessMemoryDump(nullptr)); | 17 scoped_ptr<ProcessMemoryDump> pmd1(new ProcessMemoryDump(nullptr)); |
17 pmd1->CreateAllocatorDump("mad1"); | 18 pmd1->CreateAllocatorDump("mad1"); |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
147 ASSERT_TRUE(found_edge[0]); | 148 ASSERT_TRUE(found_edge[0]); |
148 ASSERT_TRUE(found_edge[1]); | 149 ASSERT_TRUE(found_edge[1]); |
149 | 150 |
150 // Check that calling AsValueInto() doesn't cause a crash. | 151 // Check that calling AsValueInto() doesn't cause a crash. |
151 scoped_refptr<TracedValue> traced_value(new TracedValue()); | 152 scoped_refptr<TracedValue> traced_value(new TracedValue()); |
152 pmd->AsValueInto(traced_value.get()); | 153 pmd->AsValueInto(traced_value.get()); |
153 | 154 |
154 pmd.reset(); | 155 pmd.reset(); |
155 } | 156 } |
156 | 157 |
158 #if defined(COUNT_RESIDENT_BYTES_SUPPORTED) | |
159 TEST(ProcessMemoryDumpTest, CountResidentBytes) { | |
160 const size_t page_size = base::GetPageSize(); | |
161 | |
162 // Allocate few page of dirty memory and check if it is resident. | |
163 scoped_ptr<char, base::AlignedFreeDeleter> memory1( | |
164 static_cast<char*>(base::AlignedAlloc(5 * page_size, page_size))); | |
165 size_t res1 = | |
Primiano Tucci (use gerrit)
2015/10/09 09:48:51
I think you want to memset these.
ssid
2015/10/09 10:57:40
Yess. done
| |
166 ProcessMemoryDump::CountResidentBytes(memory1.get(), 5 * page_size); | |
167 ASSERT_EQ(res1, 5 * page_size); | |
168 | |
169 // Allocate a large memory segment (>32Mib). | |
170 const size_t kVeryLargeMemorySize = 34 * 1024 * 1024; | |
171 scoped_ptr<char, base::AlignedFreeDeleter> memory2( | |
172 static_cast<char*>(base::AlignedAlloc(kVeryLargeMemorySize, page_size))); | |
173 size_t res2 = ProcessMemoryDump::CountResidentBytes(memory2.get(), | |
174 kVeryLargeMemorySize); | |
175 ASSERT_EQ(res2, kVeryLargeMemorySize); | |
176 } | |
177 #endif // defined(COUNT_RESIDENT_BYTES_SUPPORTED) | |
178 | |
157 } // namespace trace_event | 179 } // namespace trace_event |
158 } // namespace base | 180 } // namespace base |
OLD | NEW |