From: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
To: linux-sparse@vger.kernel.org
Cc: Christopher Li <sparse@chrisli.org>,
Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
Subject: [PATCH 8/8] cleanup kill_instruction()
Date: Thu, 17 Nov 2016 15:35:07 +0100 [thread overview]
Message-ID: <20161117143507.3598-9-luc.vanoostenryck@gmail.com> (raw)
In-Reply-To: <20161117143507.3598-1-luc.vanoostenryck@gmail.com>
No functional changes:
- factorize out the '->bb = NULL' and '|= REPEAT_CSE'.
- fall through the switch cases for ternary/bunary/unary ops.
Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
---
simplify.c | 46 ++++++++++++++++++++--------------------------
1 file changed, 20 insertions(+), 26 deletions(-)
diff --git a/simplify.c b/simplify.c
index afbbb7b6..fc69def1 100644
--- a/simplify.c
+++ b/simplify.c
@@ -188,12 +188,14 @@ void kill_instruction(struct instruction *insn)
return;
switch (insn->opcode) {
+ case OP_SEL:
+ case OP_RANGE:
+ kill_use(&insn->src3);
+ /* fall through */
+
case OP_BINARY ... OP_BINCMP_END:
- insn->bb = NULL;
- kill_use(&insn->src1);
kill_use(&insn->src2);
- repeat_phase |= REPEAT_CSE;
- return;
+ /* fall through */
case OP_CAST:
case OP_SCAST:
@@ -201,42 +203,34 @@ void kill_instruction(struct instruction *insn)
case OP_PTRCAST:
case OP_SETVAL:
case OP_NOT: case OP_NEG:
- insn->bb = NULL;
kill_use(&insn->src1);
- repeat_phase |= REPEAT_CSE;
- return;
+ break;
case OP_PHI:
clear_phi(insn);
- insn->bb = NULL;
- repeat_phase |= REPEAT_CSE;
- return;
+ break;
case OP_SYMADDR:
- insn->bb = NULL;
- repeat_phase |= REPEAT_CSE | REPEAT_SYMBOL_CLEANUP;
- return;
+ repeat_phase |= REPEAT_SYMBOL_CLEANUP;
+ break;
- case OP_SEL:
- case OP_RANGE:
- insn->bb = NULL;
- repeat_phase |= REPEAT_CSE;
- kill_use(&insn->src1);
- kill_use(&insn->src2);
- kill_use(&insn->src3);
- return;
case OP_BR:
+ if (!insn->cond)
+ break;
+ /* fall through */
+
case OP_COMPUTEDGOTO:
- insn->bb = NULL;
- repeat_phase |= REPEAT_CSE;
- if (insn->cond)
- kill_use(&insn->cond);
- return;
+ kill_use(&insn->cond);
+ break;
case OP_ENTRY:
/* ignore */
return;
}
+
+ insn->bb = NULL;
+ repeat_phase |= REPEAT_CSE;
+ return;
}
/*
--
2.10.2
prev parent reply other threads:[~2016-11-17 17:10 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-17 14:34 [PATCH 0/8] fix uses of killed instructions Luc Van Oostenryck
2016-11-17 14:35 ` [PATCH 1/8] kill uses of replaced instructions Luc Van Oostenryck
2016-11-17 14:35 ` [PATCH 2/8] fix killing OP_SETVAL instructions Luc Van Oostenryck
2016-11-17 14:35 ` [PATCH 3/8] fix killing OP_PHI instructions Luc Van Oostenryck
2016-11-17 14:35 ` [PATCH 4/8] fix killing OP_CAST & friends Luc Van Oostenryck
2016-11-17 14:35 ` [PATCH 5/8] fix killing OP_SELECT Luc Van Oostenryck
2016-11-17 14:35 ` [PATCH 6/8] fix killing OP_COMPUTEDGOTO Luc Van Oostenryck
2016-11-17 14:35 ` [PATCH 7/8] explicitely ignore killing OP_ENTRY Luc Van Oostenryck
2016-11-17 14:35 ` Luc Van Oostenryck [this message]
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=20161117143507.3598-9-luc.vanoostenryck@gmail.com \
--to=luc.vanoostenryck@gmail.com \
--cc=linux-sparse@vger.kernel.org \
--cc=sparse@chrisli.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).