From b6627f53bf459334446bb1e2c51728a764c8651d Mon Sep 17 00:00:00 2001
From: johannst See guest64-msr.S as an example. Explicitly specify size of the operation.
+rdmsr // Read MSR register, effectively does EDX:EAX <- MSR[ECX]
wrmsr // Write MSR register, effectively does MSR[ECX] <- EDX:EAX
+
Size directives
mov byte ptr [rax], 0xff // save 1 byte(s) at [rax]
@@ -298,6 +301,13 @@ core changes frequency. This is the architectural behavior moving forward.
grep constant_tsc /proc/cpuinfo
+cpuid
cpuid // in: eax leaf; ecx sub-leaf
+ // out: eax, ebx, ecx, edx (interpreting depends on leaf)
+
+This instruction is used to query for availability of certain +instructions or hardware details like cache sizes and son on.
+An example how to read cpuid leafs is show in cpuid.c.
# Segment Selector (cs, ds, es, ss, fs, gs).
[15:3] I Descriptor Index
- [2:1] TI Table Indicator (0=GTD | 1=LDT)
- [0] RPL Requested Privilege Level
+ [2] TI Table Indicator (0=GTD | 1=LDT)
+ [1:0] RPL Requested Privilege Level
# Segment Descriptor (2 x 4 byte words).
@@ -675,6 +685,15 @@ itself.
[47:16] Base address of GDT table.
[15:0] Length of GDT table.
++In 64-bit mode the
+{cs, ds, es, ss}
segment register have no +effect, segmentation is effectively disabled. The{gs, fs}
segment +register however can still be used for segmented memory access in +64-bit with paging enabled. Segmentation takes place before VA -> PA +address translation.The example in seg.c shows how to set the
+gs
base +address and to relative accesses.