I'm taking a class that deals with assembly. A few friends and I are debating what the difference between %rdi
and (%rdi)
in the following contexts:
Let's say RDI holds the character value 'w'
in ASCII form. To the best of my knowledge, if we do %rdi, we will be dealing with the value 'w'
itself, whereas if we do (%rdi)
, we will be dealing with the value pointed to by 'w'
(or more specifically, the value at the address numbered the ASCII code of 'w'
, i.e. absolute address 0x0000000000000077
).
Similarly, if RDI holds the value 0x1007bf
, I believe %rdi
gives us the numerical value 0x1007bf
itself, while (%rdi)
gives us the value at the address 0x1007bf
...
What is the correct interpretation?
Note: all of these are in the context of the mov and cmp functions
You're essentially correct, that
%rdi
is the register direct addressing mode, while(%rdi)
is register indirect, though let's note two things:Source vs. Target: Both forms,
%rdi
and(%rdi)
can appear in the source or target position (or source/target), so that means read vs. write (vs. read followed by write). (So what you've said is accurate for reading.)%rdi
alone specifies a 64-bit operand/operation because that is a 64-bit register. Whereas(%rdi)
specifies an effective address but it does not specify an operand size (it specifies using the 64-bit register for dereference, e.g. contrast with(%edi)
which says to use 32-bit register for dereferencing) but the size of the item located at that memory address is unspecified by this alone and we need to know the larger context (the opcode or the other operand) to understand the size of the memory access, whether byte, word, dword, or qword.