Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1448919

Re: [PATCH RFC] coccinelle: tests: if and else branch should probably not be identical

From Julia Lawall <julia.lawall@lip6.fr>
Newsgroups linux.kernel
Subject Re: [PATCH RFC] coccinelle: tests: if and else branch should probably not be identical
Date 2016-07-23 12:50 +0200
Message-ID <rY2Fj-1J3-13@gated-at.bofh.it> (permalink)
References <rXECZ-3Mr-1@gated-at.bofh.it> <rXLXQ-8gM-11@gated-at.bofh.it> <rXO9j-1uW-5@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw



On Fri, 22 Jul 2016, Nicholas Mc Guire wrote:

> On Fri, Jul 22, 2016 at 06:56:47PM +0200, Julia Lawall wrote:
> > > +virtual context
> > > +virtual org
> > > +virtual report
> > > +
> > > +@cond@
> > > +statement S1;
> > > +position p;
> > > +@@
> > > +
> > > +<+...
> > > +* if@p (...) S1 else S1
> > > +...+>
> >
> > You don't need the <+... ...+>.  Just put the if by itself.
> >
>
> will drop that then - though those would be needed for the cases that
> do this recursively. Will fix it and resend.

Sorry, I don't get your point about recursiveness at all.  Even if you
have bizarrely

if (e1)
  if (e2) S else S
else
  if (e2) S else S

the version without <+... ...+> will still work, finding three matches.

The <+... ...+> starts the matching process at the beginning of the
function and ends it at the end of the function, instead of just working
on each if one by one.  Thus <+... ...+> should be much less efficient.
Also with <+... ...+> if you put a position variable on eg the if, you
will get a single position array with all the matches, whereas without it
you get one position array per if.  The latter is probably easier to
manage.

julia

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH RFC] coccinelle: tests: if and else branch should probably not be identical Nicholas Mc Guire <hofrat@osadl.org> - 2016-07-22 11:10 +0200
  Re: [PATCH RFC] coccinelle: tests: if and else branch should probably  not be identical Julia Lawall <julia.lawall@lip6.fr> - 2016-07-22 19:00 +0200
    Re: [PATCH RFC] coccinelle: tests: if and else branch should  probably not be identical Nicholas Mc Guire <der.herr@hofr.at> - 2016-07-22 21:20 +0200
      Re: [PATCH RFC] coccinelle: tests: if and else branch should probably  not be identical Julia Lawall <julia.lawall@lip6.fr> - 2016-07-23 12:50 +0200

csiph-web