Okay, so I will admit that I did have some gaps in my understanding of local and global register variables. This seems to be a GCC-specific extension and is not supported by the C language at all.
However.
I think it's not as straightforward as saying the compiler is **forced** to (1/n)
However.
I think it's not as straightforward as saying the compiler is **forced** to (1/n)
Comments
https://godbolt.org/z/ofedasGTe
I'm using a local register variable p and asking the compiler to store it in rcx. (2/n)
But then, if I assume that p was in rcx all along and try to use it (mov %rdx, %rcx), it gets garbage (4/n)
But, if you use a call-clobbered register such as rdi etc., you _will_ lose the variable value on a function call. https://godbolt.org/z/oq5cjPd34
GCC very kindly provides a warning here (5/n)