Open egonelbre opened 10 months ago
Thanks for the issue. Do you think it would be sufficient to just append this to the instruction set (probably with the opcodesextra
mechanism)? Or is there some reason we'd need to handle these pseudo instructions differently?
PCALIGN
is handled by the architecture-independent part of the Go assembler:
https://github.com/golang/go/blob/go1.21.6/src/cmd/asm/internal/asm/asm.go#L336
There are other pseudo-ops defined here, for example FUNCDATA
and PCDATA
mentioned in #144.
At the moment I can't think of a reason not to just treat this as another ISA instruction. Of course it's still a goal for avo
to support ARM #189, in which case these pseudo-ops would need to be pulled out into an architecture-independent set of instructions. But we can cross that bridge when we come to it.
Oh. I think I was thrown off by the fact that the PCALIGN
instruction has existed in the assembler for a long time. But as you've said there wasn't backend support for it in amd64
until recently golang/go#56474.
PR #420 adds it but is failing assembler tests on Go 1.20 and 1.21 for this reason.
This is another use case for avo
tracking the Go version required for each instruction #84.
You can use go1.22rc1 for testing that. As for the implementation, I don't have that much experience with avo to have an opinion on how to implement it.
For now I did this in my own code:
Instruction(&ir.Instruction{
Opcode: "PCALIGN",
Operands: []Op{Imm(1024)},
})
You can use go1.22rc1 for testing that.
For sure. The problem is the test I have that validates the avo instruction database by assembling a generated file with one example of every instruction form. This test runs in CI with the installed Go version, so at the moment with Go 1.20 and 1.21. Therefore the tests fail when I add the PCALIGN instruction.
The fix would be to either install a pinned Go version for the purpose of that test. Or alternatively, implement some form of #84 and store the version required for each instruction, which would then allow me to limit which instructions appear in the assembler test file.
Go will soon support PCALIGN pseudo instruction for amd64.
https://tip.golang.org/doc/asm#special-instructions