OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 #include "vm/globals.h" |
| 6 #if defined(TARGET_OS_MACOS) |
| 7 |
| 8 #include "vm/cpuinfo.h" |
| 9 |
| 10 #include <errno.h> // NOLINT |
| 11 #include <sys/types.h> // NOLINT |
| 12 #include <sys/sysctl.h> // NOLINT |
| 13 |
| 14 #include "platform/assert.h" |
| 15 |
| 16 namespace dart { |
| 17 |
| 18 CpuInfoMethod CpuInfo::method_ = kCpuInfoDefault; |
| 19 const char* CpuInfo::fields_[kCpuInfoMax] = {0}; |
| 20 |
| 21 void CpuInfo::InitOnce(CpuInfoMethod method) { |
| 22 // On MacOS, only the system call method is supported. |
| 23 ASSERT((method == kCpuInfoDefault) || (method == kCpuInfoSystem)); |
| 24 method_ = kCpuInfoSystem; |
| 25 |
| 26 fields_[kCpuInfoProcessor] = "machdep.cpu.vendor"; |
| 27 fields_[kCpuInfoModel] = "machdep.cpu.brand_string"; |
| 28 fields_[kCpuInfoHardware] = "machdep.cpu.brand_string"; |
| 29 fields_[kCpuInfoFeatures] = "machdep.cpu.features"; |
| 30 } |
| 31 |
| 32 |
| 33 bool CpuInfo::FieldContainsByString(const char* field, |
| 34 const char* search_string) { |
| 35 ASSERT(search_string != NULL); |
| 36 char dest[1024]; |
| 37 size_t dest_len = 1024; |
| 38 |
| 39 ASSERT(HasField(field)); |
| 40 if (sysctlbyname(field, dest, &dest_len, NULL, 0) != 0) { |
| 41 UNREACHABLE(); |
| 42 return false; |
| 43 } |
| 44 |
| 45 return (strcasestr(dest, search_string) != NULL); |
| 46 } |
| 47 |
| 48 |
| 49 bool CpuInfo::FieldContains(CpuInfoIndices idx, const char* search_string) { |
| 50 return FieldContainsByString(FieldName(idx), search_string); |
| 51 } |
| 52 |
| 53 |
| 54 const char* CpuInfo::ExtractFieldByString(const char* field) { |
| 55 ASSERT(field != NULL); |
| 56 size_t result_len; |
| 57 |
| 58 ASSERT(HasField(field)); |
| 59 if (sysctlbyname(field, NULL, &result_len, NULL, 0) != 0) { |
| 60 UNREACHABLE(); |
| 61 return 0; |
| 62 } |
| 63 |
| 64 char* result = new char[result_len]; |
| 65 if (sysctlbyname(field, result, &result_len, NULL, 0) != 0) { |
| 66 UNREACHABLE(); |
| 67 return 0; |
| 68 } |
| 69 |
| 70 return result; |
| 71 } |
| 72 |
| 73 |
| 74 const char* CpuInfo::ExtractField(CpuInfoIndices idx) { |
| 75 return ExtractFieldByString(FieldName(idx)); |
| 76 } |
| 77 |
| 78 |
| 79 bool CpuInfo::HasField(const char* field) { |
| 80 ASSERT(field != NULL); |
| 81 int ret = sysctlbyname(field, NULL, NULL, NULL, 0); |
| 82 return (ret != ENOENT); |
| 83 } |
| 84 |
| 85 } // namespace dart |
| 86 |
| 87 #endif // defined(TARGET_OS_MACOS) |
OLD | NEW |