Hao Lu | 922070c | 2017-10-18 16:29:02 -0700 | [diff] [blame] | 1 | #include <stdio.h> |
| 2 | #include <stdint.h> |
| 3 | #include <stdlib.h> |
| 4 | #include <string.h> |
| 5 | #include <alloca.h> |
| 6 | |
| 7 | #include <errno.h> |
| 8 | #include <sys/types.h> |
| 9 | #include <sys/sysctl.h> |
Hao Lu | 922070c | 2017-10-18 16:29:02 -0700 | [diff] [blame] | 10 | #include <mach/machine.h> |
| 11 | |
| 12 | #include <cpuinfo.h> |
| 13 | #include <mach/api.h> |
Hao Lu | 3617d5b | 2017-10-23 15:16:50 -0700 | [diff] [blame] | 14 | #include <gpu/api.h> |
Hao Lu | 922070c | 2017-10-18 16:29:02 -0700 | [diff] [blame] | 15 | #include <api.h> |
| 16 | #include <log.h> |
| 17 | |
| 18 | |
Marat Dukhan | ec86214 | 2017-10-18 17:24:46 -0700 | [diff] [blame] | 19 | struct cpuinfo_arm_isa cpuinfo_isa = { |
| 20 | #if CPUINFO_ARCH_ARM |
| 21 | .thumb = true, |
| 22 | .thumb2 = true, |
| 23 | .thumbee = false, |
| 24 | .jazelle = false, |
| 25 | .armv5e = true, |
| 26 | .armv6 = true, |
| 27 | .armv6k = true, |
| 28 | .armv7 = true, |
| 29 | .vfpv2 = false, |
| 30 | .vfpv3 = true, |
| 31 | .d32 = true, |
| 32 | .wmmx = false, |
| 33 | .wmmx2 = false, |
| 34 | .neon = true, |
| 35 | #endif |
| 36 | #if CPUINFO_ARCH_ARM64 |
| 37 | .aes = true, |
| 38 | .sha1 = true, |
| 39 | .sha2 = true, |
| 40 | .pmull = true, |
| 41 | .crc32 = true, |
| 42 | #endif |
| 43 | }; |
Marat Dukhan | 7b73888 | 2017-10-18 16:59:28 -0700 | [diff] [blame] | 44 | |
Marat Dukhan | 7d52b05 | 2018-03-18 22:57:05 -0700 | [diff] [blame] | 45 | static uint32_t get_sys_info(int type_specifier, const char* name) { |
Hao Lu | 922070c | 2017-10-18 16:29:02 -0700 | [diff] [blame] | 46 | size_t size = 0; |
| 47 | uint32_t result = 0; |
| 48 | int mib[2] = { CTL_HW, type_specifier }; |
| 49 | if (sysctl(mib, 2, NULL, &size, NULL, 0) != 0) { |
| 50 | cpuinfo_log_error("sysctl(\"%s\") failed: %s", name, strerror(errno)); |
| 51 | } else if (size == sizeof(uint32_t)) { |
| 52 | sysctl(mib, 2, &result, &size, NULL, 0); |
| 53 | cpuinfo_log_debug("%s: %"PRIu32 ", size = %lu", name, result, size); |
| 54 | } else { |
| 55 | cpuinfo_log_warning("sysctl does not support non-integer lookup for (\"%s\")", name); |
| 56 | } |
| 57 | return result; |
| 58 | } |
| 59 | |
Marat Dukhan | 7d52b05 | 2018-03-18 22:57:05 -0700 | [diff] [blame] | 60 | static uint64_t get_sys_info_by_name(const char* type_specifier) { |
Hao Lu | 922070c | 2017-10-18 16:29:02 -0700 | [diff] [blame] | 61 | size_t size = 0; |
| 62 | uint32_t result = 0; |
| 63 | if (sysctlbyname(type_specifier, NULL, &size, NULL, 0) != 0) { |
| 64 | cpuinfo_log_error("sysctlbyname(\"%s\") failed: %s", type_specifier, strerror(errno)); |
| 65 | } else if (size == sizeof(uint32_t)) { |
| 66 | sysctlbyname(type_specifier, &result, &size, NULL, 0); |
| 67 | cpuinfo_log_debug("%s: %"PRIu32 ", size = %lu", type_specifier, result, size); |
| 68 | } else { |
| 69 | cpuinfo_log_warning("sysctl does not support non-integer lookup for (\"%s\")", type_specifier); |
| 70 | } |
| 71 | return result; |
| 72 | } |
| 73 | |
| 74 | static enum cpuinfo_uarch decode_uarch(uint32_t cpu_family, uint32_t cpu_subtype, uint32_t core_index) { |
| 75 | switch (cpu_family) { |
| 76 | case CPUFAMILY_ARM_SWIFT: |
| 77 | return cpuinfo_uarch_swift; |
| 78 | case CPUFAMILY_ARM_CYCLONE: |
| 79 | return cpuinfo_uarch_cyclone; |
| 80 | case CPUFAMILY_ARM_TYPHOON: |
| 81 | return cpuinfo_uarch_typhoon; |
| 82 | case CPUFAMILY_ARM_TWISTER: |
| 83 | return cpuinfo_uarch_twister; |
| 84 | case CPUFAMILY_ARM_HURRICANE: |
| 85 | return cpuinfo_uarch_hurricane; |
Marat Dukhan | 7b73888 | 2017-10-18 16:59:28 -0700 | [diff] [blame] | 86 | #ifdef CPUFAMILY_ARM_MONSOON_MISTRAL |
Hao Lu | 922070c | 2017-10-18 16:29:02 -0700 | [diff] [blame] | 87 | case CPUFAMILY_ARM_MONSOON_MISTRAL: |
Marat Dukhan | 7b73888 | 2017-10-18 16:59:28 -0700 | [diff] [blame] | 88 | #else |
| 89 | case 0xe81e7ef6: |
| 90 | /* Hard-coded value for older SDKs which do not define CPUFAMILY_ARM_MONSOON_MISTRAL */ |
| 91 | #endif |
Hao Lu | 922070c | 2017-10-18 16:29:02 -0700 | [diff] [blame] | 92 | /* 2x Monsoon + 4x Mistral cores */ |
| 93 | return core_index < 2 ? cpuinfo_uarch_monsoon : cpuinfo_uarch_mistral; |
| 94 | default: |
| 95 | /* Use hw.cpusubtype for detection */ |
| 96 | break; |
| 97 | } |
| 98 | |
| 99 | switch (cpu_subtype) { |
| 100 | case CPU_SUBTYPE_ARM_V7: |
| 101 | return cpuinfo_uarch_cortex_a8; |
| 102 | case CPU_SUBTYPE_ARM_V7F: |
| 103 | return cpuinfo_uarch_cortex_a9; |
| 104 | case CPU_SUBTYPE_ARM_V7K: |
| 105 | return cpuinfo_uarch_cortex_a7; |
| 106 | default: |
| 107 | return cpuinfo_uarch_unknown; |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | static void decode_package_name(char* package_name) { |
| 112 | size_t size; |
| 113 | if (sysctlbyname("hw.machine", NULL, &size, NULL, 0) != 0) { |
| 114 | cpuinfo_log_warning("sysctlbyname(\"hw.machine\") failed: %s", strerror(errno)); |
| 115 | return; |
| 116 | } |
| 117 | |
| 118 | char *machine_name = alloca(size); |
| 119 | if (sysctlbyname("hw.machine", machine_name, &size, NULL, 0) != 0) { |
| 120 | cpuinfo_log_warning("sysctlbyname(\"hw.machine\") failed: %s", strerror(errno)); |
| 121 | return; |
| 122 | } |
| 123 | cpuinfo_log_debug("hw.machine: %s", machine_name); |
| 124 | |
| 125 | char name[10]; |
| 126 | uint32_t major = 0, minor = 0; |
| 127 | if (sscanf(machine_name, "%9[^,0123456789]%"SCNu32",%"SCNu32, name, &major, &minor) != 3) { |
| 128 | cpuinfo_log_warning("parsing \"hw.machine\" failed: %s", strerror(errno)); |
| 129 | return; |
| 130 | } |
| 131 | |
| 132 | uint32_t chip_model = 0; |
| 133 | char suffix = '\0'; |
| 134 | if (strcmp(name, "iPhone") == 0) { |
| 135 | /* |
| 136 | * iPhone 4 and up are supported: |
| 137 | * - iPhone 4 [A4]: iPhone3,1, iPhone3,2, iPhone3,3 |
| 138 | * - iPhone 4S [A5]: iPhone4,1 |
| 139 | * - iPhone 5 [A6]: iPhone5,1, iPhone5,2 |
| 140 | * - iPhone 5c [A6]: iPhone5,3, iPhone5,4 |
| 141 | * - iPhone 5s [A7]: iPhone6,1, iPhone6,2 |
| 142 | * - iPhone 6 [A8]: iPhone7,2 |
| 143 | * - iPhone 6 Plus [A8]: iPhone7,1 |
| 144 | * - iPhone 6s [A9]: iPhone8,1 |
| 145 | * - iPhone 6s Plus [A9]: iPhone8,2 |
| 146 | * - iPhone SE [A9]: iPhone8,4 |
| 147 | * - iPhone 7 [A10]: iPhone9,1, iPhone9,3 |
| 148 | * - iPhone 7 Plus [A10]: iPhone9,2, iPhone9,4 |
| 149 | * - iPhone 8 [A11]: iPhone10,1, iPhone10,4 |
| 150 | * - iPhone 8 Plus [A11]: iPhone10,2, iPhone10,5 |
| 151 | * - iPhone X [A11]: iPhone10,3, iPhone10,6 |
| 152 | */ |
| 153 | chip_model = major + 1; |
| 154 | } else if (strcmp(name, "iPad") == 0) { |
| 155 | switch (major) { |
| 156 | /* iPad 2 and up are supported */ |
| 157 | case 2: |
| 158 | /* |
| 159 | * iPad 2 [A5]: iPad2,1, iPad2,2, iPad2,3, iPad2,4 |
| 160 | * iPad mini [A5]: iPad2,5, iPad2,6, iPad2,7 |
| 161 | */ |
| 162 | chip_model = major + 3; |
| 163 | break; |
| 164 | case 3: |
| 165 | /* |
| 166 | * iPad 3rd Gen [A5X]: iPad3,1, iPad3,2, iPad3,3 |
| 167 | * iPad 4th Gen [A6X]: iPad3,4, iPad3,5, iPad3,6 |
| 168 | */ |
| 169 | chip_model = (minor <= 3) ? 5 : 6; |
| 170 | suffix = 'X'; |
| 171 | break; |
| 172 | case 4: |
| 173 | /* |
| 174 | * iPad Air [A7]: iPad4,1, iPad4,2, iPad4,3 |
| 175 | * iPad mini Retina [A7]: iPad4,4, iPad4,5, iPad4,6 |
| 176 | * iPad mini 3 [A7]: iPad4,7, iPad4,8, iPad4,9 |
| 177 | */ |
| 178 | chip_model = major + 3; |
| 179 | break; |
| 180 | case 5: |
| 181 | /* |
| 182 | * iPad mini 4 [A8]: iPad5,1, iPad5,2 |
| 183 | * iPad Air 2 [A8X]: iPad5,3, iPad5,4 |
| 184 | */ |
| 185 | chip_model = major + 3; |
| 186 | suffix = (minor <= 2) ? '\0' : 'X'; |
| 187 | break; |
| 188 | case 6: |
| 189 | /* |
| 190 | * iPad Pro 9.7" [A9X]: iPad6,3, iPad6,4 |
| 191 | * iPad Pro [A9X]: iPad6,7, iPad6,8 |
| 192 | * iPad 5th Gen [A9]: iPad6,11, iPad6,12 |
| 193 | */ |
| 194 | chip_model = major + 3; |
| 195 | suffix = minor <= 8 ? 'X' : '\0'; |
| 196 | break; |
| 197 | case 7: |
| 198 | /* |
| 199 | * iPad Pro 12.9" [A10X]: iPad7,1, iPad7,2 |
| 200 | * iPad Pro 10.5" [A10X]: iPad7,3, iPad7,4 |
| 201 | */ |
| 202 | chip_model = major + 3; |
| 203 | suffix = 'X'; |
| 204 | break; |
| 205 | default: |
| 206 | cpuinfo_log_info("unknown iPad: %s", machine_name); |
| 207 | break; |
| 208 | } |
| 209 | } else if (strcmp(name, "iPod") == 0) { |
| 210 | switch (major) { |
| 211 | case 5: |
| 212 | chip_model = 5; |
| 213 | break; |
| 214 | /* iPod touch (5th Gen) [A5]: iPod5,1 */ |
| 215 | case 7: |
| 216 | /* iPod touch (6th Gen, 2015) [A8]: iPod7,1 */ |
| 217 | chip_model = 8; |
| 218 | break; |
| 219 | default: |
| 220 | cpuinfo_log_info("unknown iPod: %s", machine_name); |
| 221 | break; |
| 222 | } |
| 223 | } else { |
| 224 | cpuinfo_log_info("unknown device: %s", machine_name); |
| 225 | } |
| 226 | if (chip_model != 0) { |
| 227 | snprintf(package_name, CPUINFO_PACKAGE_NAME_MAX, "Apple A%"PRIu32"%c", chip_model, suffix); |
| 228 | } |
| 229 | } |
| 230 | |
| 231 | void cpuinfo_arm_mach_init(void) { |
| 232 | struct cpuinfo_processor* processors = NULL; |
| 233 | struct cpuinfo_core* cores = NULL; |
| 234 | struct cpuinfo_package* packages = NULL; |
| 235 | struct cpuinfo_cache* l1i = NULL; |
| 236 | struct cpuinfo_cache* l1d = NULL; |
| 237 | struct cpuinfo_cache* l2 = NULL; |
| 238 | struct cpuinfo_cache* l3 = NULL; |
| 239 | |
| 240 | struct cpuinfo_mach_topology mach_topology = cpuinfo_mach_detect_topology(); |
| 241 | processors = calloc(mach_topology.threads, sizeof(struct cpuinfo_processor)); |
| 242 | if (processors == NULL) { |
| 243 | cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" logical processors", |
| 244 | mach_topology.threads * sizeof(struct cpuinfo_processor), mach_topology.threads); |
| 245 | goto cleanup; |
| 246 | } |
| 247 | cores = calloc(mach_topology.cores, sizeof(struct cpuinfo_core)); |
| 248 | if (cores == NULL) { |
| 249 | cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" cores", |
| 250 | mach_topology.cores * sizeof(struct cpuinfo_core), mach_topology.cores); |
| 251 | goto cleanup; |
| 252 | } |
| 253 | packages = calloc(mach_topology.packages, sizeof(struct cpuinfo_package)); |
| 254 | if (packages == NULL) { |
| 255 | cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" packages", |
| 256 | mach_topology.packages * sizeof(struct cpuinfo_package), mach_topology.packages); |
| 257 | goto cleanup; |
| 258 | } |
| 259 | |
| 260 | const uint32_t threads_per_core = mach_topology.threads / mach_topology.cores; |
| 261 | const uint32_t threads_per_package = mach_topology.threads / mach_topology.packages; |
| 262 | const uint32_t cores_per_package = mach_topology.cores / mach_topology.packages; |
| 263 | |
| 264 | for (uint32_t i = 0; i < mach_topology.packages; i++) { |
| 265 | packages[i] = (struct cpuinfo_package) { |
| 266 | .processor_start = i * threads_per_package, |
| 267 | .processor_count = threads_per_package, |
| 268 | .core_start = i * cores_per_package, |
| 269 | .core_count = cores_per_package, |
| 270 | }; |
| 271 | decode_package_name(packages[i].name); |
Hao Lu | 3617d5b | 2017-10-23 15:16:50 -0700 | [diff] [blame] | 272 | cpuinfo_gpu_ios_query_gles2(packages[i].gpu_name); |
Hao Lu | 922070c | 2017-10-18 16:29:02 -0700 | [diff] [blame] | 273 | } |
Marat Dukhan | ec86214 | 2017-10-18 17:24:46 -0700 | [diff] [blame] | 274 | |
| 275 | |
Hao Lu | 922070c | 2017-10-18 16:29:02 -0700 | [diff] [blame] | 276 | const uint32_t cpu_family = get_sys_info_by_name("hw.cpufamily"); |
Marat Dukhan | ec86214 | 2017-10-18 17:24:46 -0700 | [diff] [blame] | 277 | const uint32_t cpu_type = get_sys_info_by_name("hw.cputype"); |
Hao Lu | 922070c | 2017-10-18 16:29:02 -0700 | [diff] [blame] | 278 | const uint32_t cpu_subtype = get_sys_info_by_name("hw.cpusubtype"); |
Marat Dukhan | ec86214 | 2017-10-18 17:24:46 -0700 | [diff] [blame] | 279 | switch (cpu_type) { |
| 280 | case CPU_TYPE_ARM64: |
| 281 | cpuinfo_isa.aes = true; |
| 282 | cpuinfo_isa.sha1 = true; |
| 283 | cpuinfo_isa.sha2 = true; |
| 284 | cpuinfo_isa.pmull = true; |
| 285 | cpuinfo_isa.crc32 = true; |
| 286 | break; |
| 287 | #if CPUINFO_ARCH_ARM |
| 288 | case CPU_TYPE_ARM: |
| 289 | switch (cpu_subtype) { |
| 290 | case CPU_SUBTYPE_ARM_V8: |
| 291 | cpuinfo_isa.aes = true; |
| 292 | cpuinfo_isa.sha1 = true; |
| 293 | cpuinfo_isa.sha2 = true; |
| 294 | cpuinfo_isa.pmull = true; |
| 295 | cpuinfo_isa.crc32 = true; |
| 296 | /* Fall-through to add ARMv7S features */ |
| 297 | case CPU_SUBTYPE_ARM_V7S: |
| 298 | case CPU_SUBTYPE_ARM_V7K: |
| 299 | cpuinfo_isa.fma = true; |
| 300 | /* Fall-through to add ARMv7F features */ |
| 301 | case CPU_SUBTYPE_ARM_V7F: |
| 302 | cpuinfo_isa.armv7mp = true; |
| 303 | cpuinfo_isa.fp16 = true; |
| 304 | /* Fall-through to add ARMv7 features */ |
| 305 | case CPU_SUBTYPE_ARM_V7: |
| 306 | break; |
| 307 | default: |
| 308 | break; |
| 309 | } |
| 310 | break; |
| 311 | #endif |
| 312 | } |
| 313 | |
Hao Lu | 922070c | 2017-10-18 16:29:02 -0700 | [diff] [blame] | 314 | for (uint32_t i = 0; i < mach_topology.cores; i++) { |
| 315 | cores[i] = (struct cpuinfo_core) { |
| 316 | .processor_start = i * threads_per_core, |
| 317 | .processor_count = threads_per_core, |
| 318 | .core_id = i % cores_per_package, |
| 319 | .package = packages + i / cores_per_package, |
| 320 | .vendor = cpuinfo_vendor_apple, |
| 321 | .uarch = decode_uarch(cpu_family, cpu_subtype, i), |
| 322 | }; |
| 323 | } |
| 324 | for (uint32_t i = 0; i < mach_topology.threads; i++) { |
| 325 | const uint32_t smt_id = i % threads_per_core; |
| 326 | const uint32_t core_id = i / threads_per_core; |
| 327 | const uint32_t package_id = i / threads_per_package; |
| 328 | |
| 329 | processors[i].smt_id = smt_id; |
Marat Dukhan | 7fcd441 | 2017-11-30 09:46:49 -0800 | [diff] [blame] | 330 | processors[i].core = &cores[core_id]; |
| 331 | processors[i].package = &packages[package_id]; |
Hao Lu | 922070c | 2017-10-18 16:29:02 -0700 | [diff] [blame] | 332 | } |
| 333 | |
| 334 | const uint32_t cacheline_size = get_sys_info(HW_CACHELINE, "HW_CACHELINE"); |
| 335 | const uint32_t l1d_cache_size = get_sys_info(HW_L1DCACHESIZE, "HW_L1DCACHESIZE"); |
| 336 | const uint32_t l1i_cache_size = get_sys_info(HW_L1ICACHESIZE, "HW_L1ICACHESIZE"); |
| 337 | const uint32_t l2_cache_size = get_sys_info(HW_L2CACHESIZE, "HW_L2CACHESIZE"); |
| 338 | const uint32_t l3_cache_size = get_sys_info(HW_L3CACHESIZE, "HW_L3CACHESIZE"); |
| 339 | const uint32_t l1_cache_associativity = 4; |
| 340 | const uint32_t l2_cache_associativity = 8; |
| 341 | const uint32_t l3_cache_associativity = 16; |
| 342 | const uint32_t cache_partitions = 1; |
| 343 | const uint32_t cache_flags = 0; |
| 344 | |
| 345 | uint32_t threads_per_l1 = 0, l1_count = 0; |
| 346 | if (l1i_cache_size != 0 || l1d_cache_size != 0) { |
Hao Lu | 3617d5b | 2017-10-23 15:16:50 -0700 | [diff] [blame] | 347 | /* Assume L1 caches are private to each core */ |
Hao Lu | 922070c | 2017-10-18 16:29:02 -0700 | [diff] [blame] | 348 | threads_per_l1 = 1; |
| 349 | l1_count = mach_topology.threads / threads_per_l1; |
| 350 | cpuinfo_log_debug("detected %"PRIu32" L1 caches", l1_count); |
| 351 | } |
| 352 | |
| 353 | uint32_t threads_per_l2 = 0, l2_count = 0; |
| 354 | if (l2_cache_size != 0) { |
Hao Lu | 3617d5b | 2017-10-23 15:16:50 -0700 | [diff] [blame] | 355 | /* Assume L2 cache is shared between all cores */ |
Hao Lu | 922070c | 2017-10-18 16:29:02 -0700 | [diff] [blame] | 356 | threads_per_l2 = mach_topology.cores; |
| 357 | l2_count = 1; |
| 358 | cpuinfo_log_debug("detected %"PRIu32" L2 caches", l2_count); |
| 359 | } |
| 360 | |
| 361 | uint32_t threads_per_l3 = 0, l3_count = 0; |
| 362 | if (l3_cache_size != 0) { |
Hao Lu | 3617d5b | 2017-10-23 15:16:50 -0700 | [diff] [blame] | 363 | /* Assume L3 cache is shared between all cores */ |
Hao Lu | 922070c | 2017-10-18 16:29:02 -0700 | [diff] [blame] | 364 | threads_per_l3 = mach_topology.cores; |
| 365 | l3_count = 1; |
| 366 | cpuinfo_log_debug("detected %"PRIu32" L3 caches", l3_count); |
| 367 | } |
| 368 | |
| 369 | if (l1i_cache_size != 0) { |
| 370 | l1i = calloc(l1_count, sizeof(struct cpuinfo_cache)); |
| 371 | if (l1i == NULL) { |
| 372 | cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L1I caches", |
| 373 | l1_count * sizeof(struct cpuinfo_cache), l1_count); |
| 374 | goto cleanup; |
| 375 | } |
| 376 | for (uint32_t c = 0; c < l1_count; c++) { |
| 377 | l1i[c] = (struct cpuinfo_cache) { |
| 378 | .size = l1i_cache_size, |
| 379 | .associativity = l1_cache_associativity, |
| 380 | .sets = l1i_cache_size / (l1_cache_associativity * cacheline_size), |
| 381 | .partitions = cache_partitions, |
| 382 | .line_size = cacheline_size, |
| 383 | .flags = cache_flags, |
| 384 | .processor_start = c * threads_per_l1, |
| 385 | .processor_count = threads_per_l1, |
| 386 | }; |
| 387 | } |
| 388 | for (uint32_t t = 0; t < mach_topology.threads; t++) { |
| 389 | processors[t].cache.l1i = &l1i[t / threads_per_l1]; |
| 390 | } |
| 391 | } |
| 392 | |
| 393 | if (l1d_cache_size != 0) { |
| 394 | l1d = calloc(l1_count, sizeof(struct cpuinfo_cache)); |
| 395 | if (l1d == NULL) { |
| 396 | cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L1D caches", |
| 397 | l1_count * sizeof(struct cpuinfo_cache), l1_count); |
| 398 | goto cleanup; |
| 399 | } |
| 400 | for (uint32_t c = 0; c < l1_count; c++) { |
| 401 | l1d[c] = (struct cpuinfo_cache) { |
| 402 | .size = l1d_cache_size, |
| 403 | .associativity = l1_cache_associativity, |
| 404 | .sets = l1d_cache_size / (l1_cache_associativity * cacheline_size), |
| 405 | .partitions = cache_partitions, |
| 406 | .line_size = cacheline_size, |
| 407 | .flags = cache_flags, |
| 408 | .processor_start = c * threads_per_l1, |
| 409 | .processor_count = threads_per_l1, |
| 410 | }; |
| 411 | } |
| 412 | for (uint32_t t = 0; t < mach_topology.threads; t++) { |
| 413 | processors[t].cache.l1d = &l1d[t / threads_per_l1]; |
| 414 | } |
| 415 | } |
| 416 | |
| 417 | if (l2_count != 0) { |
| 418 | l2 = calloc(l2_count, sizeof(struct cpuinfo_cache)); |
| 419 | if (l2 == NULL) { |
| 420 | cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L2 caches", |
| 421 | l2_count * sizeof(struct cpuinfo_cache), l2_count); |
| 422 | goto cleanup; |
| 423 | } |
| 424 | for (uint32_t c = 0; c < l2_count; c++) { |
| 425 | l2[c] = (struct cpuinfo_cache) { |
| 426 | .size = l2_cache_size, |
| 427 | .associativity = l2_cache_associativity, |
| 428 | .sets = l2_cache_size / (l2_cache_associativity * cacheline_size), |
| 429 | .partitions = cache_partitions, |
| 430 | .line_size = cacheline_size, |
| 431 | .flags = cache_flags, |
| 432 | .processor_start = c * threads_per_l2, |
| 433 | .processor_count = threads_per_l2, |
| 434 | }; |
| 435 | } |
| 436 | for (uint32_t t = 0; t < mach_topology.threads; t++) { |
| 437 | processors[t].cache.l2 = &l2[0]; |
| 438 | } |
| 439 | } |
| 440 | |
| 441 | if (l3_count != 0) { |
| 442 | l3 = calloc(l3_count, sizeof(struct cpuinfo_cache)); |
| 443 | if (l3 == NULL) { |
| 444 | cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" L3 caches", |
| 445 | l3_count * sizeof(struct cpuinfo_cache), l3_count); |
| 446 | goto cleanup; |
| 447 | } |
| 448 | for (uint32_t c = 0; c < l3_count; c++) { |
| 449 | l3[c] = (struct cpuinfo_cache) { |
| 450 | .size = l3_cache_size, |
| 451 | .associativity = l3_cache_associativity, |
| 452 | .sets = l3_cache_size / (l3_cache_associativity * cacheline_size), |
| 453 | .partitions = cache_partitions, |
| 454 | .line_size = cacheline_size, |
| 455 | .flags = cache_flags, |
| 456 | .processor_start = c * threads_per_l3, |
| 457 | .processor_count = threads_per_l3, |
| 458 | }; |
| 459 | } |
| 460 | for (uint32_t t = 0; t < mach_topology.threads; t++) { |
| 461 | processors[t].cache.l3 = &l3[0]; |
| 462 | } |
| 463 | } |
| 464 | |
| 465 | /* Commit changes */ |
| 466 | cpuinfo_cache[cpuinfo_cache_level_1i] = l1i; |
| 467 | cpuinfo_cache[cpuinfo_cache_level_1d] = l1d; |
| 468 | cpuinfo_cache[cpuinfo_cache_level_2] = l2; |
| 469 | cpuinfo_cache[cpuinfo_cache_level_3] = l3; |
| 470 | |
| 471 | cpuinfo_processors = processors; |
| 472 | cpuinfo_cores = cores; |
| 473 | cpuinfo_packages = packages; |
| 474 | |
| 475 | cpuinfo_cache_count[cpuinfo_cache_level_1i] = l1_count; |
| 476 | cpuinfo_cache_count[cpuinfo_cache_level_1d] = l1_count; |
| 477 | cpuinfo_cache_count[cpuinfo_cache_level_2] = l2_count; |
| 478 | cpuinfo_cache_count[cpuinfo_cache_level_3] = l3_count; |
| 479 | |
| 480 | cpuinfo_processors_count = mach_topology.threads; |
| 481 | cpuinfo_cores_count = mach_topology.cores; |
| 482 | cpuinfo_packages_count = mach_topology.packages; |
| 483 | |
Marat Dukhan | cf70aee | 2018-03-24 23:21:02 -0700 | [diff] [blame] | 484 | __sync_synchronize(); |
| 485 | |
| 486 | cpuinfo_is_initialized = true; |
| 487 | |
Hao Lu | 922070c | 2017-10-18 16:29:02 -0700 | [diff] [blame] | 488 | processors = NULL; |
| 489 | cores = NULL; |
| 490 | packages = NULL; |
| 491 | l1i = l1d = l2 = l3 = NULL; |
| 492 | |
| 493 | cleanup: |
| 494 | free(processors); |
| 495 | free(cores); |
| 496 | free(packages); |
| 497 | free(l1i); |
| 498 | free(l1d); |
| 499 | free(l2); |
| 500 | free(l3); |
| 501 | } |