Struct x86_64::registers::control::Cr0Flags[]

pub struct Cr0Flags { /* fields omitted */ }

Configuration flags of the Cr0 register.

Methods

impl Cr0Flags

PROTECTED_MODE_ENABLE: Cr0Flags = Cr0Flags{bits: 1 << 0,}

Enables protected mode.

MONITOR_COPROCESSOR: Cr0Flags = Cr0Flags{bits: 1 << 1,}

Enables monitoring of the coprocessor, typical for x87 instructions.

Controls together with the TASK_SWITCHED flag whether a wait or fwait instruction should cause a device-not-available exception.

EMULATE_COPROCESSOR: Cr0Flags = Cr0Flags{bits: 1 << 2,}

Force all x87 and MMX instructions to cause an exception.

TASK_SWITCHED: Cr0Flags = Cr0Flags{bits: 1 << 3,}

Automatically set to 1 on hardware task switch.

This flags allows lazily saving x87/MMX/SSE instructions on hardware context switches.

NUMERIC_ERROR: Cr0Flags = Cr0Flags{bits: 1 << 5,}

Enables the native error reporting mechanism for x87 FPU errors.

WRITE_PROTECT: Cr0Flags = Cr0Flags{bits: 1 << 16,}

Controls whether supervisor-level writes to read-only pages are inhibited.

When set, it is not possible to write to read-only pages from ring 0.

ALIGNMENT_MASK: Cr0Flags = Cr0Flags{bits: 1 << 18,}

Enables automatic alignment checking.

NOT_WRITE_THROUGH: Cr0Flags = Cr0Flags{bits: 1 << 29,}

Ignored. Used to control write-back/write-through cache strategy on older CPUs.

CACHE_DISABLE: Cr0Flags = Cr0Flags{bits: 1 << 30,}

Disables internal caches (only for some cases).

PAGING: Cr0Flags = Cr0Flags{bits: 1 << 31,}

Enables page translation.

Returns an empty set of flags.

Returns the set containing all flags.

Returns the raw value of the flags currently stored.

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

Returns true if no flags are currently stored.

Returns true if all flags are currently set.

Returns true if there are flags common to both self and other.

Returns true all of the flags in other are contained within self.

Inserts the specified flags in-place.

Removes the specified flags in-place.

Toggles the specified flags in-place.

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Copy for Cr0Flags

impl PartialEq for Cr0Flags

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Cr0Flags

impl Clone for Cr0Flags

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialOrd for Cr0Flags

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for Cr0Flags

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl Hash for Cr0Flags

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for Cr0Flags

Formats the value using the given formatter. Read more

impl Binary for Cr0Flags

Formats the value using the given formatter.

impl Octal for Cr0Flags

Formats the value using the given formatter.

impl LowerHex for Cr0Flags

Formats the value using the given formatter.

impl UpperHex for Cr0Flags

Formats the value using the given formatter.

impl BitOr for Cr0Flags

The resulting type after applying the | operator.

Returns the union of the two sets of flags.

impl BitOrAssign for Cr0Flags

Adds the set of flags.

impl BitXor for Cr0Flags

The resulting type after applying the ^ operator.

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign for Cr0Flags

Toggles the set of flags.

impl BitAnd for Cr0Flags

The resulting type after applying the & operator.

Returns the intersection between the two sets of flags.

impl BitAndAssign for Cr0Flags

Disables all flags disabled in the set.

impl Sub for Cr0Flags

The resulting type after applying the - operator.

Returns the set difference of the two sets of flags.

impl SubAssign for Cr0Flags

Disables all flags enabled in the set.

impl Not for Cr0Flags

The resulting type after applying the ! operator.

Returns the complement of this set of flags.

impl Extend<Cr0Flags> for Cr0Flags

Extends a collection with the contents of an iterator. Read more

impl FromIterator<Cr0Flags> for Cr0Flags

Creates a value from an iterator. Read more

Auto Trait Implementations

impl Send for Cr0Flags

impl Sync for Cr0Flags