assemblyx86cpu-architecturecpu-registersprogram-counter

Why isn't the instruction pointer a normal register usable with MOV or ADD?


The Wikipedia article about x86 assembly says that "the IP register cannot be accessed by the programmer directly."

Directly means with instructions like mov and add, the same way we can read and write EAX.

Why not? What is the reason behind this? What are the technical restrictions?


There are special instructions like jmp to set it, and call to push the old value before setting a new one. (And in x86-64, read with LEA using a RIP-relative addressing mode.) See Reading program counter directly for details.


Solution

  • You can't access it directly because there's no legitimate use case. Having any arbitrary instruction change eip would make branch prediction very difficult, and would probably open up a whole host of security issues.

    You can edit eip using jmp, call or ret. You just can't directly read from or write to eip using normal operations

    Setting eip to a register is as simple as jmp eax. You can also do push eax; ret, which pushes the value of eax to the stack and then returns (i.e. pops and jumps). The third option is call eax which does a call to the address in eax.

    Reading can be done like this:

    call get_eip
      get_eip:
    pop eax ; eax now contains the address of this instruction