ppc: support register names in macros ppc-reg-macro
authorDmitry Selyutin <ghostmansd@gmail.com>
Tue, 12 Jul 2022 09:24:54 +0000 (12:24 +0300)
committerDmitry Selyutin <ghostmansd@gmail.com>
Tue, 12 Jul 2022 13:56:29 +0000 (16:56 +0300)
commit31701d310797478c8652dc638a6ca66b08f34f7b
treeeccae43f5096e5dbbaf817c96ab29838f25bdc0d
parent98f49277b5d9c8bf16717b898f79cef11b2e47a6
ppc: support register names in macros

This patch is a follow-up of discussion:

https://sourceware.org/pipermail/binutils/2022-July/121719.html

Form now on, PPC assembly becomes capable of compiling such code:

    .set VREG, %r0
    .set REG, VREG
    extsw REG, 2
    extsw %r1, 1

The custom register_name() code path, as well as checks for CRs, are
deprecated; from now on, we use md_operand() routine everywhere.

Whilst we're here, let's also reuse register lookup for CFI.
gas/config/tc-ppc.c
gas/config/tc-ppc.h