forked from dankamongmen/x86info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
topology.c
118 lines (100 loc) · 2.42 KB
/
topology.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
* Licensed under the terms of the GNU GPL License version 2.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <x86info.h>
#include <intel.h>
static const char * corenum(int num)
{
switch (num) {
case 1: return ("single");
case 2: return ("dual");
case 3: return ("tri");
case 4: return ("quad");
case 6: return ("six");
case 8: return ("eight");
default:
return ("?");
}
}
void get_topology(struct cpudata *cpu)
{
if (cpu->vendor == VENDOR_INTEL)
get_intel_topology(cpu);
}
void display_topology(struct cpudata *head)
{
struct cpudata *cpu;
unsigned int threads_per_socket;
unsigned int i;
char *sockets;
int num_sockets = 0;
/* For now, we only support topology parsing on Intel. */
if (head->vendor != VENDOR_INTEL)
return;
if (debug == 1) {
cpu = head;
printf("cpu->phys_proc_id: ");
for (i = 0; i < nrCPUs; i++) {
printf("%d, ", cpu->phys_proc_id);
cpu = cpu->next;
}
printf("\n");
cpu = head;
printf("cpu->x86_max_cores: ");
for (i = 0; i < nrCPUs; i++) {
printf("%d, ", cpu->x86_max_cores);
cpu = cpu->next;
}
printf("\n");
cpu = head;
printf("cpu->cpu_core_id: ");
for (i = 0; i < nrCPUs; i++) {
printf("%d, ", cpu->cpu_core_id);
cpu = cpu->next;
}
printf("\n");
}
sockets = malloc(nrCPUs);
if (sockets == NULL)
return;
for (i = 0; i < nrCPUs; i++)
sockets[i]=0;
cpu = head;
for (i = 0; i < nrCPUs; i++) {
sockets[cpu->phys_proc_id]++;
cpu = cpu->next;
}
for (i = 0; i < nrCPUs; i++) {
if (debug == 1)
printf("Socket %u: %u threads\n", i, (unsigned int) sockets[i]);
if (sockets[i] != 0) /* only count populated sockets */
num_sockets++;
}
/* Print a topology summary */
cpu = head;
printf("Total processor threads: %d\n", sockets[0] * num_sockets);
printf("This system has %d ", num_sockets);
threads_per_socket = sockets[0];
if (cpu->flags_edx & X86_FEATURE_HT)
if (cpu->num_siblings > 1)
threads_per_socket = sockets[0]/2;
if (nrCPUs == 1) {
/* Handle the single CPU case */
printf("processor");
} else {
const char *p;
p = corenum(threads_per_socket);
if (strncmp("?", p, 1))
printf("%s-core processor", corenum(threads_per_socket));
else
printf("%u-core processor", threads_per_socket);
if (num_sockets > 1)
printf("s");
}
if (cpu->flags_edx & X86_FEATURE_HT && cpu->num_siblings > 1)
printf(" with hyper-threading (%d threads per core)", cpu->num_siblings);
free(sockets);
}