* [PATCH] fix casting to bool
@ 2013-05-16 20:56 Xi Wang
2013-05-19 7:47 ` Pekka Enberg
0 siblings, 1 reply; 2+ messages in thread
From: Xi Wang @ 2013-05-16 20:56 UTC (permalink / raw)
To: linux-sparse; +Cc: sparse, Xi Wang
Consider the following function.
static _Bool foo(int x) { return x; }
Currently sparse emits:
scast.1 %r2 <- (32) %arg1
ret.1 %r2
This is incorrect since bool requires a zero test.
setne.32 %r2 <- %arg1, $0
ret.1 %r2
This patch adds zero testing for bool in cast_to().
Signed-off-by: Xi Wang <xi.wang@gmail.com>
---
evaluate.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/evaluate.c b/evaluate.c
index d9c767f..a090028 100644
--- a/evaluate.c
+++ b/evaluate.c
@@ -272,6 +272,18 @@ static struct expression * cast_to(struct expression *old, struct symbol *type)
if (old->ctype != &null_ctype && is_same_type(old, type))
return old;
+ /* bool requires a zero test */
+ if (is_bool_type(type)) {
+ expr = alloc_expression(old->pos, EXPR_COMPARE);
+ expr->op = SPECIAL_NOTEQUAL;
+ expr->ctype = type;
+ expr->left = old;
+ expr->right = alloc_expression(old->pos, EXPR_VALUE);
+ expr->right->ctype = old->ctype;
+ expr->right->value = 0;
+ return expr;
+ }
+
/*
* See if we can simplify the op. Move the cast down.
*/
--
1.8.1.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] fix casting to bool
2013-05-16 20:56 [PATCH] fix casting to bool Xi Wang
@ 2013-05-19 7:47 ` Pekka Enberg
0 siblings, 0 replies; 2+ messages in thread
From: Pekka Enberg @ 2013-05-19 7:47 UTC (permalink / raw)
To: Xi Wang; +Cc: Sparse Mailing-list, Christopher Li, Linus Torvalds
On Thu, May 16, 2013 at 11:56 PM, Xi Wang <xi.wang@gmail.com> wrote:
> Consider the following function.
>
> static _Bool foo(int x) { return x; }
>
> Currently sparse emits:
>
> scast.1 %r2 <- (32) %arg1
> ret.1 %r2
>
> This is incorrect since bool requires a zero test.
>
> setne.32 %r2 <- %arg1, $0
> ret.1 %r2
>
> This patch adds zero testing for bool in cast_to().
>
> Signed-off-by: Xi Wang <xi.wang@gmail.com>
Acked-by: Pekka Enberg <penberg@kernel.org>
> ---
> evaluate.c | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/evaluate.c b/evaluate.c
> index d9c767f..a090028 100644
> --- a/evaluate.c
> +++ b/evaluate.c
> @@ -272,6 +272,18 @@ static struct expression * cast_to(struct expression *old, struct symbol *type)
> if (old->ctype != &null_ctype && is_same_type(old, type))
> return old;
>
> + /* bool requires a zero test */
> + if (is_bool_type(type)) {
> + expr = alloc_expression(old->pos, EXPR_COMPARE);
> + expr->op = SPECIAL_NOTEQUAL;
> + expr->ctype = type;
> + expr->left = old;
> + expr->right = alloc_expression(old->pos, EXPR_VALUE);
> + expr->right->ctype = old->ctype;
> + expr->right->value = 0;
> + return expr;
> + }
> +
> /*
> * See if we can simplify the op. Move the cast down.
> */
> --
> 1.8.1.2
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sparse" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-05-19 7:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-16 20:56 [PATCH] fix casting to bool Xi Wang
2013-05-19 7:47 ` Pekka Enberg
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).