Giter Site home page Giter Site logo

PCALIGN seems to be missing about avo HOT 5 OPEN

egonelbre avatar egonelbre commented on August 17, 2024
PCALIGN seems to be missing

from avo.

Comments (5)

mmcloughlin avatar mmcloughlin commented on August 17, 2024 1

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.

from avo.

mmcloughlin avatar mmcloughlin commented on August 17, 2024

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?

from avo.

mmcloughlin avatar mmcloughlin commented on August 17, 2024

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.

from avo.

mmcloughlin avatar mmcloughlin commented on August 17, 2024

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.

from avo.

egonelbre avatar egonelbre commented on August 17, 2024

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)},
})

from avo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.