Struct raw_cpuid::CacheParameter[][src]

pub struct CacheParameter { /* fields omitted */ }

Methods

impl CacheParameter
[src]

Cache Type

Cache Level (starts at 1)

Self Initializing cache level (does not need SW initialization).

Fully Associative cache

Maximum number of addressable IDs for logical processors sharing this cache

Maximum number of addressable IDs for processor cores in the physical package

System Coherency Line Size (Bits 11-00)

Physical Line partitions (Bits 21-12)

Ways of associativity (Bits 31-22)

Number of Sets (Bits 31-00)

Write-Back Invalidate/Invalidate (Bit 0) False: WBINVD/INVD from threads sharing this cache acts upon lower level caches for threads sharing this cache. True: WBINVD/INVD is not guaranteed to act upon lower level caches of non-originating threads sharing this cache.

Cache Inclusiveness (Bit 1) False: Cache is not inclusive of lower cache levels. True: Cache is inclusive of lower cache levels.

Complex Cache Indexing (Bit 2) False: Direct mapped cache. True: A complex function is used to index the cache, potentially using all address bits.

Trait Implementations

impl Copy for CacheParameter
[src]

impl Clone for CacheParameter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CacheParameter
[src]

Formats the value using the given formatter. Read more

impl Default for CacheParameter
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations