x86 0.6.0

Library to program x86 (amd64) hardware. Contains x86 specific data structure descriptions, data-tables, as well as convenience function to call assembly instructions typically not exposed in higher level languages.
1
2
3
4
5
6
7
8
9
10
11
12
//! Performance counter for all Intel architectures.
/// The content of this file is automatically generated by `build.rs`
/// from the data in `x86data/perfmon_data`.

use phf;
use super::description::IntelPerformanceCounterDescription;
use super::description::Counter;
use super::description::PebsType;
use super::description::Tuple;
use super::description::MSRIndex;

include!(concat!(env!("OUT_DIR"), "/counters.rs"));