4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Linux のブートプロセスに関係するレジスタ

Posted at

概要

Linux のブートプロセスに関係するレジスタのみ記載(x86_64)

一覧

汎用レジスタ

RAX

rax.png

RDX

rbx.png

RCX

rcx.png

RDX

rdx.png

RSI

rsi.png

RDI

rdi.png

R8 - R15

r8-15.png

ベースポインタ

rbp.png

スタックポインタ

rsp.png

インストラクションポインタ

rip.png

コントロールレジスタ

cr.png

プログラムステータスレジスタ / フラグレジスタ

flags.png

セグメントレジスタ / セレクタレジスタ

seg.png

メモリ管理レジスタ

tr.png

MSR(Model Specific Register)

一部のレジスタはアドレス番号で参照できる。
たとえば Extended Feature Enable Register(EFER)は 0xc0000080
CentOS7 では msr-tools を入れると MSR の内容を読める。

$ sudo yum install msr-tools -y

$ sudo /usr/sbin/rdmsr -x0 0x10 # TSC
0000005486b2095a
4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?