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() { |
| 22 method_ = kCpuInfoSystem; |
| 23 |
| 24 fields_[kCpuInfoProcessor] = "machdep.cpu.vendor"; |
| 25 fields_[kCpuInfoModel] = "machdep.cpu.brand_string"; |
| 26 fields_[kCpuInfoHardware] = "machdep.cpu.brand_string"; |
| 27 fields_[kCpuInfoFeatures] = "machdep.cpu.features"; |
| 28 } |
| 29 |
| 30 |
| 31 void CpuInfo::Cleanup() {} |
| 32 |
| 33 |
| 34 bool CpuInfo::FieldContainsByString(const char* field, |
| 35 const char* search_string) { |
| 36 ASSERT(method_ != kCpuInfoDefault); |
| 37 ASSERT(search_string != NULL); |
| 38 char dest[1024]; |
| 39 size_t dest_len = 1024; |
| 40 |
| 41 ASSERT(HasField(field)); |
| 42 if (sysctlbyname(field, dest, &dest_len, NULL, 0) != 0) { |
| 43 UNREACHABLE(); |
| 44 return false; |
| 45 } |
| 46 |
| 47 return (strcasestr(dest, search_string) != NULL); |
| 48 } |
| 49 |
| 50 |
| 51 bool CpuInfo::FieldContains(CpuInfoIndices idx, const char* search_string) { |
| 52 ASSERT(method_ != kCpuInfoDefault); |
| 53 return FieldContainsByString(FieldName(idx), search_string); |
| 54 } |
| 55 |
| 56 |
| 57 const char* CpuInfo::ExtractFieldByString(const char* field) { |
| 58 ASSERT(method_ != kCpuInfoDefault); |
| 59 ASSERT(field != NULL); |
| 60 size_t result_len; |
| 61 |
| 62 ASSERT(HasField(field)); |
| 63 if (sysctlbyname(field, NULL, &result_len, NULL, 0) != 0) { |
| 64 UNREACHABLE(); |
| 65 return 0; |
| 66 } |
| 67 |
| 68 char* result = new char[result_len]; |
| 69 if (sysctlbyname(field, result, &result_len, NULL, 0) != 0) { |
| 70 UNREACHABLE(); |
| 71 return 0; |
| 72 } |
| 73 |
| 74 return result; |
| 75 } |
| 76 |
| 77 |
| 78 const char* CpuInfo::ExtractField(CpuInfoIndices idx) { |
| 79 ASSERT(method_ != kCpuInfoDefault); |
| 80 return ExtractFieldByString(FieldName(idx)); |
| 81 } |
| 82 |
| 83 |
| 84 bool CpuInfo::HasField(const char* field) { |
| 85 ASSERT(method_ != kCpuInfoDefault); |
| 86 ASSERT(field != NULL); |
| 87 int ret = sysctlbyname(field, NULL, NULL, NULL, 0); |
| 88 return (ret != ENOENT); |
| 89 } |
| 90 |
| 91 } // namespace dart |
| 92 |
| 93 #endif // defined(TARGET_OS_MACOS) |
OLD | NEW |