]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
doc: global data pointer on x86, x86_64
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Thu, 15 Oct 2020 05:40:57 +0000 (07:40 +0200)
committerHeinrich Schuchardt <xypron.glpk@gmx.de>
Tue, 15 Dec 2020 08:31:26 +0000 (09:31 +0100)
On x86 the global data pointer is stored in register fs.
On x86_64 no register is used for the global data pointer.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
doc/develop/global_data.rst

index 9e7c8a24da093a91a0f089488ff32ab9318ad679..230ebcd860449a7976433a41f5cee4ed626f420f 100644 (file)
@@ -33,8 +33,10 @@ On most architectures the global data pointer is stored in a register.
 +------------+----------+
 | SuperH     | r13      |
 +------------+----------+
+| x86 32bit  | fs       |
++------------+----------+
 
-The sandbox, x86, and Xtensa are notable exceptions.
+The sandbox, x86_64, and Xtensa are notable exceptions.
 
 Clang for ARM does not support assigning a global register. When using Clang
 gd is defined as an inline function using assembly code. This adds a few bytes