X86

提供: Wikinote
2009年4月23日 (木) 22:03時点におけるHagio (トーク | 投稿記録)による版 (新しいページ: ' == レジスタ == === 汎用レジスタ === これらは 32 ビットである。'E' を省いたものが下位 16 ビットを示す。 また、A - D までは、?L で...')

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

レジスタ

汎用レジスタ

これらは 32 ビットである。'E' を省いたものが下位 16 ビットを示す。 また、A - D までは、?L で下位 0-7 ビット、?H で 下位 8-15 ビットを示す。

  • EAX — Accumulator for operands and results data
  • EBX — Pointer to data in the DS segment
  • ECX — Counter for string and loop operations
  • EDX — I/O pointer
  • ESI — Pointer to data in the segment pointed to by the DS register; source pointer for string operations
  • EDI — Pointer to data (or destination) in the segment pointed to by the ES register; destination pointer for string operations
  • ESP — Stack pointer (in the SS segment)
  • EBP — Pointer to data on the stack (in the SS segment)

64 ビットモード

64 ビットモードでは、以下の 16 個の汎用レジスタが利用できる。 これらはそれぞれ、32 ビットでアクセスすることも可能だ。

64 ビット
RAX, RBX, RCX, RDX, RDI, RSI, RBP, RSP, R8 - R15
32 ビット
EAX, EBX, ECX, EDX, EDI, ESI, EBP, ESP, R8D - R15D