Delete dead code in MachVMMemory.cpp, NFC
authorVedant Kumar <vsk@apple.com>
Sat, 24 Feb 2018 00:17:05 +0000 (00:17 +0000)
committerVedant Kumar <vsk@apple.com>
Sat, 24 Feb 2018 00:17:05 +0000 (00:17 +0000)
This addresses a compiler warning.

llvm-svn: 326002

lldb/tools/debugserver/source/MacOSX/MachVMMemory.cpp

index 5d6bb66..eb5e8ab 100644 (file)
@@ -113,42 +113,6 @@ static uint64_t GetPhysicalMemory() {
   return physical_memory;
 }
 
-// Test whether the virtual address is within the architecture's shared region.
-static bool InSharedRegion(mach_vm_address_t addr, cpu_type_t type) {
-  mach_vm_address_t base = 0, size = 0;
-
-  switch (type) {
-#if defined(CPU_TYPE_ARM64) && defined(SHARED_REGION_BASE_ARM64)
-  case CPU_TYPE_ARM64:
-    base = SHARED_REGION_BASE_ARM64;
-    size = SHARED_REGION_SIZE_ARM64;
-    break;
-#endif
-
-  case CPU_TYPE_ARM:
-    base = SHARED_REGION_BASE_ARM;
-    size = SHARED_REGION_SIZE_ARM;
-    break;
-
-  case CPU_TYPE_X86_64:
-    base = SHARED_REGION_BASE_X86_64;
-    size = SHARED_REGION_SIZE_X86_64;
-    break;
-
-  case CPU_TYPE_I386:
-    base = SHARED_REGION_BASE_I386;
-    size = SHARED_REGION_SIZE_I386;
-    break;
-
-  default: {
-    // Log error abut unknown CPU type
-    break;
-  }
-  }
-
-  return (addr >= base && addr < (base + size));
-}
-
 nub_bool_t MachVMMemory::GetMemoryProfile(
     DNBProfileDataScanType scanType, task_t task, struct task_basic_info ti,
     cpu_type_t cputype, nub_process_t pid, vm_statistics64_data_t &vminfo,