[Lldb-commits] [lldb] r177907 - <rdar://problem/13498504>
Han Ming Ong
hanming at apple.com
Mon Mar 25 13:44:40 PDT 2013
Author: hanming
Date: Mon Mar 25 15:44:40 2013
New Revision: 177907
URL: http://llvm.org/viewvc/llvm-project?rev=177907&view=rev
Log:
<rdar://problem/13498504>
Don't hard code vm page size in profiling code
Modified:
lldb/trunk/tools/debugserver/source/MacOSX/MachTask.cpp
lldb/trunk/tools/debugserver/source/MacOSX/MachVMMemory.cpp
Modified: lldb/trunk/tools/debugserver/source/MacOSX/MachTask.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/debugserver/source/MacOSX/MachTask.cpp?rev=177907&r1=177906&r2=177907&view=diff
==============================================================================
--- lldb/trunk/tools/debugserver/source/MacOSX/MachTask.cpp (original)
+++ lldb/trunk/tools/debugserver/source/MacOSX/MachTask.cpp Mon Mar 25 15:44:40 2013
@@ -417,12 +417,20 @@ MachTask::GetProfileData (DNBProfileData
if (scanType & eProfileMemory)
{
- profile_data_stream << "wired:" << vm_stats.wire_count * vm_page_size << ';';
- profile_data_stream << "active:" << vm_stats.active_count * vm_page_size << ';';
- profile_data_stream << "inactive:" << vm_stats.inactive_count * vm_page_size << ';';
+ static vm_size_t pagesize;
+ static bool calculated = false;
+ if (!calculated)
+ {
+ calculated = true;
+ host_page_size(mach_host_self(), &pagesize);
+ }
+
+ profile_data_stream << "wired:" << vm_stats.wire_count * pagesize << ';';
+ profile_data_stream << "active:" << vm_stats.active_count * pagesize << ';';
+ profile_data_stream << "inactive:" << vm_stats.inactive_count * pagesize << ';';
uint64_t total_used_count = vm_stats.wire_count + vm_stats.inactive_count + vm_stats.active_count;
- profile_data_stream << "used:" << total_used_count * vm_page_size << ';';
- profile_data_stream << "free:" << vm_stats.free_count * vm_page_size << ';';
+ profile_data_stream << "used:" << total_used_count * pagesize << ';';
+ profile_data_stream << "free:" << vm_stats.free_count * pagesize << ';';
profile_data_stream << "rprvt:" << rprvt << ';';
profile_data_stream << "rsize:" << rsize << ';';
Modified: lldb/trunk/tools/debugserver/source/MacOSX/MachVMMemory.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/debugserver/source/MacOSX/MachVMMemory.cpp?rev=177907&r1=177906&r2=177907&view=diff
==============================================================================
--- lldb/trunk/tools/debugserver/source/MacOSX/MachVMMemory.cpp (original)
+++ lldb/trunk/tools/debugserver/source/MacOSX/MachVMMemory.cpp Mon Mar 25 15:44:40 2013
@@ -186,7 +186,9 @@ static uint64_t GetStolenPages()
if(stolen >= mb128)
{
stolen = (stolen & ~((128 * 1024 * 1024ULL) - 1)); // rounding down
- stolenPages = stolen/vm_page_size;
+ vm_size_t pagesize = vm_page_size;
+ host_page_size(mach_host_self(), &pagesize);
+ stolenPages = stolen/pagesize;
}
}
}
@@ -222,7 +224,7 @@ static void GetRegionSizes(task_t task,
while (1)
{
- mach_msg_type_number_t count;
+ mach_msg_type_number_t count;
struct vm_region_submap_info_64 info;
count = VM_REGION_SUBMAP_INFO_COUNT_64;
@@ -260,8 +262,16 @@ static void GetRegionSizes(task_t task,
}
}
- rsize = pages_resident * vm_page_size;
- dirty_size = pages_dirtied * vm_page_size;
+ static vm_size_t pagesize;
+ static bool calculated = false;
+ if (!calculated)
+ {
+ calculated = true;
+ host_page_size(mach_host_self(), &pagesize);
+ }
+
+ rsize = pages_resident * pagesize;
+ dirty_size = pages_dirtied * pagesize;
}
// Test whether the virtual address is within the architecture's shared region.
@@ -302,9 +312,16 @@ static void GetMemorySizes(task_t task,
mach_vm_size_t fw_private = 0;
mach_vm_size_t aliased = 0;
- mach_vm_size_t pagesize = vm_page_size;
bool global_shared_text_data_mapped = false;
+ static vm_size_t pagesize;
+ static bool calculated = false;
+ if (!calculated)
+ {
+ calculated = true;
+ host_page_size(mach_host_self(), &pagesize);
+ }
+
for (mach_vm_address_t addr=0, size=0; ; addr += size)
{
vm_region_top_info_data_t info;
@@ -321,7 +338,7 @@ static void GetMemorySizes(task_t task,
// Check if this process has the globally shared text and data regions mapped in. If so, set global_shared_text_data_mapped to TRUE and avoid checking again.
if (global_shared_text_data_mapped == FALSE && info.share_mode == SM_EMPTY) {
- vm_region_basic_info_data_64_t b_info;
+ vm_region_basic_info_data_64_t b_info;
mach_vm_address_t b_addr = addr;
mach_vm_size_t b_size = size;
count = VM_REGION_BASIC_INFO_COUNT_64;
More information about the lldb-commits
mailing list