arm64/arm64asm: adjust the disassembly codes of FMOVQ/FLDP/FSTP

Currently FMOVQ, FLDP and FSTP are objdumped as MOVD, LDP and STP, and the
floating point register arguments of these instructions are objdumped as
"V" register format. This CL makes the disassembly formats of these instructions
consistent with their assembly formats.

Besides Go has no LDUR and VLDUR instructions, but the disassembler objdumps
MOVD as LDUR and VLDUR in some cases, this CL changes the disassembly format
of the arm64 LDUR instruction as MOVD, MOVW or FMOV{B,H,S,D,Q}.

Change-Id: I0f964db422c9c42929e639528ac2c0c4adcfee37
Reviewed-on: https://go-review.googlesource.com/c/arch/+/300729
Reviewed-by: eric fang <eric.fang@arm.com>
Reviewed-by: Cherry Zhang <cherryyz@google.com>
Trust: eric fang <eric.fang@arm.com>
Run-TryBot: Cherry Zhang <cherryyz@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
2 files changed
tree: eb22bfe63cdf4ddae12d0cf5ba486668542ff7fd
  1. arm/
  2. arm64/
  3. ppc64/
  4. x86/
  5. AUTHORS
  6. codereview.cfg
  7. CONTRIBUTING.md
  8. CONTRIBUTORS
  9. go.mod
  10. go.sum
  11. LICENSE
  12. PATENTS
  13. README.md
README.md

arch

Go Reference

This repository holds machine architecture information used by the Go toolchain. The parts needed in the main Go repository are copied in.

Report Issues / Send Patches

This repository uses Gerrit for code changes. To learn how to submit changes to this repository, see https://golang.org/doc/contribute.html.

The main issue tracker for the arch repository is located at https://github.com/golang/go/issues. Prefix your issue with “x/arch:” in the subject line, so it is easy to find.