All of lore.kernel.org
 help / color / mirror / Atom feed
From: a.hajda@samsung.com (Andrzej Hajda)
To: cocci@systeme.lip6.fr
Subject: [Cocci] [PATCH] coccinelle: assign signed result to unsigned variable
Date: Fri, 25 Sep 2015 12:08:43 +0200	[thread overview]
Message-ID: <56051D2B.5040802@samsung.com> (raw)
In-Reply-To: <56041BE5.5010005@users.sourceforge.net>

On 09/24/2015 05:51 PM, SF Markus Elfring wrote:
>> + at rs@
>> +position p;
>> +typedef bool, u8, u16, u32, u64, s8, s16, s32, s64;
>> +{char, short int, int, long, long long, s8, s16, s32, s64} vs;
> Can it matter to specify also the type modifier "signed" in this SmPL approach?
> http://coccinelle.lip6.fr/docs/main_grammar005.html#ctype_qualif

According to my tests it does not matter.
Btw I should replace short int, with short, to allow catch short intergers.

>
>
>> +{unsigned char, unsigned short, unsigned int, unsigned long, unsigned long long, size_t, bool, u8, u16, u32, u64} vu;
> How do you think about to reformat such a data type enumeration?

If you mean split line to be below 80 chars, OK.

>
>
>> +@@
>> +
>> +vu at p = vs
>> +
>> + at r@
>> +position rs.p;
>> +identifier v, f;
>> +statement S1, S2;
>> +expression e;
>> +@@
>> +
>> +*v at p = f(...);
> Do you try to check here if the value receiver is at the same source code
> position from the SmPL rule "rs"?

Yes.
Generally I want to catch all assignments of signed function result to unsigned var.
In this script I have implemented it this way:
1. Look for all assignments 'unsigned = signed' (rs rule).
2. Check if signed from rs rule looks as a function call.

Is there better way to do it?

Regards
Andrzej

>
> Regards,
> Markus
>

WARNING: multiple messages have this Message-ID (diff)
From: Andrzej Hajda <a.hajda@samsung.com>
To: cocci@systeme.lip6.fr
Subject: Re: [PATCH] coccinelle: assign signed result to unsigned variable
Date: Fri, 25 Sep 2015 10:08:43 +0000	[thread overview]
Message-ID: <56051D2B.5040802@samsung.com> (raw)
In-Reply-To: <56041BE5.5010005@users.sourceforge.net>

On 09/24/2015 05:51 PM, SF Markus Elfring wrote:
>> +@rs@
>> +position p;
>> +typedef bool, u8, u16, u32, u64, s8, s16, s32, s64;
>> +{char, short int, int, long, long long, s8, s16, s32, s64} vs;
> Can it matter to specify also the type modifier "signed" in this SmPL approach?
> http://coccinelle.lip6.fr/docs/main_grammar005.html#ctype_qualif

According to my tests it does not matter.
Btw I should replace short int, with short, to allow catch short intergers.

>
>
>> +{unsigned char, unsigned short, unsigned int, unsigned long, unsigned long long, size_t, bool, u8, u16, u32, u64} vu;
> How do you think about to reformat such a data type enumeration?

If you mean split line to be below 80 chars, OK.

>
>
>> +@@
>> +
>> +vu@p = vs
>> +
>> +@r@
>> +position rs.p;
>> +identifier v, f;
>> +statement S1, S2;
>> +expression e;
>> +@@
>> +
>> +*v@p = f(...);
> Do you try to check here if the value receiver is at the same source code
> position from the SmPL rule "rs"?

Yes.
Generally I want to catch all assignments of signed function result to unsigned var.
In this script I have implemented it this way:
1. Look for all assignments 'unsigned = signed' (rs rule).
2. Check if signed from rs rule looks as a function call.

Is there better way to do it?

Regards
Andrzej

>
> Regards,
> Markus
>


WARNING: multiple messages have this Message-ID (diff)
From: Andrzej Hajda <a.hajda@samsung.com>
To: SF Markus Elfring <elfring@users.sourceforge.net>
Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
	Gilles Muller <Gilles.Muller@lip6.fr>,
	Marek Szyprowski <m.szyprowski@samsung.com>,
	Michal Marek <mmarek@suse.com>,
	Nicolas Palix <nicolas.palix@imag.fr>,
	kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org,
	cocci@systeme.lip6.fr
Subject: Re: [PATCH] coccinelle: assign signed result to unsigned variable
Date: Fri, 25 Sep 2015 12:08:43 +0200	[thread overview]
Message-ID: <56051D2B.5040802@samsung.com> (raw)
In-Reply-To: <56041BE5.5010005@users.sourceforge.net>

On 09/24/2015 05:51 PM, SF Markus Elfring wrote:
>> +@rs@
>> +position p;
>> +typedef bool, u8, u16, u32, u64, s8, s16, s32, s64;
>> +{char, short int, int, long, long long, s8, s16, s32, s64} vs;
> Can it matter to specify also the type modifier "signed" in this SmPL approach?
> http://coccinelle.lip6.fr/docs/main_grammar005.html#ctype_qualif

According to my tests it does not matter.
Btw I should replace short int, with short, to allow catch short intergers.

>
>
>> +{unsigned char, unsigned short, unsigned int, unsigned long, unsigned long long, size_t, bool, u8, u16, u32, u64} vu;
> How do you think about to reformat such a data type enumeration?

If you mean split line to be below 80 chars, OK.

>
>
>> +@@
>> +
>> +vu@p = vs
>> +
>> +@r@
>> +position rs.p;
>> +identifier v, f;
>> +statement S1, S2;
>> +expression e;
>> +@@
>> +
>> +*v@p = f(...);
> Do you try to check here if the value receiver is at the same source code
> position from the SmPL rule "rs"?

Yes.
Generally I want to catch all assignments of signed function result to unsigned var.
In this script I have implemented it this way:
1. Look for all assignments 'unsigned = signed' (rs rule).
2. Check if signed from rs rule looks as a function call.

Is there better way to do it?

Regards
Andrzej

>
> Regards,
> Markus
>


  reply	other threads:[~2015-09-25 10:08 UTC|newest]

Thread overview: 89+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-24 12:54 [Cocci] [PATCH] coccinelle: assign signed result to unsigned variable Andrzej Hajda
2015-09-24 12:54 ` Andrzej Hajda
2015-09-24 15:51 ` [Cocci] " SF Markus Elfring
2015-09-24 15:51   ` SF Markus Elfring
2015-09-24 15:51   ` SF Markus Elfring
2015-09-25 10:08   ` Andrzej Hajda [this message]
2015-09-25 10:08     ` Andrzej Hajda
2015-09-25 10:08     ` Andrzej Hajda
2015-09-25 15:51     ` [Cocci] " SF Markus Elfring
2015-09-25 15:51       ` SF Markus Elfring
2015-09-25 15:51       ` SF Markus Elfring
2015-09-26  7:45     ` [Cocci] " SF Markus Elfring
2015-09-26  7:45       ` SF Markus Elfring
2015-09-26  7:45       ` SF Markus Elfring
2015-09-26  9:07       ` [Cocci] " Julia Lawall
2015-09-26  9:07         ` Julia Lawall
2015-09-26  9:07         ` Julia Lawall
2015-09-26  9:41         ` [Cocci] " SF Markus Elfring
2015-09-26  9:41           ` SF Markus Elfring
2015-09-26  9:41           ` SF Markus Elfring
2015-09-26  9:45           ` [Cocci] " Julia Lawall
2015-09-26  9:45             ` Julia Lawall
2015-09-26  9:45             ` Julia Lawall
2015-09-26  9:52             ` [Cocci] " SF Markus Elfring
2015-09-26  9:52               ` SF Markus Elfring
2015-09-26  9:52               ` SF Markus Elfring
2015-09-26  9:55               ` [Cocci] " Julia Lawall
2015-09-26  9:55                 ` Julia Lawall
2015-09-26  9:55                 ` Julia Lawall
2015-09-26 11:43                 ` [Cocci] " SF Markus Elfring
2015-09-26 11:43                   ` SF Markus Elfring
2015-09-26 11:43                   ` SF Markus Elfring
2015-09-26 13:55                   ` [Cocci] " Julia Lawall
2015-09-26 13:55                     ` Julia Lawall
2015-09-26 13:55                     ` Julia Lawall
2015-09-26 15:22                     ` [Cocci] " SF Markus Elfring
2015-09-26 15:22                       ` SF Markus Elfring
2015-09-26 15:22                       ` SF Markus Elfring
2015-09-26 15:30                       ` [Cocci] " Julia Lawall
2015-09-26 15:30                         ` Julia Lawall
2015-09-26 15:30                         ` Julia Lawall
2015-09-26 15:50                         ` [Cocci] " SF Markus Elfring
2015-09-26 15:50                           ` SF Markus Elfring
2015-09-26 15:50                           ` SF Markus Elfring
2015-09-26 15:55                           ` [Cocci] " Julia Lawall
2015-09-26 15:55                             ` Julia Lawall
2015-09-26 15:55                             ` Julia Lawall
2015-09-26 16:01                             ` [Cocci] " SF Markus Elfring
2015-09-26 16:01                               ` SF Markus Elfring
2015-09-26 16:01                               ` SF Markus Elfring
2015-09-28 10:54         ` [Cocci] [PATCH v2] " Andrzej Hajda
2015-09-28 10:54           ` Andrzej Hajda
2015-09-28 10:54           ` Andrzej Hajda
2015-09-28 11:32           ` [Cocci] " Julia Lawall
2015-09-28 11:32             ` Julia Lawall
2015-09-28 11:32             ` Julia Lawall
2015-09-28 11:59             ` [Cocci] " Andrzej Hajda
2015-09-28 11:59               ` Andrzej Hajda
2015-09-28 11:59               ` Andrzej Hajda
2015-09-30 21:51               ` [Cocci] " Julia Lawall
2015-09-30 21:51                 ` Julia Lawall
2015-09-30 21:51                 ` Julia Lawall
2015-09-28 12:07           ` [Cocci] " SF Markus Elfring
2015-09-28 12:07             ` SF Markus Elfring
2015-09-28 12:07             ` SF Markus Elfring
2015-09-28 12:12             ` [Cocci] " Andrzej Hajda
2015-09-28 12:12               ` Andrzej Hajda
2015-09-28 12:12               ` Andrzej Hajda
2015-09-28 12:20               ` [Cocci] " SF Markus Elfring
2015-09-28 12:20                 ` SF Markus Elfring
2015-09-28 12:20                 ` SF Markus Elfring
2015-09-28 12:42                 ` [Cocci] " Julia Lawall
2015-09-28 12:42                   ` Julia Lawall
2015-09-28 12:42                   ` Julia Lawall
2015-09-28 12:55                   ` SF Markus Elfring
2015-09-28 12:55                     ` SF Markus Elfring
2015-09-28 12:55                     ` SF Markus Elfring
2015-09-28 13:13                     ` Julia Lawall
2015-09-28 13:13                       ` Julia Lawall
2015-09-28 13:13                       ` Julia Lawall
2015-09-28 13:53                       ` SF Markus Elfring
2015-09-28 13:53                         ` SF Markus Elfring
2015-09-28 13:53                         ` SF Markus Elfring
2015-09-28 15:07                         ` Julia Lawall
2015-09-28 15:07                           ` Julia Lawall
2015-09-28 15:07                           ` Julia Lawall
2015-10-03  7:09           ` Julia Lawall
2015-10-03  7:09             ` Julia Lawall
2015-10-03  7:09             ` Julia Lawall

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=56051D2B.5040802@samsung.com \
    --to=a.hajda@samsung.com \
    --cc=cocci@systeme.lip6.fr \
    /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 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.