]> Cypherpunks.ru repositories - gostls13.git/commit
cmd/internal/obj/riscv: improve handling of invalid assembly
authorJoel Sing <joel@sing.id.au>
Sun, 27 Aug 2023 16:08:56 +0000 (02:08 +1000)
committerJoel Sing <joel@sing.id.au>
Thu, 9 Nov 2023 13:39:57 +0000 (13:39 +0000)
commite816eb50140841c524fd07ecb4eaa078954eb47c
treecf153a885c4ab014c38f904a60f50f47ad450890
parent7a1fce8751b04f66f758c7aac0efd5937bc670dc
cmd/internal/obj/riscv: improve handling of invalid assembly

Currently, instruction validation failure will result in a panic during
encoding. Furthermore, the errors generated do not include the PC or
file/line information that is normally present.

Fix this by:

- Tracking and printing the *obj.Prog associated with the instruction,
  including the assembly instruction/opcode if it differs. This provides
  the standard PC and file/line prefix, which is also expected by assembly
  error end-to-end tests.

- Not proceeding with assembly if errors exist - with the current design,
  errors are identified during validation, which is run via preprocess.
  Attempts to encode invalid instructions will intentionally panic.

Add some additional riscv64 encoding errors, now that we can actually do so.

Change-Id: I64a7b83680c4d12aebdc96c67f9df625b5ef90d3
Reviewed-on: https://go-review.googlesource.com/c/go/+/523459
Run-TryBot: Joel Sing <joel@sing.id.au>
Reviewed-by: Mark Ryan <markdryan@rivosinc.com>
Reviewed-by: Heschi Kreinick <heschi@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: M Zhuo <mzh@golangcn.org>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Reviewed-by: M Zhuo <mzh@golangcn.org>
src/cmd/asm/internal/asm/testdata/riscv64error.s
src/cmd/internal/obj/riscv/obj.go