aboutsummaryrefslogtreecommitdiff
path: root/src/bits64/dtables.rs
diff options
context:
space:
mode:
authorGravatar John Ericson <Ericson2314@Yahoo.com> 2016-06-29 15:49:33 -0700
committerGravatar John Ericson <Ericson2314@Yahoo.com> 2016-06-29 15:49:33 -0700
commitfffa3ae71951c3b8f4b2a441764a44ab8e55416e (patch)
tree9a9897b863c845d7679bebeb3c46a774ecb5e33c /src/bits64/dtables.rs
parentaaf26598addf1ef47fd8422d688965f89302d21b (diff)
downloadrust-x86-fffa3ae71951c3b8f4b2a441764a44ab8e55416e.tar.gz
rust-x86-fffa3ae71951c3b8f4b2a441764a44ab8e55416e.tar.zst
rust-x86-fffa3ae71951c3b8f4b2a441764a44ab8e55416e.zip
Crudely throw everything together
Diffstat (limited to 'src/bits64/dtables.rs')
-rw-r--r--src/bits64/dtables.rs27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/bits64/dtables.rs b/src/bits64/dtables.rs
new file mode 100644
index 0000000..d2e3413
--- /dev/null
+++ b/src/bits64/dtables.rs
@@ -0,0 +1,27 @@
+//! Functions and data-structures to load descriptor tables.
+
+/// A struct describing a pointer to a descriptor table (GDT / IDT).
+/// This is in a format suitable for giving to 'lgdt' or 'lidt'.
+#[derive(Debug)]
+#[repr(C, packed)]
+pub struct DescriptorTablePointer {
+ /// Size of the DT.
+ pub limit: u16,
+ /// Pointer to the memory region containing the DT.
+ pub base: u64,
+}
+
+/// Load GDT table.
+pub unsafe fn lgdt(gdt: &DescriptorTablePointer) {
+ asm!("lgdt ($0)" :: "r" (gdt) : "memory");
+}
+
+/// Load LDT table.
+pub unsafe fn lldt(ldt: &DescriptorTablePointer) {
+ asm!("lldt ($0)" :: "r" (ldt) : "memory");
+}
+
+/// Load IDT table.
+pub unsafe fn lidt(idt: &DescriptorTablePointer) {
+ asm!("lidt ($0)" :: "r" (idt) : "memory");
+}