From: Aleksandar Markovic <aleksandar.markovic@rt-rk.com>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org
Subject: [Qemu-devel] [PULL v2 04/15] target/mips: Mark switch fallthroughs with interpretable comments
Date: Thu, 16 Aug 2018 19:48:56 +0200 [thread overview]
Message-ID: <1534441747-4197-5-git-send-email-aleksandar.markovic@rt-rk.com> (raw)
In-Reply-To: <1534441747-4197-1-git-send-email-aleksandar.markovic@rt-rk.com>
From: Aleksandar Markovic <amarkovic@wavecomp.com>
Mark switch fallthroughs with comments, in cases fallthroughs
are intentional.
The comments "/* fall through */" are interpreted by compilers and
other tools, and they will not issue warnings in such cases. For gcc,
the warning is turnend on by -Wimplicit-fallthrough. With this patch,
there will be no such warnings in target/mips directory. If such
warning appears in future, it should be checked if it is intentional,
and, if yes, marked with a comment similar to those from this patch.
The comment must be just before next "case", otherwise gcc won't
understand it.
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Signed-off-by: Stefan Markovic <smarkovic@wavecomp.com>
---
target/mips/translate.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/target/mips/translate.c b/target/mips/translate.c
index b944ea2..3dd66b6 100644
--- a/target/mips/translate.c
+++ b/target/mips/translate.c
@@ -14290,8 +14290,8 @@ static void decode_micromips32_opc(CPUMIPSState *env, DisasContext *ctx)
case SDP:
check_insn(ctx, ISA_MIPS3);
check_mips_64(ctx);
- /* Fallthrough */
#endif
+ /* fall through */
case LWP:
case SWP:
gen_ldst_pair(ctx, minor, rt, rs, SIMM(ctx->opcode, 0, 12));
@@ -14301,8 +14301,8 @@ static void decode_micromips32_opc(CPUMIPSState *env, DisasContext *ctx)
case SDM:
check_insn(ctx, ISA_MIPS3);
check_mips_64(ctx);
- /* Fallthrough */
#endif
+ /* fall through */
case LWM32:
case SWM32:
gen_ldst_multiple(ctx, minor, rt, rs, SIMM(ctx->opcode, 0, 12));
@@ -20087,6 +20087,7 @@ static void decode_opc(CPUMIPSState *env, DisasContext *ctx)
case OPC_MTHC1:
check_cp1_enabled(ctx);
check_insn(ctx, ISA_MIPS32R2);
+ /* fall through */
case OPC_MFC1:
case OPC_CFC1:
case OPC_MTC1:
--
2.7.4
next prev parent reply other threads:[~2018-08-16 17:51 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-16 17:48 [Qemu-devel] [PULL v2 00/15] MIPS queue for QEMU upstream, August 16, 2018 Aleksandar Markovic
2018-08-16 17:48 ` [Qemu-devel] [PULL v2 01/15] MAINTAINERS: Update target/mips maintainer's email addresses Aleksandar Markovic
2018-08-16 17:48 ` [Qemu-devel] [PULL v2 02/15] target/mips: Avoid case statements formulated by ranges - part 1 Aleksandar Markovic
2018-08-16 17:48 ` [Qemu-devel] [PULL v2 03/15] target/mips: Avoid case statements formulated by ranges - part 2 Aleksandar Markovic
2018-08-16 17:48 ` Aleksandar Markovic [this message]
2018-08-16 17:48 ` [Qemu-devel] [PULL v2 05/15] target/mips: Fix two instances of shadow variables Aleksandar Markovic
2018-08-16 17:48 ` [Qemu-devel] [PULL v2 06/15] target/mips: Update some CP0 registers bit definitions Aleksandar Markovic
2018-08-16 17:48 ` [Qemu-devel] [PULL v2 07/15] target/mips: Add CP0 BadInstrX register Aleksandar Markovic
2018-08-16 17:49 ` [Qemu-devel] [PULL v2 08/15] target/mips: Implement CP0 Config1.WR bit functionality Aleksandar Markovic
2018-08-16 17:49 ` [Qemu-devel] [PULL v2 09/15] target/mips: Don't update BadVAddr register in Debug Mode Aleksandar Markovic
2018-08-16 17:49 ` [Qemu-devel] [PULL v2 10/15] target/mips: Check ELPA flag only in some cases of MFHC0 and MTHC0 Aleksandar Markovic
2018-08-16 17:49 ` [Qemu-devel] [PULL v2 11/15] elf: Remove duplicate preprocessor constant definition Aleksandar Markovic
2018-08-16 17:49 ` [Qemu-devel] [PULL v2 12/15] elf: Add ELF flags for MIPS machine variants Aleksandar Markovic
2018-08-16 17:49 ` [Qemu-devel] [PULL v2 13/15] linux-user: Update MIPS syscall numbers up to kernel 4.18 headers Aleksandar Markovic
2018-08-16 17:49 ` [Qemu-devel] [PULL v2 14/15] linux-user: Add preprocessor availability control to some syscalls Aleksandar Markovic
2018-08-16 17:49 ` [Qemu-devel] [PULL v2 15/15] qemu-doc: Amend MIPS-related items Aleksandar Markovic
2018-08-17 8:45 ` [Qemu-devel] [PULL v2 00/15] MIPS queue for QEMU upstream, August 16, 2018 Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1534441747-4197-5-git-send-email-aleksandar.markovic@rt-rk.com \
--to=aleksandar.markovic@rt-rk.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).