Hi!
On Tue, Mar 23, 2021 at 04:11:10AM +1000, Nicholas Piggin wrote:
The problem in this file is we generate 3 different tlbie and tlbiel
instructions with the same mnemonic corresponding to different ISA
versions.
This might actually be the one good place to use .machine to make sure
the assembler generates the right thing.
Yes, but then hide that in some macro.
(And "the one good place"? I protest!)
I'm not entirely sure it is
foolproof because some of the times the instruction variant is inferred
by the number of arguments it has yet arguments can be implicit. PPC_
define would be exactly explicit.
The variants with fewer operands have those coded as 0 in the
instruction. All of this is backwards compatible.
But if it can be made reasonably robust with .machine then I'd be okay
with that too.
Since you should do a macro (or inline) for it anyway, you could just
do .long, all the nastiness is in one place anyway then, it won't make
much difference what you do. It should be documented there as well :-)
Segher