문제

Are x64 registers interchangable, in the sense that any instruction that works with one combination of them will work with any other? Is there performance difference or any other considerations that make them different from each other, apart from the names?

도움이 되었습니까?

해결책 2

There are some restrictions, and some differences in encoding.

rsp (and esp, etc) may not be used as an index register. There are many instructions which take arguments or return results in particular registers - for example, the variable shift instructions only take their argument in cl.

The arithmetic instructions (and test) have short encodings for rax plus a 32-bit immediate:

8:  48 05 ff ff 00 00       add    $0xffff,%rax
e:  48 81 c3 ff ff 00 00    add    $0xffff,%rbx

I'm sure there are some other bits and pieces I can't bring to mind at the moment: consult the architecture manual for the gory details.

다른 팁

No. Although most x86 as well as x86_64 instructions can use any registers as GPRs, some instructions only work with a specific register or set of registers such as movabs, mul, div...

For more detailed information regarding implicit register usage read here

See also Are the data registers EAX, EBX, ECX and EDX interchangeable

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top