I'm trying to create aliases for registers using Yasm macroses.
I have a bunch of macroses like:
#xdefine W0 ymm0
...
#xdefine W7 ymm7
Then I rotate W0-W7 macroses, so I can't be sure about W* <-> ymm* at any given point of my code.
Question
Is there are any way to write some kind of macros which will modify W* macros (replace first char with x)?
XMM(W*) -> xmm*
Known solution
#xdefine W0 mm0
...
#xdefine W7 mm7
%define X(reg) x %+ reg
%define Y(reg) y %+ reg
This would work, but not going to look nice in my code, because I use ymm* registers a lot and corresponding xmm* registers in just 2 places.
Thanks.