* [Qemu-devel] [PATCH] MIPS: Remove obsolete comment about OPC_JALX
@ 2012-06-08 1:06 Maciej W. Rozycki
2012-06-12 14:59 ` Richard Henderson
0 siblings, 1 reply; 2+ messages in thread
From: Maciej W. Rozycki @ 2012-06-08 1:06 UTC (permalink / raw)
To: qemu-devel; +Cc: Maciej W. Rozycki, Aurelien Jarno
A while ago I made a change to make MIPS16 code use the OPC_JALS opcode
"pinched" from microMIPS support as well as the artificial OPC_JALXS
opcode I made up on that occasion so that the fixed 16-bit delay slot size
of MIPS16 instructions is handled uniformly across code, just as the
microMIPS delay slot size constraints are. As a result of this change
OPC_JALX is never used for MIPS16 emulation anymore, it's now only ever
used in the standard MIPS and microMIPS modes.
Someone was kind enough to push that change upstream on my behalf, but
somehow the piece to update the comment accordingly was missed and not
propagated. Here's an update to remove the obsolete and now misleading
comment.
Signed-off-by: Maciej W. Rozycki <macro@codesourcery.com>
---
Mostly obvious, please apply.
Maciej
qemu-mips16-jal.diff
Index: qemu-git-trunk/target-mips/translate.c
===================================================================
--- qemu-git-trunk.orig/target-mips/translate.c 2012-06-04 02:38:47.000000000 +0100
+++ qemu-git-trunk/target-mips/translate.c 2012-06-04 03:06:38.975449423 +0100
@@ -69,7 +69,7 @@ enum {
OPC_BLEZL = (0x16 << 26),
OPC_BGTZ = (0x07 << 26),
OPC_BGTZL = (0x17 << 26),
- OPC_JALX = (0x1D << 26), /* MIPS 16 only */
+ OPC_JALX = (0x1D << 26),
OPC_JALXS = OPC_JALX | 0x5,
/* Load and stores */
OPC_LDL = (0x1A << 26),
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-06-12 14:59 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-08 1:06 [Qemu-devel] [PATCH] MIPS: Remove obsolete comment about OPC_JALX Maciej W. Rozycki
2012-06-12 14:59 ` Richard Henderson
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.