From b6627f53bf459334446bb1e2c51728a764c8651d Mon Sep 17 00:00:00 2001 From: johannst Date: Fri, 14 Mar 2025 01:19:37 +0000 Subject: deploy: cb9e06f3a5bd9d42494e6abdaf61fb3fe19d4ea4 --- arch/x86_64.html | 29 ++++++++++++++++++++++++----- 1 file changed, 24 insertions(+), 5 deletions(-) (limited to 'arch/x86_64.html') diff --git a/arch/x86_64.html b/arch/x86_64.html index b738a36..6f0e435 100644 --- a/arch/x86_64.html +++ b/arch/x86_64.html @@ -24,9 +24,9 @@ - - - + + + @@ -213,6 +213,9 @@ popfd // pop flags (4byte) from stack
rdmsr     // Read MSR register, effectively does EDX:EAX <- MSR[ECX]
 wrmsr     // Write MSR register, effectively does MSR[ECX] <- EDX:EAX
 
+
+

See guest64-msr.S as an example.

+

Size directives

Explicitly specify size of the operation.

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.

implemented TSC ticks with a constant frequency.

grep constant_tsc /proc/cpuinfo
 
+

Cpu & hw features - 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.

SysV x86_64 ABI

Passing arguments to functions

    @@ -648,8 +658,8 @@ itself.

    # 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.

    +

    References