pub struct CS;
Expand description

Code Segment

While most fields in the Code-Segment Descriptor are unused in 64-bit long mode, some of them must be set to a specific value. The EXECUTABLE, USER_SEGMENT, and LONG_MODE bits must be set, while the DEFAULT_SIZE bit must be unset.

The DPL_RING_3 field can be used to change privilege level. The PRESENT bit can be used to make a segment present or not present.

All other fields (like the segment base and limit) are ignored by the processor and setting them has no effect.

Trait Implementations

Formats the value using the given formatter. Read more

Note this is special since we cannot directly move to CS; x86 requires the instruction pointer and CS to be set at the same time. To do this, we push the new segment selector and return value onto the stack and use a “far return” (retfq) to reload CS and continue at the end of our function.

Note we cannot use a “far call” (lcall) or “far jmp” (ljmp) to do this because then we would only be able to jump to 32-bit instruction pointers. Only Intel implements support for 64-bit far calls/jumps in long-mode, AMD does not.

Returns the current value of the segment register.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.