[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v5 00/20] disas: nanoMIPS: Clean up several issues
From: |
Aleksandar Markovic |
Subject: |
[Qemu-devel] [PATCH v5 00/20] disas: nanoMIPS: Clean up several issues |
Date: |
Wed, 26 Dec 2018 12:06:08 +0100 |
From: Aleksandar Markovic <address@hidden>
Clean up several misc issues in nanoMIPS disassembler. There are
more issues to be cleaned, and this is meant to be just the first
phase. Complete cleanup should happen over the course of next
few months.
All these changes should not and do not affect any functionality.
v4->v5:
- renamed patch "Fix comments for 48-bit instructions" to
"Clean up handling of 48-bit instructions"
- added patch "Clean up handling of 16-bit logic instructions"
- added eight patches on improving gpr decoders
- minor addition to patch "Fix order of more invocations"
- minor cleanups of previous commit messages
v3->v4:
- added patch "Name more functions in a more descriptive way"
- added patch "Fix order of more invocations"
- added patch "Fix comments for 48-bit instructions"
- minor cleanups of previous commit messages
v2->v3:
- added three patches that fix function misnomers.
- minor changes in commit messages.
v1->v2:
- patch 5 was somehow lost in v1, now should be fine.
Aleksandar Markovic (20):
disas: nanoMIPS: Fix preamble text in nanomips.* files
disas: nanoMIPS: Remove functions that are not used
disas: nanoMIPS: Fix a function misnomer
disas: nanoMIPS: Fix order of some invocations
disas: nanoMIPS: Name some functions in a more descriptive way
disas: nanoMIPS: Fix an FP-related misnomer 1
disas: nanoMIPS: Fix an FP-related misnomer 2
disas: nanoMIPS: Fix an FP-related misnomer 3
disas: nanoMIPS: Name more functions in a more descriptive way
disas: nanoMIPS: Fix order of more invocations
disas: nanoMIPS: Clean up handling of 48-bit instructions
disas: nanoMIPS: Clean up handling of 16-bit logic instructions
disas: nanoMIPS: Rename the decoder of 'gpr3' gpr encoding type
disas: nanoMIPS: Comment the decoder of 'gpr3' gpr encoding type
disas: nanoMIPS: Rename the decoder of 'gpr3.src.store' gpr encoding
type
disas: nanoMIPS: Comment the decoder of 'gpr3.src.store' gpr encoding
type
disas: nanoMIPS: Rename the decoder of 'gpr4' gpr encoding type
disas: nanoMIPS: Comment the decoder of 'gpr4' gpr encoding type
disas: nanoMIPS: Rename the decoder of 'gpr4.zero' gpr encoding type
disas: nanoMIPS: Comment the decoder of 'gpr4.zero' gpr encoding type
disas/nanomips.cpp | 2156 +++++++++++++++++++++++++---------------------------
disas/nanomips.h | 108 +--
2 files changed, 1079 insertions(+), 1185 deletions(-)
--
2.7.4
- [Qemu-devel] [PATCH v5 00/20] disas: nanoMIPS: Clean up several issues,
Aleksandar Markovic <=
- [Qemu-devel] [PATCH v5 01/20] disas: nanoMIPS: Fix preamble text in nanomips.* files, Aleksandar Markovic, 2018/12/26
- [Qemu-devel] [PATCH v5 09/20] disas: nanoMIPS: Name more functions in a more descriptive way, Aleksandar Markovic, 2018/12/26
- [Qemu-devel] [PATCH v5 07/20] disas: nanoMIPS: Fix an FP-related misnomer 2, Aleksandar Markovic, 2018/12/26
- [Qemu-devel] [PATCH v5 12/20] disas: nanoMIPS: Clean up handling of 16-bit logic instructions, Aleksandar Markovic, 2018/12/26
- [Qemu-devel] [PATCH v5 05/20] disas: nanoMIPS: Name some functions in a more descriptive way, Aleksandar Markovic, 2018/12/26
- [Qemu-devel] [PATCH v5 11/20] disas: nanoMIPS: Clean up handling of 48-bit instructions, Aleksandar Markovic, 2018/12/26
- [Qemu-devel] [PATCH v5 06/20] disas: nanoMIPS: Fix an FP-related misnomer 1, Aleksandar Markovic, 2018/12/26
- [Qemu-devel] [PATCH v5 08/20] disas: nanoMIPS: Fix an FP-related misnomer 3, Aleksandar Markovic, 2018/12/26