In fact, now that I think about it the compiler CANNOT use whatever register it pleases. x86 has multiple instructions that use certain registers implicitly (MUL/DIV for RAX/RDX, LOOP for RCX, and so forth). The compiler would generate complete garbage.

Comments