-
Notifications
You must be signed in to change notification settings - Fork 18.4k
cmd/internal/obj/riscv: implement Zicond assembly #75408
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
This PR (HEAD: c4006c0) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/702677. Important tips:
|
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/702677. |
Message from Gopher Robot: Patch Set 1: Congratulations on opening your first change. Thank you for your contribution! Next steps: Most changes in the Go project go through a few rounds of revision. This can be During May-July and Nov-Jan the Go project is in a code freeze, during which Please don’t reply on this GitHub thread. Visit golang.org/cl/702677. |
Message from Mark Ryan: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/702677. |
Message from Meng Zhuo: Patch Set 2: (5 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/702677. |
…riscv64 This patch implement assembler and disassembler support for the Zicond extension: CZEROEQZ and CZERONEZ. Update opcode names and encodings in obj/riscv, enable rv_zicond in generated tables, and add basic test coverage in riscv64.s. Follow-up to CL 631576 Update golang#75350
c4006c0
to
cd280d7
Compare
This PR (HEAD: cd280d7) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/702677. Important tips:
|
This PR (HEAD: 0ca94bf) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/702677. Important tips:
|
0ca94bf
to
328a300
Compare
This PR (HEAD: 328a300) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/702677. Important tips:
|
328a300
to
cc8f39c
Compare
This PR (HEAD: cc8f39c) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/702677. Important tips:
|
Message from Xueqi Luo: Patch Set 7: (8 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/702677. |
This patch implement assembler for the Zicond extension: CZEROEQZ and CZERONEZ.
Follow-up to CL 631576
Updates #75350