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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
#![feature(prelude_import, asm)]
#![no_std]
#![crate_name = "raw_cpuid"]
#![crate_type = "lib"]
#[macro_use]
mod bitflags;
#[cfg(test)]
#[macro_use]
extern crate std;
use core::str;
use core::mem::transmute;
use core::fmt;
use core::slice;
#[cfg(not(test))]
mod std {
pub use core::ops;
pub use core::option;
}
#[macro_export]
macro_rules! cpuid {
($eax:expr)
=> ( $crate::cpuid1($eax as u32) );
($eax:expr, $ecx:expr)
=> ( $crate::cpuid2($eax as u32, $ecx as u32) );
}
pub fn cpuid2(eax: u32, ecx: u32) -> CpuIdResult {
let mut res = CpuIdResult { eax: 0, ebx: 0, ecx: 0, edx: 0 };
unsafe {
asm!("movl $0, %eax" : : "{eax}" (eax) : "eax");
asm!("movl $0, %ecx" : : "{ecx}" (ecx) : "ecx");
asm!("cpuid" : "={eax}"(res.eax) "={ebx}"(res.ebx)
"={ecx}"(res.ecx) "={edx}"(res.edx)
:: "eax", "ebx", "ecx", "edx");
}
res
}
pub fn cpuid1(eax: u32) -> CpuIdResult {
let mut res = CpuIdResult { eax: 0, ebx: 0, ecx: 0, edx: 0 };
unsafe {
asm!("movl $0, %eax" : : "{eax}" (eax) : "eax");
asm!("cpuid" : "={eax}"(res.eax) "={ebx}"(res.ebx)
"={ecx}"(res.ecx) "={edx}"(res.edx)
:: "eax", "ebx", "ecx", "edx");
}
res
}
fn as_bytes(v: &u32) -> &[u8] {
let start = v as *const u32 as *const u8;
unsafe { slice::from_raw_parts(start, 4) }
}
fn get_bits(r: u32, from: u32, to: u32) -> u32 {
assert!(from <= 31);
assert!(to <= 31);
assert!(from <= to);
let mask = match to {
31 => 0xffffffff,
_ => (1 << (to+1)) - 1,
};
(r & mask) >> from
}
macro_rules! check_flag {
($doc:meta, $fun:ident, $flags:ident, $flag:ident) => (
#[$doc]
pub fn $fun(&self) -> bool {
self.$flags.contains($flag)
}
)
}
macro_rules! is_bit_set {
($field:expr, $bit:expr) => (
$field & (1 << $bit) > 0
)
}
macro_rules! check_bit_fn {
($doc:meta, $fun:ident, $field:ident, $bit:expr) => (
#[$doc]
pub fn $fun(&self) -> bool {
is_bit_set!(self.$field, $bit)
}
)
}
#[derive(Debug)]
pub struct CpuId {
max_eax_value: u32,
}
#[derive(Debug, Copy, Clone, Default)]
pub struct CpuIdResult {
pub eax: u32,
pub ebx: u32,
pub ecx: u32,
pub edx: u32,
}
const EAX_VENDOR_INFO: u32 = 0x0;
const EAX_FEATURE_INFO: u32 = 0x1;
const EAX_CACHE_INFO: u32 = 0x2;
const EAX_PROCESSOR_SERIAL: u32 = 0x3;
const EAX_CACHE_PARAMETERS: u32 = 0x4;
const EAX_MONITOR_MWAIT_INFO: u32 = 0x5;
const EAX_THERMAL_POWER_INFO: u32 = 0x6;
const EAX_STRUCTURED_EXTENDED_FEATURE_INFO: u32 = 0x7;
const EAX_DIRECT_CACHE_ACCESS_INFO: u32 = 0x9;
const EAX_PERFORMANCE_MONITOR_INFO: u32 = 0xA;
const EAX_EXTENDED_TOPOLOGY_INFO: u32 = 0xB;
const EAX_EXTENDED_STATE_INFO: u32 = 0xD;
const EAX_QOS_INFO: u32 = 0xF;
const EAX_QOS_ENFORCEMENT_INFO: u32 = 0x10;
const EAX_TRACE_INFO: u32 = 0x14;
const EAX_TIME_STAMP_COUNTER_INFO: u32 = 0x15;
const EAX_FREQUENCY_INFO: u32 = 0x16;
const EAX_EXTENDED_FUNCTION_INFO: u32 = 0x80000000;
impl CpuId {
pub fn new() -> CpuId {
let res = cpuid!(EAX_VENDOR_INFO);
CpuId { max_eax_value: res.eax }
}
fn leaf_is_supported(&self, val: u32) -> bool {
val <= self.max_eax_value
}
pub fn get_vendor_info(&self) -> Option<VendorInfo> {
if self.leaf_is_supported(EAX_VENDOR_INFO) {
let res = cpuid!(EAX_VENDOR_INFO);
Some(VendorInfo { ebx: res.ebx, ecx: res.ecx, edx: res.edx })
}
else {
None
}
}
pub fn get_feature_info(&self) -> Option<FeatureInfo> {
if self.leaf_is_supported(EAX_FEATURE_INFO) {
let res = cpuid!(EAX_FEATURE_INFO);
Some(FeatureInfo { eax: res.eax,
ebx: res.ebx,
ecx: FeatureInfoEcx { bits: res.ecx },
edx: FeatureInfoEdx { bits: res.edx },
})
}
else {
None
}
}
pub fn get_cache_info(&self) -> Option<CacheInfoIter> {
if self.leaf_is_supported(EAX_CACHE_INFO) {
let res = cpuid!(EAX_CACHE_INFO);
Some(CacheInfoIter { current: 1,
eax: res.eax,
ebx: res.ebx,
ecx: res.ecx,
edx: res.edx })
}
else {
None
}
}
pub fn get_processor_serial(&self) -> Option<ProcessorSerial> {
if self.leaf_is_supported(EAX_PROCESSOR_SERIAL) {
let res = cpuid!(EAX_PROCESSOR_SERIAL);
Some(ProcessorSerial { ecx: res.ecx, edx: res.edx })
}
else {
None
}
}
pub fn get_cache_parameters(&self) -> Option<CacheParametersIter> {
if self.leaf_is_supported(EAX_CACHE_PARAMETERS) {
Some(CacheParametersIter { current: 0 })
}
else {
None
}
}
pub fn get_monitor_mwait_info(&self) -> Option<MonitorMwaitInfo> {
if self.leaf_is_supported(EAX_MONITOR_MWAIT_INFO) {
let res = cpuid!(EAX_MONITOR_MWAIT_INFO);
Some(MonitorMwaitInfo { eax: res.eax, ebx: res.ebx, ecx: res.ecx, edx: res.edx })
}
else {
None
}
}
pub fn get_thermal_power_info(&self) -> Option<ThermalPowerInfo> {
if self.leaf_is_supported(EAX_THERMAL_POWER_INFO) {
let res = cpuid!(EAX_THERMAL_POWER_INFO);
Some(ThermalPowerInfo { eax: ThermalPowerFeaturesEax { bits: res.eax },
ebx: res.ebx,
ecx: ThermalPowerFeaturesEcx { bits: res.ecx },
edx: res.edx })
}
else {
None
}
}
pub fn get_extended_feature_info(&self) -> Option<ExtendedFeatures> {
if self.leaf_is_supported(EAX_STRUCTURED_EXTENDED_FEATURE_INFO) {
let res = cpuid!(EAX_STRUCTURED_EXTENDED_FEATURE_INFO);
assert!(res.eax == 0);
Some(ExtendedFeatures { eax: res.eax,
ebx: ExtendedFeaturesEbx { bits: res.ebx },
ecx: res.ecx,
edx: res.edx })
}
else {
None
}
}
pub fn get_direct_cache_access_info(&self) -> Option<DirectCacheAccessInfo> {
if self.leaf_is_supported(EAX_DIRECT_CACHE_ACCESS_INFO) {
let res = cpuid!(EAX_DIRECT_CACHE_ACCESS_INFO);
Some(DirectCacheAccessInfo{ eax: res.eax })
}
else {
None
}
}
pub fn get_performance_monitoring_info(&self) -> Option<PerformanceMonitoringInfo> {
if self.leaf_is_supported(EAX_PERFORMANCE_MONITOR_INFO) {
let res = cpuid!(EAX_PERFORMANCE_MONITOR_INFO);
Some(PerformanceMonitoringInfo{ eax: res.eax,
ebx: PerformanceMonitoringFeaturesEbx{ bits: res.ebx },
ecx: res.ecx,
edx: res.edx })
}
else {
None
}
}
pub fn get_extended_topology_info(&self) -> Option<ExtendedTopologyIter> {
if self.leaf_is_supported(EAX_EXTENDED_TOPOLOGY_INFO) {
Some(ExtendedTopologyIter { level: 0 })
}
else {
None
}
}
pub fn get_extended_state_info(&self) -> Option<ExtendedStateInfo> {
if self.leaf_is_supported(EAX_EXTENDED_STATE_INFO) {
let res = cpuid!(EAX_EXTENDED_STATE_INFO, 0);
let res1 = cpuid!(EAX_EXTENDED_STATE_INFO, 1);
Some(ExtendedStateInfo { eax: res.eax, ebx: res.ebx,
ecx: res.ecx, edx: res.edx,
eax1: res1.eax })
}
else {
None
}
}
pub fn get_qos_info(&self) -> Option<QoSInfo> {
let res = cpuid!(EAX_QOS_INFO, 0);
let res1 = cpuid!(EAX_QOS_INFO, 1);
if self.leaf_is_supported(EAX_QOS_INFO) {
Some(QoSInfo { ebx0: res.ebx, edx0: res.edx,
ebx1: res1.ebx, ecx1: res1.ecx,
edx1: res1.edx })
}
else {
None
}
}
pub fn get_qos_enforcement_info(&self) -> Option<QoSEnforcementInfo> {
let res = cpuid!(EAX_QOS_ENFORCEMENT_INFO, 0);
let res1 = cpuid!(EAX_QOS_ENFORCEMENT_INFO, 1);
if self.leaf_is_supported(EAX_QOS_ENFORCEMENT_INFO) {
Some(QoSEnforcementInfo { ebx0: res.ebx, eax1: res1.eax,
ebx1: res1.ebx, ecx1: res1.ecx,
edx1: res1.edx })
}
else {
None
}
}
pub fn get_processor_trace_info(&self) -> Option<ProcessorTraceInfo> {
let res = cpuid!(EAX_TRACE_INFO, 0);
if self.leaf_is_supported(EAX_TRACE_INFO) {
Some(ProcessorTraceInfo { eax: res.eax,
ebx: res.ebx,
ecx: res.ecx,
edx: res.edx })
}
else {
None
}
}
pub fn get_tsc_info(&self) -> Option<TscInfo> {
let res = cpuid!(EAX_TIME_STAMP_COUNTER_INFO, 0);
if self.leaf_is_supported(EAX_TIME_STAMP_COUNTER_INFO) {
Some(TscInfo { eax: res.eax,
ebx: res.ebx })
}
else {
None
}
}
pub fn get_processor_frequency_info(&self) -> Option<ProcessorFrequencyInfo> {
let res = cpuid!(EAX_FREQUENCY_INFO, 0);
if self.leaf_is_supported(EAX_FREQUENCY_INFO) {
Some(ProcessorFrequencyInfo { eax: res.eax,
ebx: res.ebx,
ecx: res.ecx })
}
else {
None
}
}
pub fn get_extended_function_info(&self) -> Option<ExtendedFunctionInfo> {
let res = cpuid!(EAX_EXTENDED_FUNCTION_INFO);
if res.eax == 0 {
return None;
}
let mut ef = ExtendedFunctionInfo { max_eax_value: res.eax - EAX_EXTENDED_FUNCTION_INFO,
data: [
CpuIdResult{eax: res.eax, ebx: res.ebx, ecx: res.ecx, edx: res.edx},
CpuIdResult{eax: 0, ebx: 0, ecx: 0, edx: 0},
CpuIdResult{eax: 0, ebx: 0, ecx: 0, edx: 0},
CpuIdResult{eax: 0, ebx: 0, ecx: 0, edx: 0},
CpuIdResult{eax: 0, ebx: 0, ecx: 0, edx: 0},
CpuIdResult{eax: 0, ebx: 0, ecx: 0, edx: 0},
CpuIdResult{eax: 0, ebx: 0, ecx: 0, edx: 0},
CpuIdResult{eax: 0, ebx: 0, ecx: 0, edx: 0},
CpuIdResult{eax: 0, ebx: 0, ecx: 0, edx: 0}
], };
for i in 1..ef.max_eax_value+1 {
ef.data[i as usize] = cpuid!(EAX_EXTENDED_FUNCTION_INFO + i);
}
Some(ef)
}
}
#[derive(Debug)]
pub struct VendorInfo {
ebx: u32,
edx: u32,
ecx: u32,
}
impl VendorInfo {
pub fn as_string(&self) -> &str {
unsafe {
let brand_string_start = transmute::<&VendorInfo, *const u8>(&self);
let slice = slice::from_raw_parts(brand_string_start, 3*4);
let byte_array: &'static [u8] = transmute(slice);
str::from_utf8_unchecked(byte_array)
}
}
}
#[derive(Debug)]
pub struct CacheInfoIter {
current: u32,
eax: u32,
ebx: u32,
ecx: u32,
edx: u32,
}
impl Iterator for CacheInfoIter {
type Item = CacheInfo;
fn next(&mut self) -> Option<CacheInfo> {
if self.current >= 4*4 {
return None;
}
let reg_index = self.current % 4;
let byte_index = self.current / 4;
let reg = match reg_index {
0 => self.eax,
1 => self.ebx,
2 => self.ecx,
3 => self.edx,
_ => unreachable!()
};
let byte = as_bytes(®)[byte_index as usize];
if byte == 0 {
self.current += 1;
return self.next();
}
for cache_info in CACHE_INFO_TABLE.into_iter() {
if cache_info.num == byte {
self.current += 1;
return Some(*cache_info);
}
}
None
}
}
#[derive(Copy, Clone, Debug)]
pub enum CacheInfoType {
GENERAL,
CACHE,
TLB,
STLB,
DTLB,
PREFETCH,
}
#[derive(Copy, Clone, Debug)]
pub struct CacheInfo {
pub num: u8,
pub typ: CacheInfoType,
pub desc: &'static str,
}
impl fmt::Display for CacheInfo {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let typ = match self.typ {
CacheInfoType::GENERAL => "N/A",
CacheInfoType::CACHE => "Cache",
CacheInfoType::TLB => "TLB",
CacheInfoType::STLB => "STLB",
CacheInfoType::DTLB => "DTLB",
CacheInfoType::PREFETCH => "Prefetcher"
};
write!(f, "{:x}:\t {}: {}", self.num, typ, self.desc)
}
}
pub const CACHE_INFO_TABLE: [CacheInfo; 103] = [
CacheInfo{num: 0x00, typ: CacheInfoType::GENERAL, desc: "Null descriptor, this byte contains no information"},
CacheInfo{num: 0x01, typ: CacheInfoType::TLB, desc: "Instruction TLB: 4 KByte pages, 4-way set associative, 32 entries"},
CacheInfo{num: 0x02, typ: CacheInfoType::TLB, desc: "Instruction TLB: 4 MByte pages, fully associative, 2 entries"},
CacheInfo{num: 0x03, typ: CacheInfoType::TLB, desc: "Data TLB: 4 KByte pages, 4-way set associative, 64 entries"},
CacheInfo{num: 0x04, typ: CacheInfoType::TLB, desc: "Data TLB: 4 MByte pages, 4-way set associative, 8 entries"},
CacheInfo{num: 0x05, typ: CacheInfoType::TLB, desc: "Data TLB1: 4 MByte pages, 4-way set associative, 32 entries"},
CacheInfo{num: 0x06, typ: CacheInfoType::CACHE, desc: "1st-level instruction cache: 8 KBytes, 4-way set associative, 32 byte line size"},
CacheInfo{num: 0x08, typ: CacheInfoType::CACHE, desc: "1st-level instruction cache: 16 KBytes, 4-way set associative, 32 byte line size"},
CacheInfo{num: 0x09, typ: CacheInfoType::CACHE, desc: "1st-level instruction cache: 32KBytes, 4-way set associative, 64 byte line size"},
CacheInfo{num: 0x0A, typ: CacheInfoType::CACHE, desc: "1st-level data cache: 8 KBytes, 2-way set associative, 32 byte line size"},
CacheInfo{num: 0x0B, typ: CacheInfoType::TLB, desc: "Instruction TLB: 4 MByte pages, 4-way set associative, 4 entries"},
CacheInfo{num: 0x0C, typ: CacheInfoType::CACHE, desc: "1st-level data cache: 16 KBytes, 4-way set associative, 32 byte line size"},
CacheInfo{num: 0x0D, typ: CacheInfoType::CACHE, desc: "1st-level data cache: 16 KBytes, 4-way set associative, 64 byte line size"},
CacheInfo{num: 0x0E, typ: CacheInfoType::CACHE, desc: "1st-level data cache: 24 KBytes, 6-way set associative, 64 byte line size"},
CacheInfo{num: 0x21, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 256 KBytes, 8-way set associative, 64 byte line size"},
CacheInfo{num: 0x22, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 512 KBytes, 4-way set associative, 64 byte line size, 2 lines per sector"},
CacheInfo{num: 0x23, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 1 MBytes, 8-way set associative, 64 byte line size, 2 lines per sector"},
CacheInfo{num: 0x24, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 1 MBytes, 16-way set associative, 64 byte line size"},
CacheInfo{num: 0x25, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 2 MBytes, 8-way set associative, 64 byte line size, 2 lines per sector"},
CacheInfo{num: 0x29, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 4 MBytes, 8-way set associative, 64 byte line size, 2 lines per sector"},
CacheInfo{num: 0x2C, typ: CacheInfoType::CACHE, desc: "1st-level data cache: 32 KBytes, 8-way set associative, 64 byte line size"},
CacheInfo{num: 0x30, typ: CacheInfoType::CACHE, desc: "1st-level instruction cache: 32 KBytes, 8-way set associative, 64 byte line size"},
CacheInfo{num: 0x40, typ: CacheInfoType::CACHE, desc: "No 2nd-level cache or, if processor contains a valid 2nd-level cache, no 3rd-level cache"},
CacheInfo{num: 0x41, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 128 KBytes, 4-way set associative, 32 byte line size"},
CacheInfo{num: 0x42, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 256 KBytes, 4-way set associative, 32 byte line size"},
CacheInfo{num: 0x43, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 512 KBytes, 4-way set associative, 32 byte line size"},
CacheInfo{num: 0x44, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 1 MByte, 4-way set associative, 32 byte line size"},
CacheInfo{num: 0x45, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 2 MByte, 4-way set associative, 32 byte line size"},
CacheInfo{num: 0x46, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 4 MByte, 4-way set associative, 64 byte line size"},
CacheInfo{num: 0x47, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 8 MByte, 8-way set associative, 64 byte line size"},
CacheInfo{num: 0x48, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 3MByte, 12-way set associative, 64 byte line size"},
CacheInfo{num: 0x49, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 4MB, 16-way set associative, 64-byte line size (Intel Xeon processor MP, Family 0FH, Model 06H); 2nd-level cache: 4 MByte, 16-way set associative, 64 byte line size"},
CacheInfo{num: 0x4A, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 6MByte, 12-way set associative, 64 byte line size"},
CacheInfo{num: 0x4B, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 8MByte, 16-way set associative, 64 byte line size"},
CacheInfo{num: 0x4C, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 12MByte, 12-way set associative, 64 byte line size"},
CacheInfo{num: 0x4D, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 16MByte, 16-way set associative, 64 byte line size"},
CacheInfo{num: 0x4E, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 6MByte, 24-way set associative, 64 byte line size"},
CacheInfo{num: 0x4F, typ: CacheInfoType::TLB, desc: "Instruction TLB: 4 KByte pages, 32 entries"},
CacheInfo{num: 0x50, typ: CacheInfoType::TLB, desc: "Instruction TLB: 4 KByte and 2-MByte or 4-MByte pages, 64 entries"},
CacheInfo{num: 0x51, typ: CacheInfoType::TLB, desc: "Instruction TLB: 4 KByte and 2-MByte or 4-MByte pages, 128 entries"},
CacheInfo{num: 0x52, typ: CacheInfoType::TLB, desc: "Instruction TLB: 4 KByte and 2-MByte or 4-MByte pages, 256 entries"},
CacheInfo{num: 0x55, typ: CacheInfoType::TLB, desc: "Instruction TLB: 2-MByte or 4-MByte pages, fully associative, 7 entries"},
CacheInfo{num: 0x56, typ: CacheInfoType::TLB, desc: "Data TLB0: 4 MByte pages, 4-way set associative, 16 entries"},
CacheInfo{num: 0x57, typ: CacheInfoType::TLB, desc: "Data TLB0: 4 KByte pages, 4-way associative, 16 entries"},
CacheInfo{num: 0x59, typ: CacheInfoType::TLB, desc: "Data TLB0: 4 KByte pages, fully associative, 16 entries"},
CacheInfo{num: 0x5A, typ: CacheInfoType::TLB, desc: "Data TLB0: 2-MByte or 4 MByte pages, 4-way set associative, 32 entries"},
CacheInfo{num: 0x5B, typ: CacheInfoType::TLB, desc: "Data TLB: 4 KByte and 4 MByte pages, 64 entries"},
CacheInfo{num: 0x5C, typ: CacheInfoType::TLB, desc: "Data TLB: 4 KByte and 4 MByte pages,128 entries"},
CacheInfo{num: 0x5D, typ: CacheInfoType::TLB, desc: "Data TLB: 4 KByte and 4 MByte pages,256 entries"},
CacheInfo{num: 0x60, typ: CacheInfoType::CACHE, desc: "1st-level data cache: 16 KByte, 8-way set associative, 64 byte line size"},
CacheInfo{num: 0x61, typ: CacheInfoType::TLB, desc: "Instruction TLB: 4 KByte pages, fully associative, 48 entries"},
CacheInfo{num: 0x63, typ: CacheInfoType::TLB, desc: "Data TLB: 1 GByte pages, 4-way set associative, 4 entries"},
CacheInfo{num: 0x66, typ: CacheInfoType::CACHE, desc: "1st-level data cache: 8 KByte, 4-way set associative, 64 byte line size"},
CacheInfo{num: 0x67, typ: CacheInfoType::CACHE, desc: "1st-level data cache: 16 KByte, 4-way set associative, 64 byte line size"},
CacheInfo{num: 0x68, typ: CacheInfoType::CACHE, desc: "1st-level data cache: 32 KByte, 4-way set associative, 64 byte line size"},
CacheInfo{num: 0x70, typ: CacheInfoType::CACHE, desc: "Trace cache: 12 K-μop, 8-way set associative"},
CacheInfo{num: 0x71, typ: CacheInfoType::CACHE, desc: "Trace cache: 16 K-μop, 8-way set associative"},
CacheInfo{num: 0x72, typ: CacheInfoType::CACHE, desc: "Trace cache: 32 K-μop, 8-way set associative"},
CacheInfo{num: 0x76, typ: CacheInfoType::TLB, desc: "Instruction TLB: 2M/4M pages, fully associative, 8 entries"},
CacheInfo{num: 0x78, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 1 MByte, 4-way set associative, 64byte line size"},
CacheInfo{num: 0x79, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 128 KByte, 8-way set associative, 64 byte line size, 2 lines per sector"},
CacheInfo{num: 0x7A, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 256 KByte, 8-way set associative, 64 byte line size, 2 lines per sector"},
CacheInfo{num: 0x7B, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 512 KByte, 8-way set associative, 64 byte line size, 2 lines per sector"},
CacheInfo{num: 0x7C, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 1 MByte, 8-way set associative, 64 byte line size, 2 lines per sector"},
CacheInfo{num: 0x7D, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 2 MByte, 8-way set associative, 64byte line size"},
CacheInfo{num: 0x7F, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 512 KByte, 2-way set associative, 64-byte line size"},
CacheInfo{num: 0x80, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 512 KByte, 8-way set associative, 64-byte line size"},
CacheInfo{num: 0x82, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 256 KByte, 8-way set associative, 32 byte line size"},
CacheInfo{num: 0x83, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 512 KByte, 8-way set associative, 32 byte line size"},
CacheInfo{num: 0x84, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 1 MByte, 8-way set associative, 32 byte line size"},
CacheInfo{num: 0x85, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 2 MByte, 8-way set associative, 32 byte line size"},
CacheInfo{num: 0x86, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 512 KByte, 4-way set associative, 64 byte line size"},
CacheInfo{num: 0x87, typ: CacheInfoType::CACHE, desc: "2nd-level cache: 1 MByte, 8-way set associative, 64 byte line size"},
CacheInfo{num: 0xB0, typ: CacheInfoType::TLB, desc: "Instruction TLB: 4 KByte pages, 4-way set associative, 128 entries"},
CacheInfo{num: 0xB1, typ: CacheInfoType::TLB, desc: "Instruction TLB: 2M pages, 4-way, 8 entries or 4M pages, 4-way, 4 entries"},
CacheInfo{num: 0xB2, typ: CacheInfoType::TLB, desc: "Instruction TLB: 4KByte pages, 4-way set associative, 64 entries"},
CacheInfo{num: 0xB3, typ: CacheInfoType::TLB, desc: "Data TLB: 4 KByte pages, 4-way set associative, 128 entries"},
CacheInfo{num: 0xB4, typ: CacheInfoType::TLB, desc: "Data TLB1: 4 KByte pages, 4-way associative, 256 entries"},
CacheInfo{num: 0xB5, typ: CacheInfoType::TLB, desc: "Instruction TLB: 4KByte pages, 8-way set associative, 64 entries"},
CacheInfo{num: 0xB6, typ: CacheInfoType::TLB, desc: "Instruction TLB: 4KByte pages, 8-way set associative, 128 entries"},
CacheInfo{num: 0xBA, typ: CacheInfoType::TLB, desc: "Data TLB1: 4 KByte pages, 4-way associative, 64 entries"},
CacheInfo{num: 0xC0, typ: CacheInfoType::TLB, desc: "Data TLB: 4 KByte and 4 MByte pages, 4-way associative, 8 entries"},
CacheInfo{num: 0xC1, typ: CacheInfoType::STLB, desc: "Shared 2nd-Level TLB: 4 KByte/2MByte pages, 8-way associative, 1024 entries"},
CacheInfo{num: 0xC2, typ: CacheInfoType::DTLB, desc: "DTLB: 2 MByte/$MByte pages, 4-way associative, 16 entries"},
CacheInfo{num: 0xCA, typ: CacheInfoType::STLB, desc: "Shared 2nd-Level TLB: 4 KByte pages, 4-way associative, 512 entries"},
CacheInfo{num: 0xD0, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 512 KByte, 4-way set associative, 64 byte line size"},
CacheInfo{num: 0xD1, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 1 MByte, 4-way set associative, 64 byte line size"},
CacheInfo{num: 0xD2, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 2 MByte, 4-way set associative, 64 byte line size"},
CacheInfo{num: 0xD6, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 1 MByte, 8-way set associative, 64 byte line size"},
CacheInfo{num: 0xD7, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 2 MByte, 8-way set associative, 64 byte line size"},
CacheInfo{num: 0xD8, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 4 MByte, 8-way set associative, 64 byte line size"},
CacheInfo{num: 0xDC, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 1.5 MByte, 12-way set associative, 64 byte line size"},
CacheInfo{num: 0xDD, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 3 MByte, 12-way set associative, 64 byte line size"},
CacheInfo{num: 0xDE, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 6 MByte, 12-way set associative, 64 byte line size"},
CacheInfo{num: 0xE2, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 2 MByte, 16-way set associative, 64 byte line size"},
CacheInfo{num: 0xE3, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 4 MByte, 16-way set associative, 64 byte line size"},
CacheInfo{num: 0xE4, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 8 MByte, 16-way set associative, 64 byte line size"},
CacheInfo{num: 0xEA, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 12MByte, 24-way set associative, 64 byte line size"},
CacheInfo{num: 0xEB, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 18MByte, 24-way set associative, 64 byte line size"},
CacheInfo{num: 0xEC, typ: CacheInfoType::CACHE, desc: "3rd-level cache: 24MByte, 24-way set associative, 64 byte line size"},
CacheInfo{num: 0xF0, typ: CacheInfoType::PREFETCH, desc: "64-Byte prefetching"},
CacheInfo{num: 0xF1, typ: CacheInfoType::PREFETCH, desc: "128-Byte prefetching"},
CacheInfo{num: 0xFF, typ: CacheInfoType::GENERAL, desc: "CPUID leaf 2 does not report cache descriptor information, use CPUID leaf 4 to query cache parameters"},
];
impl fmt::Display for VendorInfo {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.as_string())
}
}
pub struct ProcessorSerial {
ecx: u32,
edx: u32,
}
impl ProcessorSerial {
pub fn serial_lower(&self) -> u32 {
self.ecx
}
pub fn serial_middle(&self) -> u32 {
self.edx
}
}
#[derive(Debug)]
pub struct FeatureInfo {
eax: u32,
ebx: u32,
ecx: FeatureInfoEcx,
edx: FeatureInfoEdx,
}
impl FeatureInfo {
pub fn extended_family_id(&self) -> u8 {
get_bits(self.eax, 20, 27) as u8
}
pub fn extended_model_id(&self) -> u8 {
get_bits(self.eax, 16, 19) as u8
}
pub fn family_id(&self) -> u8 {
get_bits(self.eax, 8, 11) as u8
}
pub fn model_id(&self) -> u8 {
get_bits(self.eax, 4, 7) as u8
}
pub fn stepping_id(&self) -> u8 {
get_bits(self.eax, 0, 3) as u8
}
pub fn brand_index(&self) -> u8 {
get_bits(self.ebx, 0, 7) as u8
}
pub fn cflush_cache_line_size(&self) -> u8 {
get_bits(self.ebx, 8, 15) as u8
}
pub fn initial_local_apic_id(&self) -> u8 {
get_bits(self.ebx, 24, 31) as u8
}
pub fn max_logical_processor_ids(&self) -> u8 {
get_bits(self.ebx, 16, 23) as u8
}
check_flag!(doc = "Streaming SIMD Extensions 3 (SSE3). A value of 1 indicates the processor supports this technology.",
has_sse3, ecx, CPU_FEATURE_SSE3);
check_flag!(doc = "PCLMULQDQ. A value of 1 indicates the processor supports the PCLMULQDQ instruction",
has_pclmulqdq, ecx, CPU_FEATURE_PCLMULQDQ);
check_flag!(doc = "64-bit DS Area. A value of 1 indicates the processor supports DS area using 64-bit layout",
has_ds_area, ecx, CPU_FEATURE_DTES64);
check_flag!(doc = "MONITOR/MWAIT. A value of 1 indicates the processor supports this feature.",
has_monitor_mwait, ecx, CPU_FEATURE_MONITOR);
check_flag!(doc = "CPL Qualified Debug Store. A value of 1 indicates the processor supports the extensions to the Debug Store feature to allow for branch message storage qualified by CPL.",
has_cpl, ecx, CPU_FEATURE_DSCPL);
check_flag!(doc = "Virtual Machine Extensions. A value of 1 indicates that the processor supports this technology.",
has_vmx, ecx, CPU_FEATURE_VMX);
check_flag!(doc = "Safer Mode Extensions. A value of 1 indicates that the processor supports this technology. See Chapter 5, Safer Mode Extensions Reference.",
has_smx, ecx, CPU_FEATURE_SMX);
check_flag!(doc = "Enhanced Intel SpeedStep® technology. A value of 1 indicates that the processor supports this technology.",
has_eist, ecx, CPU_FEATURE_EIST);
check_flag!(doc = "Thermal Monitor 2. A value of 1 indicates whether the processor supports this technology.",
has_tm2, ecx, CPU_FEATURE_TM2);
check_flag!(doc = "A value of 1 indicates the presence of the Supplemental Streaming SIMD Extensions 3 (SSSE3). A value of 0 indicates the instruction extensions are not present in the processor",
has_ssse3, ecx, CPU_FEATURE_SSSE3);
check_flag!(doc = "L1 Context ID. A value of 1 indicates the L1 data cache mode can be set to either adaptive mode or shared mode. A value of 0 indicates this feature is not supported. See definition of the IA32_MISC_ENABLE MSR Bit 24 (L1 Data Cache Context Mode) for details.",
has_cnxtid, ecx, CPU_FEATURE_CNXTID);
check_flag!(doc = "A value of 1 indicates the processor supports FMA extensions using YMM state.",
has_fma, ecx, CPU_FEATURE_FMA);
check_flag!(doc = "CMPXCHG16B Available. A value of 1 indicates that the feature is available. See the CMPXCHG8B/CMPXCHG16B Compare and Exchange Bytes section. 14",
has_cmpxchg16b, ecx, CPU_FEATURE_CMPXCHG16B);
check_flag!(doc = "Perfmon and Debug Capability: A value of 1 indicates the processor supports the performance and debug feature indication MSR IA32_PERF_CAPABILITIES.",
has_pdcm, ecx, CPU_FEATURE_PDCM);
check_flag!(doc = "Process-context identifiers. A value of 1 indicates that the processor supports PCIDs and the software may set CR4.PCIDE to 1.",
has_pcid, ecx, CPU_FEATURE_PCID);
check_flag!(doc = "A value of 1 indicates the processor supports the ability to prefetch data from a memory mapped device.",
has_dca, ecx, CPU_FEATURE_DCA);
check_flag!(doc = "A value of 1 indicates that the processor supports SSE4.1.",
has_sse41, ecx, CPU_FEATURE_SSE41);
check_flag!(doc = "A value of 1 indicates that the processor supports SSE4.2.",
has_sse42, ecx, CPU_FEATURE_SSE42);
check_flag!(doc = "A value of 1 indicates that the processor supports x2APIC feature.",
has_x2apic, ecx, CPU_FEATURE_X2APIC);
check_flag!(doc = "A value of 1 indicates that the processor supports MOVBE instruction.",
has_movbe, ecx, CPU_FEATURE_MOVBE);
check_flag!(doc = "A value of 1 indicates that the processor supports the POPCNT instruction.",
has_popcnt, ecx, CPU_FEATURE_POPCNT);
check_flag!(doc = "A value of 1 indicates that the processors local APIC timer supports one-shot operation using a TSC deadline value.",
has_tsc_deadline, ecx, CPU_FEATURE_TSC_DEADLINE);
check_flag!(doc = "A value of 1 indicates that the processor supports the AESNI instruction extensions.",
has_aesni, ecx, CPU_FEATURE_AESNI);
check_flag!(doc = "A value of 1 indicates that the processor supports the XSAVE/XRSTOR processor extended states feature, the XSETBV/XGETBV instructions, and XCR0.",
has_xsave, ecx, CPU_FEATURE_XSAVE);
check_flag!(doc = "A value of 1 indicates that the OS has enabled XSETBV/XGETBV instructions to access XCR0, and support for processor extended state management using XSAVE/XRSTOR.",
has_oxsave, ecx, CPU_FEATURE_OSXSAVE);
check_flag!(doc = "A value of 1 indicates the processor supports the AVX instruction extensions.",
has_avx, ecx, CPU_FEATURE_AVX);
check_flag!(doc = "A value of 1 indicates that processor supports 16-bit floating-point conversion instructions.",
has_f16c, ecx, CPU_FEATURE_F16C);
check_flag!(doc = "A value of 1 indicates that processor supports RDRAND instruction.",
has_rdrand, ecx, CPU_FEATURE_RDRAND);
check_flag!(doc = "Floating Point Unit On-Chip. The processor contains an x87 FPU.",
has_fpu, edx, CPU_FEATURE_FPU);
check_flag!(doc = "Virtual 8086 Mode Enhancements. Virtual 8086 mode enhancements, including CR4.VME for controlling the feature, CR4.PVI for protected mode virtual interrupts, software interrupt indirection, expansion of the TSS with the software indirection bitmap, and EFLAGS.VIF and EFLAGS.VIP flags.",
has_vme, edx, CPU_FEATURE_VME);
check_flag!(doc = "Debugging Extensions. Support for I/O breakpoints, including CR4.DE for controlling the feature, and optional trapping of accesses to DR4 and DR5.",
has_de, edx, CPU_FEATURE_DE);
check_flag!(doc = "Page Size Extension. Large pages of size 4 MByte are supported, including CR4.PSE for controlling the feature, the defined dirty bit in PDE (Page Directory Entries), optional reserved bit trapping in CR3, PDEs, and PTEs.",
has_pse, edx, CPU_FEATURE_PSE);
check_flag!(doc = "Time Stamp Counter. The RDTSC instruction is supported, including CR4.TSD for controlling privilege.",
has_tsc, edx, CPU_FEATURE_TSC);
check_flag!(doc = "Model Specific Registers RDMSR and WRMSR Instructions. The RDMSR and WRMSR instructions are supported. Some of the MSRs are implementation dependent.",
has_msr, edx, CPU_FEATURE_MSR);
check_flag!(doc = "Physical Address Extension. Physical addresses greater than 32 bits are supported: extended page table entry formats, an extra level in the page translation tables is defined, 2-MByte pages are supported instead of 4 Mbyte pages if PAE bit is 1.",
has_pae, edx, CPU_FEATURE_PAE);
check_flag!(doc = "Machine Check Exception. Exception 18 is defined for Machine Checks, including CR4.MCE for controlling the feature. This feature does not define the model-specific implementations of machine-check error logging, reporting, and processor shutdowns. Machine Check exception handlers may have to depend on processor version to do model specific processing of the exception, or test for the presence of the Machine Check feature.",
has_mce, edx, CPU_FEATURE_MCE);
check_flag!(doc = "CMPXCHG8B Instruction. The compare-and-exchange 8 bytes (64 bits) instruction is supported (implicitly locked and atomic).",
has_cmpxchg8b, edx, CPU_FEATURE_CX8);
check_flag!(doc = "APIC On-Chip. The processor contains an Advanced Programmable Interrupt Controller (APIC), responding to memory mapped commands in the physical address range FFFE0000H to FFFE0FFFH (by default - some processors permit the APIC to be relocated).",
has_apic, edx, CPU_FEATURE_APIC);
check_flag!(doc = "SYSENTER and SYSEXIT Instructions. The SYSENTER and SYSEXIT and associated MSRs are supported.",
has_sysenter_sysexit, edx, CPU_FEATURE_SEP);
check_flag!(doc = "Memory Type Range Registers. MTRRs are supported. The MTRRcap MSR contains feature bits that describe what memory types are supported, how many variable MTRRs are supported, and whether fixed MTRRs are supported.",
has_mtrr, edx, CPU_FEATURE_MTRR);
check_flag!(doc = "Page Global Bit. The global bit is supported in paging-structure entries that map a page, indicating TLB entries that are common to different processes and need not be flushed. The CR4.PGE bit controls this feature.",
has_pge, edx, CPU_FEATURE_PGE);
check_flag!(doc = "Machine Check Architecture. The Machine Check Architecture, which provides a compatible mechanism for error reporting in P6 family, Pentium 4, Intel Xeon processors, and future processors, is supported. The MCG_CAP MSR contains feature bits describing how many banks of error reporting MSRs are supported.",
has_mca, edx, CPU_FEATURE_MCA);
check_flag!(doc = "Conditional Move Instructions. The conditional move instruction CMOV is supported. In addition, if x87 FPU is present as indicated by the CPUID.FPU feature bit, then the FCOMI and FCMOV instructions are supported",
has_cmov, edx, CPU_FEATURE_CMOV);
check_flag!(doc = "Page Attribute Table. Page Attribute Table is supported. This feature augments the Memory Type Range Registers (MTRRs), allowing an operating system to specify attributes of memory accessed through a linear address on a 4KB granularity.",
has_pat, edx, CPU_FEATURE_PAT);
check_flag!(doc = "36-Bit Page Size Extension. 4-MByte pages addressing physical memory beyond 4 GBytes are supported with 32-bit paging. This feature indicates that upper bits of the physical address of a 4-MByte page are encoded in bits 20:13 of the page-directory entry. Such physical addresses are limited by MAXPHYADDR and may be up to 40 bits in size.",
has_pse36, edx, CPU_FEATURE_PSE36);
check_flag!(doc = "Processor Serial Number. The processor supports the 96-bit processor identification number feature and the feature is enabled.",
has_psn, edx, CPU_FEATURE_PSN);
check_flag!(doc = "CLFLUSH Instruction. CLFLUSH Instruction is supported.",
has_clflush, edx, CPU_FEATURE_CLFSH);
check_flag!(doc = "Debug Store. The processor supports the ability to write debug information into a memory resident buffer. This feature is used by the branch trace store (BTS) and precise event-based sampling (PEBS) facilities (see Chapter 23, Introduction to Virtual-Machine Extensions, in the Intel® 64 and IA-32 Architectures Software Developers Manual, Volume 3C).",
has_ds, edx, CPU_FEATURE_DS);
check_flag!(doc = "Thermal Monitor and Software Controlled Clock Facilities. The processor implements internal MSRs that allow processor temperature to be monitored and processor performance to be modulated in predefined duty cycles under software control.",
has_acpi, edx, CPU_FEATURE_ACPI);
check_flag!(doc = "Intel MMX Technology. The processor supports the Intel MMX technology.",
has_mmx, edx, CPU_FEATURE_MMX);
check_flag!(doc = "FXSAVE and FXRSTOR Instructions. The FXSAVE and FXRSTOR instructions are supported for fast save and restore of the floating point context. Presence of this bit also indicates that CR4.OSFXSR is available for an operating system to indicate that it supports the FXSAVE and FXRSTOR instructions.",
has_fxsave_fxstor, edx, CPU_FEATURE_FXSR);
check_flag!(doc = "SSE. The processor supports the SSE extensions.",
has_sse, edx, CPU_FEATURE_SSE);
check_flag!(doc = "SSE2. The processor supports the SSE2 extensions.",
has_sse2, edx, CPU_FEATURE_SSE2);
check_flag!(doc = "Self Snoop. The processor supports the management of conflicting memory types by performing a snoop of its own cache structure for transactions issued to the bus.",
has_ss, edx, CPU_FEATURE_SS);
check_flag!(doc = "Max APIC IDs reserved field is Valid. A value of 0 for HTT indicates there is only a single logical processor in the package and software should assume only a single APIC ID is reserved. A value of 1 for HTT indicates the value in CPUID.1.EBX[23:16] (the Maximum number of addressable IDs for logical processors in this package) is valid for the package.",
has_htt, edx, CPU_FEATURE_HTT);
check_flag!(doc = "Thermal Monitor. The processor implements the thermal monitor automatic thermal control circuitry (TCC).",
has_tm, edx, CPU_FEATURE_TM);
check_flag!(doc = "Pending Break Enable. The processor supports the use of the FERR#/PBE# pin when the processor is in the stop-clock state (STPCLK# is asserted) to signal the processor that an interrupt is pending and that the processor should return to normal operation to handle the interrupt. Bit 10 (PBE enable) in the IA32_MISC_ENABLE MSR enables this capability.",
has_pbe, edx, CPU_FEATURE_PBE);
}
bitflags! {
#[doc(hidden)]
#[derive(Debug)]
flags FeatureInfoEcx: u32 {
#[doc(hidden)]
const CPU_FEATURE_SSE3 = 1 << 0,
#[doc(hidden)]
const CPU_FEATURE_PCLMULQDQ = 1 << 1,
#[doc(hidden)]
const CPU_FEATURE_DTES64 = 1 << 2,
#[doc(hidden)]
const CPU_FEATURE_MONITOR = 1 << 3,
#[doc(hidden)]
const CPU_FEATURE_DSCPL = 1 << 4,
#[doc(hidden)]
const CPU_FEATURE_VMX = 1 << 5,
#[doc(hidden)]
const CPU_FEATURE_SMX = 1 << 6,
#[doc(hidden)]
const CPU_FEATURE_EIST = 1 << 7,
#[doc(hidden)]
const CPU_FEATURE_TM2 = 1 << 8,
#[doc(hidden)]
const CPU_FEATURE_SSSE3 = 1 << 9,
#[doc(hidden)]
const CPU_FEATURE_CNXTID = 1 << 10,
#[doc(hidden)]
const CPU_FEATURE_FMA = 1 << 12,
#[doc(hidden)]
const CPU_FEATURE_CMPXCHG16B = 1 << 13,
#[doc(hidden)]
const CPU_FEATURE_PDCM = 1 << 15,
#[doc(hidden)]
const CPU_FEATURE_PCID = 1 << 17,
#[doc(hidden)]
const CPU_FEATURE_DCA = 1 << 18,
#[doc(hidden)]
const CPU_FEATURE_SSE41 = 1 << 19,
#[doc(hidden)]
const CPU_FEATURE_SSE42 = 1 << 20,
#[doc(hidden)]
const CPU_FEATURE_X2APIC = 1 << 21,
#[doc(hidden)]
const CPU_FEATURE_MOVBE = 1 << 22,
#[doc(hidden)]
const CPU_FEATURE_POPCNT = 1 << 23,
#[doc(hidden)]
const CPU_FEATURE_TSC_DEADLINE = 1 << 24,
#[doc(hidden)]
const CPU_FEATURE_AESNI = 1 << 25,
#[doc(hidden)]
const CPU_FEATURE_XSAVE = 1 << 26,
#[doc(hidden)]
const CPU_FEATURE_OSXSAVE = 1 << 27,
#[doc(hidden)]
const CPU_FEATURE_AVX = 1 << 28,
#[doc(hidden)]
const CPU_FEATURE_F16C = 1 << 29,
#[doc(hidden)]
const CPU_FEATURE_RDRAND = 1 << 30,
}
}
bitflags! {
#[doc(hidden)]
#[derive(Debug)]
flags FeatureInfoEdx: u32 {
#[doc(hidden)]
const CPU_FEATURE_FPU = 1 << 0,
#[doc(hidden)]
const CPU_FEATURE_VME = 1 << 1,
#[doc(hidden)]
const CPU_FEATURE_DE = 1 << 2,
#[doc(hidden)]
const CPU_FEATURE_PSE = 1 << 3,
#[doc(hidden)]
const CPU_FEATURE_TSC = 1 << 4,
#[doc(hidden)]
const CPU_FEATURE_MSR = 1 << 5,
#[doc(hidden)]
const CPU_FEATURE_PAE = 1 << 6,
#[doc(hidden)]
const CPU_FEATURE_MCE = 1 << 7,
#[doc(hidden)]
const CPU_FEATURE_CX8 = 1 << 8,
#[doc(hidden)]
const CPU_FEATURE_APIC = 1 << 9,
#[doc(hidden)]
const CPU_FEATURE_SEP = 1 << 11,
#[doc(hidden)]
const CPU_FEATURE_MTRR = 1 << 12,
#[doc(hidden)]
const CPU_FEATURE_PGE = 1 << 13,
#[doc(hidden)]
const CPU_FEATURE_MCA = 1 << 14,
#[doc(hidden)]
const CPU_FEATURE_CMOV = 1 << 15,
#[doc(hidden)]
const CPU_FEATURE_PAT = 1 << 16,
#[doc(hidden)]
const CPU_FEATURE_PSE36 = 1 << 17,
#[doc(hidden)]
const CPU_FEATURE_PSN = 1 << 18,
#[doc(hidden)]
const CPU_FEATURE_CLFSH = 1 << 19,
#[doc(hidden)]
const CPU_FEATURE_DS = 1 << 21,
#[doc(hidden)]
const CPU_FEATURE_ACPI = 1 << 22,
#[doc(hidden)]
const CPU_FEATURE_MMX = 1 << 23,
#[doc(hidden)]
const CPU_FEATURE_FXSR = 1 << 24,
#[doc(hidden)]
const CPU_FEATURE_SSE = 1 << 25,
#[doc(hidden)]
const CPU_FEATURE_SSE2 = 1 << 26,
#[doc(hidden)]
const CPU_FEATURE_SS = 1 << 27,
#[doc(hidden)]
const CPU_FEATURE_HTT = 1 << 28,
#[doc(hidden)]
const CPU_FEATURE_TM = 1 << 29,
#[doc(hidden)]
const CPU_FEATURE_PBE = 1 << 31,
}
}
pub struct CacheParametersIter {
current: u32,
}
impl Iterator for CacheParametersIter {
type Item = CacheParameter;
fn next(&mut self) -> Option<CacheParameter> {
let res = cpuid!(EAX_CACHE_PARAMETERS, self.current);
let cp = CacheParameter { eax: res.eax, ebx: res.ebx, ecx: res.ecx, edx: res.edx };
match cp.cache_type() {
CacheType::NULL => None,
CacheType::RESERVED => None,
_ => {
self.current += 1;
Some(cp)
}
}
}
}
#[derive(Copy, Clone, Debug)]
pub struct CacheParameter {
eax: u32,
ebx: u32,
ecx: u32,
edx: u32,
}
#[derive(PartialEq, Eq)]
pub enum CacheType {
NULL = 0,
DATA,
INSTRUCTION,
UNIFIED,
RESERVED,
}
impl CacheParameter {
pub fn cache_type(&self) -> CacheType {
let typ = get_bits(self.eax, 0, 4) as u8;
match typ {
0 => CacheType::NULL,
1 => CacheType::DATA,
2 => CacheType::INSTRUCTION,
3 => CacheType::UNIFIED,
_ => CacheType::RESERVED
}
}
pub fn level(&self) -> u8 {
get_bits(self.eax, 5, 7) as u8
}
pub fn is_self_initializing(&self) -> bool {
get_bits(self.eax, 8, 8) == 1
}
pub fn is_fully_associative(&self) -> bool {
get_bits(self.eax, 9, 9) == 1
}
pub fn max_cores_for_cache(&self) -> usize {
(get_bits(self.eax, 14, 25) + 1) as usize
}
pub fn max_cores_for_package(&self) -> usize {
(get_bits(self.eax, 26, 31) + 1) as usize
}
pub fn coherency_line_size(&self) -> usize {
(get_bits(self.ebx, 0, 11) + 1) as usize
}
pub fn physical_line_partitions(&self) -> usize {
(get_bits(self.ebx, 12, 21) + 1) as usize
}
pub fn associativity(&self) -> usize {
(get_bits(self.ebx, 22, 31) + 1) as usize
}
pub fn sets(&self) -> usize {
(self.ecx + 1) as usize
}
pub fn is_write_back_invalidate(&self) -> bool {
get_bits(self.edx, 0, 0) == 1
}
pub fn is_inclusive(&self) -> bool {
get_bits(self.edx, 1, 1) == 1
}
pub fn has_complex_indexing(&self) -> bool {
get_bits(self.edx, 2, 2) == 1
}
}
#[derive(Debug)]
pub struct MonitorMwaitInfo {
eax: u32,
ebx: u32,
ecx: u32,
edx: u32,
}
impl MonitorMwaitInfo {
pub fn smallest_monitor_line(&self) -> u16 {
get_bits(self.eax, 0, 15) as u16
}
pub fn largest_monitor_line(&self) -> u16 {
get_bits(self.ebx, 0, 15) as u16
}
pub fn extensions_supported(&self) -> bool {
get_bits(self.ecx, 0, 0) == 1
}
pub fn interrupts_as_break_event(&self) -> bool {
get_bits(self.ecx, 1, 1) == 1
}
pub fn supported_c0_states(&self) -> u16 {
get_bits(self.edx, 0, 3) as u16
}
pub fn supported_c1_states(&self) -> u16 {
get_bits(self.edx, 4, 7) as u16
}
pub fn supported_c2_states(&self) -> u16 {
get_bits(self.edx, 8, 11) as u16
}
pub fn supported_c3_states(&self) -> u16 {
get_bits(self.edx, 12, 15) as u16
}
pub fn supported_c4_states(&self) -> u16 {
get_bits(self.edx, 16, 19) as u16
}
pub fn supported_c5_states(&self) -> u16 {
get_bits(self.edx, 20, 23) as u16
}
pub fn supported_c6_states(&self) -> u16 {
get_bits(self.edx, 24, 27) as u16
}
pub fn supported_c7_states(&self) -> u16 {
get_bits(self.edx, 28, 31) as u16
}
}
#[derive(Debug)]
pub struct ThermalPowerInfo {
eax: ThermalPowerFeaturesEax,
ebx: u32,
ecx: ThermalPowerFeaturesEcx,
edx: u32,
}
impl ThermalPowerInfo {
check_flag!(doc = "Digital temperature sensor is supported if set.",
has_dts, eax, CPU_FEATURE_DTS);
check_flag!(doc = "Intel Turbo Boost Technology Available (see description of IA32_MISC_ENABLE[38]).",
has_turbo_boost, eax, CPU_FEATURE_TURBO_BOOST);
check_flag!(doc = "ARAT. APIC-Timer-always-running feature is supported if set.",
has_arat, eax, CPU_FEATURE_ARAT);
check_flag!(doc = "PLN. Power limit notification controls are supported if set.",
has_pln, eax, CPU_FEATURE_PLN);
check_flag!(doc = "ECMD. Clock modulation duty cycle extension is supported if set.",
has_ecmd, eax, CPU_FEATURE_ECMD);
check_flag!(doc = "PTM. Package thermal management is supported if set.",
has_ptm, eax, CPU_FEATURE_PTM);
check_flag!(doc = "Hardware Coordination Feedback Capability (Presence of IA32_MPERF and IA32_APERF). The capability to provide a measure of delivered processor performance (since last reset of the counters), as a percentage of expected processor performance at frequency specified in CPUID Brand String Bits 02 - 01",
has_hw_coord_feedback, ecx, CPU_FEATURE_HW_COORD_FEEDBACK);
check_flag!(doc = "The processor supports performance-energy bias preference if CPUID.06H:ECX.SETBH[bit 3] is set and it also implies the presence of a new architectural MSR called IA32_ENERGY_PERF_BIAS (1B0H)",
has_energy_bias_pref, ecx, CPU_FEATURE_ENERGY_BIAS_PREF);
}
bitflags! {
#[doc(hidden)]
#[derive(Debug)]
flags ThermalPowerFeaturesEax: u32 {
#[doc(hidden)]
const CPU_FEATURE_DTS = 1 << 0,
#[doc(hidden)]
const CPU_FEATURE_TURBO_BOOST = 1 << 1,
#[doc(hidden)]
const CPU_FEATURE_ARAT = 1 << 2,
#[doc(hidden)]
const CPU_FEATURE_PLN = 1 << 4,
#[doc(hidden)]
const CPU_FEATURE_ECMD = 1 << 5,
#[doc(hidden)]
const CPU_FEATURE_PTM = 1 << 6,
}
}
bitflags! {
#[doc(hidden)]
#[derive(Debug)]
flags ThermalPowerFeaturesEcx: u32 {
#[doc(hidden)]
const CPU_FEATURE_HW_COORD_FEEDBACK = 1 << 0,
#[doc(hidden)]
const CPU_FEATURE_ENERGY_BIAS_PREF = 1 << 3,
}
}
impl ThermalPowerInfo {
pub fn dts_irq_threshold(&self) -> u8 {
get_bits(self.ebx, 0, 3) as u8
}
}
#[derive(Debug)]
pub struct ExtendedFeatures {
eax: u32,
ebx: ExtendedFeaturesEbx,
ecx: u32,
edx: u32,
}
impl ExtendedFeatures {
check_flag!(doc = "FSGSBASE. Supports RDFSBASE/RDGSBASE/WRFSBASE/WRGSBASE if 1.",
has_fsgsbase, ebx, CPU_FEATURE_FSGSBASE);
check_flag!(doc = "IA32_TSC_ADJUST MSR is supported if 1.",
has_tsc_adjust_msr, ebx, CPU_FEATURE_ADJUST_MSR);
check_flag!(doc = "BMI1",
has_bmi1, ebx, CPU_FEATURE_BMI1);
check_flag!(doc = "HLE",
has_hle, ebx, CPU_FEATURE_HLE);
check_flag!(doc = "AVX2",
has_avx2, ebx, CPU_FEATURE_AVX2);
check_flag!(doc = "SMEP. Supports Supervisor-Mode Execution Prevention if 1.",
has_smep, ebx, CPU_FEATURE_SMEP);
check_flag!(doc = "BMI2",
has_bmi2, ebx, CPU_FEATURE_BMI2);
check_flag!(doc = "Supports Enhanced REP MOVSB/STOSB if 1.",
has_rep_movsb_stosb, ebx, CPU_FEATURE_REP_MOVSB_STOSB);
check_flag!(doc = "INVPCID. If 1, supports INVPCID instruction for system software that manages process-context identifiers.",
has_invpcid, ebx, CPU_FEATURE_INVPCID);
check_flag!(doc = "RTM",
has_rtm, ebx, CPU_FEATURE_RTM);
check_flag!(doc = "Supports Quality of Service Monitoring (QM) capability if 1.",
has_qm, ebx, CPU_FEATURE_QM);
check_flag!(doc = "Deprecates FPU CS and FPU DS values if 1.",
has_fpu_cs_ds_deprecated, ebx, CPU_FEATURE_DEPRECATE_FPU_CS_DS);
check_flag!(doc = "MPX. Supports Intel Memory Protection Extensions if 1.",
has_mpx, ebx, CPU_FEATURE_MPX);
}
bitflags! {
#[doc(hidden)]
#[derive(Debug)]
flags ExtendedFeaturesEbx: u32 {
#[doc(hidden)]
const CPU_FEATURE_FSGSBASE = 1 << 0,
#[doc(hidden)]
const CPU_FEATURE_ADJUST_MSR = 1 << 1,
#[doc(hidden)]
const CPU_FEATURE_BMI1 = 1 << 3,
#[doc(hidden)]
const CPU_FEATURE_HLE = 1 << 4,
#[doc(hidden)]
const CPU_FEATURE_AVX2 = 1 << 5,
#[doc(hidden)]
const CPU_FEATURE_SMEP = 1 << 7,
#[doc(hidden)]
const CPU_FEATURE_BMI2 = 1 << 8,
#[doc(hidden)]
const CPU_FEATURE_REP_MOVSB_STOSB = 1 << 9,
#[doc(hidden)]
const CPU_FEATURE_INVPCID = 1 << 10,
#[doc(hidden)]
const CPU_FEATURE_RTM = 1 << 11,
#[doc(hidden)]
const CPU_FEATURE_QM = 1 << 12,
#[doc(hidden)]
const CPU_FEATURE_DEPRECATE_FPU_CS_DS = 1 << 13,
#[doc(hidden)]
const CPU_FEATURE_MPX = 1 << 14,
}
}
#[derive(Debug)]
pub struct DirectCacheAccessInfo {
eax: u32,
}
impl DirectCacheAccessInfo {
pub fn get_dca_cap_value(&self) -> u32 {
self.eax
}
}
#[derive(Debug)]
pub struct PerformanceMonitoringInfo {
eax: u32,
ebx: PerformanceMonitoringFeaturesEbx,
ecx: u32,
edx: u32,
}
impl PerformanceMonitoringInfo {
pub fn version_id(&self) -> u8 {
get_bits(self.eax, 0, 7) as u8
}
pub fn number_of_counters(&self) -> u8 {
get_bits(self.eax, 8, 15) as u8
}
pub fn counter_bit_width(&self) -> u8 {
get_bits(self.eax, 16, 23) as u8
}
pub fn ebx_length(&self) -> u8 {
get_bits(self.eax, 24, 31) as u8
}
pub fn fixed_function_counters(&self) -> u8 {
get_bits(self.edx, 0, 4) as u8
}
pub fn fixed_function_counters_bit_width(&self) -> u8 {
get_bits(self.edx, 5, 12) as u8
}
check_flag!(doc = "Core cycle event not available if 1.",
is_core_cyc_ev_unavailable, ebx, CPU_FEATURE_CORE_CYC_EV_UNAVAILABLE);
check_flag!(doc = "Instruction retired event not available if 1.",
is_inst_ret_ev_unavailable, ebx, CPU_FEATURE_INST_RET_EV_UNAVAILABLE);
check_flag!(doc = "Reference cycles event not available if 1.",
is_ref_cycle_ev_unavailable, ebx, CPU_FEATURE_REF_CYC_EV_UNAVAILABLE);
check_flag!(doc = "Last-level cache reference event not available if 1.",
is_cache_ref_ev_unavailable, ebx, CPU_FEATURE_CACHE_REF_EV_UNAVAILABLE);
check_flag!(doc = "Last-level cache misses event not available if 1.",
is_ll_cache_miss_ev_unavailable, ebx, CPU_FEATURE_LL_CACHE_MISS_EV_UNAVAILABLE);
check_flag!(doc = "Branch instruction retired event not available if 1.",
is_branch_inst_ret_ev_unavailable, ebx, CPU_FEATURE_BRANCH_INST_RET_EV_UNAVAILABLE);
check_flag!(doc = "Branch mispredict retired event not available if 1.",
is_branch_midpred_ev_unavailable, ebx, CPU_FEATURE_BRANCH_MISPRED_EV_UNAVAILABLE);
}
bitflags! {
#[doc(hidden)]
#[derive(Debug)]
flags PerformanceMonitoringFeaturesEbx: u32 {
#[doc(hidden)]
const CPU_FEATURE_CORE_CYC_EV_UNAVAILABLE = 1 << 0,
#[doc(hidden)]
const CPU_FEATURE_INST_RET_EV_UNAVAILABLE = 1 << 1,
#[doc(hidden)]
const CPU_FEATURE_REF_CYC_EV_UNAVAILABLE = 1 << 2,
#[doc(hidden)]
const CPU_FEATURE_CACHE_REF_EV_UNAVAILABLE = 1 << 3,
#[doc(hidden)]
const CPU_FEATURE_LL_CACHE_MISS_EV_UNAVAILABLE = 1 << 4,
#[doc(hidden)]
const CPU_FEATURE_BRANCH_INST_RET_EV_UNAVAILABLE = 1 << 5,
#[doc(hidden)]
const CPU_FEATURE_BRANCH_MISPRED_EV_UNAVAILABLE = 1 << 6,
}
}
#[derive(Debug)]
pub struct ExtendedTopologyIter {
level: u32,
}
#[derive(Debug)]
pub struct ExtendedTopologyLevel {
eax: u32,
ebx: u32,
ecx: u32,
edx: u32,
}
impl ExtendedTopologyLevel {
pub fn processors(&self) -> u16 {
get_bits(self.ebx, 0, 15) as u16
}
pub fn level_number(&self) -> u8 {
get_bits(self.ecx, 0, 7) as u8
}
pub fn level_type(&self) -> TopologyType {
match get_bits(self.ecx, 8, 15) {
0 => TopologyType::INVALID,
1 => TopologyType::SMT,
2 => TopologyType::CORE,
_ => unreachable!()
}
}
pub fn x2apic_id(&self) -> u32 {
self.edx
}
pub fn shift_right_for_next_apic_id(&self) -> u32 {
get_bits(self.eax, 0, 4)
}
}
#[derive(PartialEq, Eq, Debug)]
pub enum TopologyType {
INVALID = 0,
SMT = 1,
CORE = 2,
}
impl Iterator for ExtendedTopologyIter {
type Item = ExtendedTopologyLevel;
fn next(&mut self) -> Option<ExtendedTopologyLevel> {
let res = cpuid!(EAX_EXTENDED_TOPOLOGY_INFO, self.level);
self.level += 1;
let et = ExtendedTopologyLevel { eax: res.eax, ebx: res.ebx, ecx: res.ecx, edx: res.edx };
match et.level_type() {
TopologyType::INVALID => None,
_ => Some(et)
}
}
}
#[derive(PartialEq, Eq, Debug)]
#[allow(non_camel_case_types)]
enum ExtendedStateIdent {
Legacy87 = 1 << 0,
SSE128 = 1 << 1,
AVX256 = 1 << 2,
MPX = 0b11 << 3,
AVX512 = 0b111 << 5,
IA32_XSS = 1 << 8,
PKRU = 1 << 9,
}
#[derive(Debug)]
pub struct ExtendedStateInfo {
eax: u32,
ebx: u32,
ecx: u32,
edx: u32,
eax1: u32,
}
macro_rules! check_xcr_flag {
($doc:meta, $fun:ident, $flag:ident) => (
#[$doc]
pub fn $fun(&self) -> bool {
self.xcr0_supported() & (ExtendedStateIdent::$flag as u64) > 0
}
)
}
impl ExtendedStateInfo {
pub fn xcr0_supported(&self) -> u64 {
(self.edx as u64) << 32 | self.eax as u64
}
check_xcr_flag!(doc = "Legacy x87.",
has_legacy_x87, Legacy87);
check_xcr_flag!(doc = "SSE 128-bit.",
has_sse_128, SSE128);
check_xcr_flag!(doc = "AVX 256-bit.",
has_avx_256, AVX256);
check_xcr_flag!(doc = "MPX.",
has_mpx, MPX);
check_xcr_flag!(doc = "AVX 512-bit.",
has_avx_512, AVX512);
check_xcr_flag!(doc = "IA32_XSS.",
has_ia32_xss, IA32_XSS);
check_xcr_flag!(doc = "PKRU.",
has_pkru, PKRU);
pub fn maximum_size_enabled_features(&self) -> u32 {
self.ebx
}
pub fn maximum_size_supported_features(&self) -> u32 {
self.ecx
}
pub fn has_xsaveopt(&self) -> bool {
self.eax1 & 0x1 > 0
}
pub fn has_xsavec(&self) -> bool {
self.eax1 & 0x0b10 > 0
}
pub fn has_xgetbv(&self) -> bool {
self.eax1 & 0x0b100 > 0
}
pub fn has_xsaves_xrstors(&self) -> bool {
self.eax1 & 0x0b1000 > 0
}
pub fn iter(&self) -> ExtendedStateIter {
ExtendedStateIter { level: 1, xcr0_supported: self.xcr0_supported() }
}
}
pub struct ExtendedStateIter {
level: u32,
xcr0_supported: u64,
}
impl Iterator for ExtendedStateIter {
type Item = ExtendedState;
fn next(&mut self) -> Option<ExtendedState> {
if self.level > 62 {
return None;
}
self.level += 1;
let bit = 1 << self.level;
if self.xcr0_supported & bit > 0 {
let res = cpuid!(EAX_EXTENDED_STATE_INFO, self.level);
return Some(ExtendedState { subleaf: self.level, eax: res.eax, ebx: res.ebx, ecx: res.ecx });
}
self.next()
}
}
#[derive(Debug)]
pub struct ExtendedState {
pub subleaf: u32,
eax: u32,
ebx: u32,
ecx: u32,
}
impl ExtendedState {
pub fn size(&self) -> u32 {
self.eax
}
pub fn offset(&self) -> u32 {
self.ebx
}
pub fn is_in_ia32_xss(&self) -> bool {
self.ecx & 0b1 > 0
}
pub fn is_in_xcr0(&self) -> bool {
self.ecx & 0b1 == 0
}
pub fn is_compacted_format(&self) -> bool {
self.ecx & 0b10 > 0
}
}
#[derive(Debug)]
pub struct QoSInfo {
ebx0: u32,
edx0: u32,
ebx1: u32,
ecx1: u32,
edx1: u32,
}
impl QoSInfo {
pub fn maximum_rmid_range(&self) -> u32 {
self.ebx0
}
pub fn has_l3_qos(&self) -> bool {
self.edx0 & (1 << 1) > 0
}
pub fn conversion_factor(&self) -> u32 {
self.ebx1
}
pub fn maximum_range_l3_rmid(&self) -> u32 {
self.ecx1
}
pub fn has_l3_occupancy_monitoring(&self) -> bool {
self.edx1 & 0x1 > 0
}
}
#[derive(Debug)]
pub struct QoSEnforcementInfo {
ebx0: u32,
eax1: u32,
ebx1: u32,
ecx1: u32,
edx1: u32
}
impl QoSEnforcementInfo {
check_bit_fn!(doc = "Supports L3 Cache QoS enforcement if true.", has_l3_qos_enforcement, ebx0, 0);
pub fn iter(&self) -> QoSEnforcementIter {
QoSEnforcementIter { current: 0, ebx0: self.ebx0 }
}
}
pub struct QoSEnforcementIter {
current: u8,
ebx0: u32,
}
impl Iterator for QoSEnforcementIter {
type Item = QoSEnforcement;
fn next(&mut self) -> Option<QoSEnforcement> {
if self.current > 31 {
return None;
}
self.current += 1;
if is_bit_set!(self.ebx0, self.current) {
let res = cpuid!(EAX_QOS_ENFORCEMENT_INFO, self.current);
return Some(QoSEnforcement { eax: res.eax, ebx: res.ebx, ecx: res.ecx, edx: res.edx });
}
self.next()
}
}
#[derive(Debug)]
pub struct QoSEnforcement {
eax: u32,
ebx: u32,
ecx: u32,
edx: u32
}
impl QoSEnforcement {
pub fn capacity_mask_length(&self) -> u8 {
get_bits(self.eax, 0, 4) as u8
}
pub fn allocation_unit_isolation(&self) -> u32 {
self.ebx
}
pub fn highest_cos_number(&self) -> u16 {
get_bits(self.edx, 0, 15) as u16
}
check_bit_fn!(doc = "Updates of COS should be infrequent if true.",
has_infrequent_cos_updates, ecx, 1);
check_bit_fn!(doc = "Is Code and Data Prioritization Technology supported?",
has_code_data_prioritization, ecx, 2);
}
#[derive(Debug)]
pub struct ProcessorTraceInfo {
eax: u32,
ebx: u32,
ecx: u32,
edx: u32
}
impl ProcessorTraceInfo {
check_bit_fn!(doc = "If true, Indicates that IA32_RTIT_CTL.CR3Filter can be set to 1, and that IA32_RTIT_CR3_MATCH MSR can be accessed.",
has_rtit_cr3_match, ebx, 0);
check_bit_fn!(doc = "If true, Indicates support of Configurable PSB and Cycle-Accurate Mode.",
has_configurable_psb_and_cycle_accurate_mode, ebx, 1);
check_bit_fn!(doc = "If true, Indicates support of IP Filtering, TraceStop filtering, and preservation of Intel PT MSRs across warm reset.",
has_ip_tracestop_filtering, ebx, 2);
check_bit_fn!(doc = "If true, Indicates support of MTC timing packet and suppression of COFI-based packets.",
has_mtc_timing_packet_coefi_suppression, ebx, 3);
check_bit_fn!(doc = "If true, Tracing can be enabled with IA32_RTIT_CTL.ToPA = 1, hence utilizing the ToPA output scheme; IA32_RTIT_OUTPUT_BASE and IA32_RTIT_OUTPUT_MASK_PTRS MSRs can be accessed.",
has_topa, ecx, 0);
check_bit_fn!(doc = "If true, ToPA tables can hold any number of output entries, up to the maximum allowed by the MaskOrTableOffset field of IA32_RTIT_OUTPUT_MASK_PTRS.",
has_topa_maximum_entries, ecx, 1);
check_bit_fn!(doc = "If true, Indicates support of Single-Range Output scheme.",
has_single_range_output_scheme, ecx, 2);
check_bit_fn!(doc = "If true, Indicates support of output to Trace Transport subsystem.",
has_trace_transport_subsystem, ecx, 3);
check_bit_fn!(doc = "If true, Generated packets which contain IP payloads have LIP values, which include the CS base component.",
has_lip_with_cs_base, ecx, 31);
pub fn iter(&self) -> ProcessorTraceIter {
ProcessorTraceIter { current: 0, count: self.eax }
}
}
#[derive(Debug)]
pub struct ProcessorTraceIter {
current: u32,
count: u32,
}
impl Iterator for ProcessorTraceIter {
type Item = ProcessorTrace;
fn next(&mut self) -> Option<ProcessorTrace> {
if self.current <= self.count {
self.current += 1;
let res = cpuid!(EAX_TRACE_INFO, self.current);
return Some(ProcessorTrace { eax: res.eax, ebx: res.ebx });
}
None
}
}
#[derive(Debug)]
pub struct ProcessorTrace {
eax: u32,
ebx: u32,
}
impl ProcessorTrace {
pub fn configurable_address_ranges(&self) -> u8 {
get_bits(self.eax, 0, 2) as u8
}
pub fn supported_mtc_period_encodings(&self) -> u16 {
get_bits(self.eax, 16, 31) as u16
}
pub fn supported_cycle_threshold_value_encodings(&self) -> u16 {
get_bits(self.ebx, 0, 15) as u16
}
pub fn supported_psb_frequency_encodings(&self) -> u16 {
get_bits(self.ebx, 16, 31) as u16
}
}
#[derive(Debug)]
pub struct TscInfo {
eax: u32,
ebx: u32
}
impl TscInfo {
pub fn get_tsc_ratio_denominator(&self) -> u32 {
self.eax
}
pub fn get_tsc_ratio_numerator(&self) -> u32 {
self.ebx
}
}
#[derive(Debug)]
pub struct ProcessorFrequencyInfo {
eax: u32,
ebx: u32,
ecx: u32
}
impl ProcessorFrequencyInfo {
pub fn processor_base_frequency(&self) -> u16 {
get_bits(self.eax, 0, 15) as u16
}
pub fn processor_max_frequency(&self) -> u16 {
get_bits(self.ebx, 0, 15) as u16
}
pub fn bus_frequency(&self) -> u16 {
get_bits(self.ecx, 0, 15) as u16
}
}
#[derive(Debug)]
pub struct ExtendedFunctionInfo {
max_eax_value: u32,
data: [CpuIdResult; 9],
}
#[derive(PartialEq, Eq, Debug)]
pub enum L2Associativity {
Disabled = 0x0,
DirectMapped = 0x1,
TwoWay = 0x2,
FourWay = 0x4,
EightWay = 0x6,
SixteenWay = 0x8,
FullyAssiciative = 0xF,
Unknown,
}
const EAX_EXTENDED_PROC_SIGNATURE: u32 = 0x1;
const EAX_EXTENDED_BRAND_STRING: u32 = 0x4;
const EAX_EXTENDED_CACHE_INFO: u32 = 0x6;
impl ExtendedFunctionInfo {
fn leaf_is_supported(&self, val: u32) -> bool {
val <= self.max_eax_value
}
pub fn processor_brand_string(&self) -> Option<&str> {
if self.leaf_is_supported(EAX_EXTENDED_BRAND_STRING) {
Some(unsafe {
let brand_string_start = transmute::<&CpuIdResult, *const u8>(&self.data[2]);
let slice = slice::from_raw_parts(brand_string_start, 3*4*4);
let byte_array: &'static [u8] = transmute(slice);
str::from_utf8_unchecked(byte_array)
})
}
else {
None
}
}
pub fn extended_signature(&self) -> Option<u32> {
if self.leaf_is_supported(EAX_EXTENDED_PROC_SIGNATURE) {
Some(self.data[1].eax)
}
else {
None
}
}
pub fn cache_line_size(&self) -> Option<u8> {
if self.leaf_is_supported(EAX_EXTENDED_CACHE_INFO) {
Some(get_bits(self.data[6].ecx, 0, 7) as u8)
}
else {
None
}
}
pub fn l2_associativity(&self) -> Option<L2Associativity> {
if self.leaf_is_supported(EAX_EXTENDED_CACHE_INFO) {
Some(match get_bits(self.data[6].ecx, 12, 15) {
0x0 => L2Associativity::Disabled,
0x1 => L2Associativity::DirectMapped,
0x2 => L2Associativity::TwoWay,
0x4 => L2Associativity::FourWay,
0x6 => L2Associativity::EightWay,
0x8 => L2Associativity::SixteenWay,
0xF => L2Associativity::FullyAssiciative,
_ => L2Associativity::Unknown,
})
}
else {
None
}
}
pub fn cache_size(&self) -> Option<u16> {
if self.leaf_is_supported(EAX_EXTENDED_CACHE_INFO) {
Some(get_bits(self.data[6].ecx, 16, 31) as u16)
}
else {
None
}
}
pub fn physical_address_bits(&self) -> Option<u8> {
if self.leaf_is_supported(8) {
Some(get_bits(self.data[8].eax, 0, 7) as u8)
}
else {
None
}
}
pub fn linear_address_bits(&self) -> Option<u8> {
if self.leaf_is_supported(8) {
Some(get_bits(self.data[8].eax, 8, 15) as u8)
}
else {
None
}
}
pub fn has_invariant_tsc(&self) -> bool {
self.leaf_is_supported(7) && self.data[7].edx & (1 << 8) > 0
}
pub fn has_lahf_sahf(&self) -> bool {
self.leaf_is_supported(1) &&
ExtendedFunctionInfoEcx{ bits: self.data[1].ecx }.contains(CPU_FEATURE_LAHF_SAHF)
}
pub fn has_lzcnt(&self) -> bool {
self.leaf_is_supported(1) &&
ExtendedFunctionInfoEcx{ bits: self.data[1].ecx }.contains(CPU_FEATURE_LZCNT)
}
pub fn has_prefetchw(&self) -> bool {
self.leaf_is_supported(1) &&
ExtendedFunctionInfoEcx{ bits: self.data[1].ecx }.contains(CPU_FEATURE_PREFETCHW)
}
pub fn has_syscall_sysret(&self) -> bool {
self.leaf_is_supported(1) &&
ExtendedFunctionInfoEdx{ bits: self.data[1].edx }.contains(CPU_FEATURE_SYSCALL_SYSRET)
}
pub fn has_execute_disable(&self) -> bool {
self.leaf_is_supported(1) &&
ExtendedFunctionInfoEdx{ bits: self.data[1].edx }.contains(CPU_FEATURE_EXECUTE_DISABLE)
}
pub fn has_1gib_pages(&self) -> bool {
self.leaf_is_supported(1) &&
ExtendedFunctionInfoEdx{ bits: self.data[1].edx }.contains(CPU_FEATURE_1GIB_PAGES)
}
pub fn has_rdtscp(&self) -> bool {
self.leaf_is_supported(1) &&
ExtendedFunctionInfoEdx{ bits: self.data[1].edx }.contains(CPU_FEATURE_RDTSCP)
}
pub fn has_64bit_mode(&self) -> bool {
self.leaf_is_supported(1) &&
ExtendedFunctionInfoEdx{ bits: self.data[1].edx }.contains(CPU_FEATURE_64BIT_MODE)
}
}
#[doc(hidden)]
bitflags! {
#[doc(hidden)]
#[derive(Debug)]
flags ExtendedFunctionInfoEcx: u32 {
#[doc(hidden)]
const CPU_FEATURE_LAHF_SAHF = 1 << 0,
#[doc(hidden)]
const CPU_FEATURE_LZCNT = 1 << 5,
#[doc(hidden)]
const CPU_FEATURE_PREFETCHW = 1 << 8,
}
}
bitflags! {
#[doc(hidden)]
#[derive(Debug)]
flags ExtendedFunctionInfoEdx: u32 {
#[doc(hidden)]
const CPU_FEATURE_SYSCALL_SYSRET = 1 << 11,
#[doc(hidden)]
const CPU_FEATURE_EXECUTE_DISABLE = 1 << 20,
#[doc(hidden)]
const CPU_FEATURE_1GIB_PAGES = 1 << 26,
#[doc(hidden)]
const CPU_FEATURE_RDTSCP = 1 << 27,
#[doc(hidden)]
const CPU_FEATURE_64BIT_MODE = 1 << 29,
}
}
#[cfg(test)]
#[test]
fn genuine_intel() {
let vf = VendorInfo { ebx: 1970169159, edx: 1231384169, ecx: 1818588270 };
assert!(vf.as_string() == "GenuineIntel");
}
#[test]
fn feature_info() {
let finfo = FeatureInfo { eax: 198313,
ebx: 34605056,
ecx: FeatureInfoEcx { bits: 2109399999 },
edx: FeatureInfoEdx { bits: 3219913727 }, };
assert!(finfo.model_id() == 10);
assert!(finfo.extended_model_id() == 3);
assert!(finfo.stepping_id() == 9);
assert!(finfo.extended_family_id() == 0);
assert!(finfo.family_id() == 6);
assert!(finfo.stepping_id() == 9);
assert!(finfo.brand_index() == 0);
assert!(finfo.edx.contains(CPU_FEATURE_SSE2));
assert!(finfo.ecx.contains(CPU_FEATURE_SSE41));
}
#[test]
fn cache_info() {
let cinfos = CacheInfoIter { current: 1,
eax: 1979931137,
ebx: 15774463,
ecx: 0,
edx: 13238272, };
for (idx, cache) in cinfos.enumerate() {
match idx {
0 => assert!(cache.num == 0xff),
1 => assert!(cache.num == 0x5a),
2 => assert!(cache.num == 0xb2),
3 => assert!(cache.num == 0x03),
4 => assert!(cache.num == 0xf0),
5 => assert!(cache.num == 0xca),
6 => assert!(cache.num == 0x76),
_ => unreachable!(),
}
}
}
#[test]
fn cache_parameters() {
let caches: [CacheParameter; 4] = [
CacheParameter { eax: 469778721, ebx: 29360191, ecx: 63, edx: 0 },
CacheParameter { eax: 469778722, ebx: 29360191, ecx: 63, edx: 0 },
CacheParameter { eax: 469778755, ebx: 29360191, ecx: 511, edx: 0 },
CacheParameter { eax: 470008163, ebx: 46137407, ecx: 4095, edx: 6 },
];
for (idx, cache) in caches.into_iter().enumerate() {
match idx {
0 => {
assert!(cache.cache_type() == CacheType::DATA);
assert!(cache.level() == 1);
assert!(cache.is_self_initializing());
assert!(!cache.is_fully_associative());
assert!(cache.max_cores_for_cache() == 2);
assert!(cache.max_cores_for_package() == 8);
assert!(cache.coherency_line_size() == 64);
assert!(cache.physical_line_partitions() == 1);
assert!(cache.associativity() == 8);
assert!(!cache.is_write_back_invalidate());
assert!(!cache.is_inclusive());
assert!(!cache.has_complex_indexing());
assert!(cache.sets() == 64);
},
1 => {
assert!(cache.cache_type() == CacheType::INSTRUCTION);
assert!(cache.level() == 1);
assert!(cache.is_self_initializing());
assert!(!cache.is_fully_associative());
assert!(cache.max_cores_for_cache() == 2);
assert!(cache.max_cores_for_package() == 8);
assert!(cache.coherency_line_size() == 64);
assert!(cache.physical_line_partitions() == 1);
assert!(cache.associativity() == 8);
assert!(!cache.is_write_back_invalidate());
assert!(!cache.is_inclusive());
assert!(!cache.has_complex_indexing());
assert!(cache.sets() == 64);
},
2 => {
assert!(cache.cache_type() == CacheType::UNIFIED);
assert!(cache.level() == 2);
assert!(cache.is_self_initializing());
assert!(!cache.is_fully_associative());
assert!(cache.max_cores_for_cache() == 2);
assert!(cache.max_cores_for_package() == 8);
assert!(cache.coherency_line_size() == 64);
assert!(cache.physical_line_partitions() == 1);
assert!(cache.associativity() == 8);
assert!(!cache.is_write_back_invalidate());
assert!(!cache.is_inclusive());
assert!(!cache.has_complex_indexing());
assert!(cache.sets() == 512);
},
3 => {
assert!(cache.cache_type() == CacheType::UNIFIED);
assert!(cache.level() == 3);
assert!(cache.is_self_initializing());
assert!(!cache.is_fully_associative());
assert!(cache.max_cores_for_cache() == 16);
assert!(cache.max_cores_for_package() == 8);
assert!(cache.coherency_line_size() == 64);
assert!(cache.physical_line_partitions() == 1);
assert!(cache.associativity() == 12);
assert!(!cache.is_write_back_invalidate());
assert!(cache.is_inclusive());
assert!(cache.has_complex_indexing());
assert!(cache.sets() == 4096);
},
_ => unreachable!()
}
}
}
#[test]
fn monitor_mwait_features() {
let mmfeatures = MonitorMwaitInfo { eax: 64, ebx: 64, ecx: 3, edx: 135456 };
assert!(mmfeatures.smallest_monitor_line() == 64);
assert!(mmfeatures.largest_monitor_line() == 64);
assert!(mmfeatures.extensions_supported());
assert!(mmfeatures.interrupts_as_break_event());
assert!(mmfeatures.supported_c0_states() == 0);
assert!(mmfeatures.supported_c1_states() == 2);
assert!(mmfeatures.supported_c2_states() == 1);
assert!(mmfeatures.supported_c3_states() == 1);
assert!(mmfeatures.supported_c4_states() == 2);
assert!(mmfeatures.supported_c5_states() == 0);
assert!(mmfeatures.supported_c6_states() == 0);
assert!(mmfeatures.supported_c7_states() == 0);
}
#[test]
fn thermal_power_features() {
let tpfeatures = ThermalPowerInfo { eax: ThermalPowerFeaturesEax { bits: 119 },
ebx: 2,
ecx: ThermalPowerFeaturesEcx { bits: 9 },
edx: 0, };
assert!(tpfeatures.eax.contains(CPU_FEATURE_DTS));
assert!(tpfeatures.eax.contains(CPU_FEATURE_TURBO_BOOST));
assert!(tpfeatures.eax.contains(CPU_FEATURE_ARAT));
assert!(tpfeatures.eax.contains(CPU_FEATURE_PLN));
assert!(tpfeatures.eax.contains(CPU_FEATURE_ECMD));
assert!(tpfeatures.eax.contains(CPU_FEATURE_PTM));
assert!(tpfeatures.ecx.contains(CPU_FEATURE_HW_COORD_FEEDBACK));
assert!(tpfeatures.ecx.contains(CPU_FEATURE_ENERGY_BIAS_PREF));
assert!(tpfeatures.dts_irq_threshold() == 0x2);
}
#[test]
fn extended_features() {
let tpfeatures = ExtendedFeatures { eax: 0,
ebx: ExtendedFeaturesEbx { bits: 641 },
ecx: 0,
edx: 0, };
assert!(tpfeatures.eax == 0);
assert!(tpfeatures.ebx.contains(CPU_FEATURE_FSGSBASE));
assert!(!tpfeatures.ebx.contains(CPU_FEATURE_ADJUST_MSR));
assert!(!tpfeatures.ebx.contains(CPU_FEATURE_BMI1));
assert!(!tpfeatures.ebx.contains(CPU_FEATURE_HLE));
assert!(!tpfeatures.ebx.contains(CPU_FEATURE_AVX2));
assert!(tpfeatures.ebx.contains(CPU_FEATURE_SMEP));
assert!(!tpfeatures.ebx.contains(CPU_FEATURE_BMI2));
assert!(tpfeatures.ebx.contains(CPU_FEATURE_REP_MOVSB_STOSB));
assert!(!tpfeatures.ebx.contains(CPU_FEATURE_INVPCID));
assert!(!tpfeatures.ebx.contains(CPU_FEATURE_RTM));
assert!(!tpfeatures.ebx.contains(CPU_FEATURE_QM));
assert!(!tpfeatures.ebx.contains(CPU_FEATURE_DEPRECATE_FPU_CS_DS));
}
#[test]
fn direct_cache_access_info() {
let dca = DirectCacheAccessInfo { eax: 0x1 };
assert!(dca.get_dca_cap_value() == 0x1);
}
#[test]
fn performance_monitoring_info() {
let pm = PerformanceMonitoringInfo { eax: 120587267,
ebx: PerformanceMonitoringFeaturesEbx { bits: 0 },
ecx: 0,
edx: 1539, };
assert!(pm.version_id() == 3);
assert!(pm.number_of_counters() == 4);
assert!(pm.counter_bit_width() == 48);
assert!(pm.ebx_length() == 7);
assert!(pm.fixed_function_counters() == 3);
assert!(pm.fixed_function_counters_bit_width() == 48);
assert!(!pm.ebx.contains(CPU_FEATURE_CORE_CYC_EV_UNAVAILABLE));
assert!(!pm.ebx.contains(CPU_FEATURE_INST_RET_EV_UNAVAILABLE));
assert!(!pm.ebx.contains(CPU_FEATURE_REF_CYC_EV_UNAVAILABLE));
assert!(!pm.ebx.contains(CPU_FEATURE_CACHE_REF_EV_UNAVAILABLE));
assert!(!pm.ebx.contains(CPU_FEATURE_LL_CACHE_MISS_EV_UNAVAILABLE));
assert!(!pm.ebx.contains(CPU_FEATURE_BRANCH_INST_RET_EV_UNAVAILABLE));
assert!(!pm.ebx.contains(CPU_FEATURE_BRANCH_MISPRED_EV_UNAVAILABLE));
}
#[cfg(test)]
#[test]
fn extended_topology_info() {
let l1 = ExtendedTopologyLevel { eax: 1, ebx: 2, ecx: 256, edx: 3 };
let l2 = ExtendedTopologyLevel { eax: 4, ebx: 4, ecx: 513, edx: 3 };
assert!(l1.processors() == 2);
assert!(l1.level_number() == 0);
assert!(l1.level_type() == TopologyType::SMT);
assert!(l1.x2apic_id() == 3);
assert!(l1.shift_right_for_next_apic_id() == 1);
assert!(l2.processors() == 4);
assert!(l2.level_number() == 1);
assert!(l2.level_type() == TopologyType::CORE);
assert!(l2.x2apic_id() == 3);
assert!(l2.shift_right_for_next_apic_id() == 4);
}
#[test]
fn extended_state_info() {
let es = ExtendedStateInfo { eax: 7, ebx: 832, ecx: 832, edx: 0, eax1: 1 };
assert!(es.xcr0_supported() == 7);
assert!(es.maximum_size_enabled_features() == 832);
assert!(es.maximum_size_supported_features() == 832);
assert!(es.has_xsaveopt());
for (idx, e) in es.iter().enumerate() {
match idx {
0 => {
assert!(e.subleaf == 2);
assert!(e.size() == 256);
assert!(e.offset() == 576);
}
_ => unreachable!()
}
}
}
#[test]
fn quality_of_service_info() {
let qos = QoSInfo { ebx0: 832, edx0: 0, ebx1: 0, ecx1: 0, edx1: 0 };
assert!(qos.maximum_rmid_range() == 832);
assert!(!qos.has_l3_qos());
assert!(qos.conversion_factor() == 0x0);
assert!(qos.maximum_range_l3_rmid() == 0x0);
assert!(!qos.has_l3_occupancy_monitoring());
}
#[test]
fn extended_functions() {
let ef = ExtendedFunctionInfo { max_eax_value: 8,
data: [
CpuIdResult { eax: 2147483656, ebx: 0, ecx: 0, edx: 0 },
CpuIdResult { eax: 0, ebx: 0, ecx: 1, edx: 672139264 },
CpuIdResult { eax: 538976288, ebx: 1226842144, ecx: 1818588270, edx: 539578920 },
CpuIdResult { eax: 1701998403, ebx: 692933672, ecx: 758475040, edx: 926102323 },
CpuIdResult { eax: 1346576469, ebx: 541073493, ecx: 808988209, edx: 8013895 },
CpuIdResult { eax: 0, ebx: 0, ecx: 0, edx: 0 },
CpuIdResult { eax: 0, ebx: 0, ecx: 16801856, edx: 0 },
CpuIdResult { eax: 0, ebx: 0, ecx: 0, edx: 256 },
CpuIdResult { eax: 12324, ebx: 0, ecx: 0, edx: 0 }
], };
assert!(ef.processor_brand_string().unwrap() == " Intel(R) Core(TM) i5-3337U CPU @ 1.80GHz\0");
assert!(ef.has_lahf_sahf());
assert!(!ef.has_lzcnt());
assert!(!ef.has_prefetchw());
assert!(ef.has_syscall_sysret());
assert!(ef.has_execute_disable());
assert!(!ef.has_1gib_pages());
assert!(ef.has_rdtscp());
assert!(ef.has_64bit_mode());
assert!(ef.has_invariant_tsc());
assert!(ef.extended_signature().unwrap() == 0x0);
assert!(ef.cache_line_size().unwrap() == 64);
assert!(ef.l2_associativity().unwrap() == L2Associativity::EightWay);
assert!(ef.cache_size().unwrap() == 256);
assert!(ef.physical_address_bits().unwrap() == 36);
assert!(ef.linear_address_bits().unwrap() == 48);
}
#[cfg(test)]
#[test]
fn readme_test() {
}