cocci.inria.fr archive mirror
 help / color / mirror / Atom feed
* [Cocci] Adding code after function return types with SmPL
@ 2019-10-07 12:48 Markus Elfring
  0 siblings, 0 replies; 4+ messages in thread
From: Markus Elfring @ 2019-10-07 12:48 UTC (permalink / raw)
  To: Coccinelle

Hello,

I would like to try the following transformation approach out with
the software combination “Coccinelle 1.0.8-00004-g842075f7”.

@addition@
identifier f;
type rt != void;
@@
 rt
+__must_check
 f(...);


elfring@Sonne:~/Projekte/Coccinelle/janitor> spatch --parse-cocci use_must_check.cocci
init_defs_builtins: /usr/local/bin/../lib/coccinelle/standard.h
plus: parse error:
  File "use_must_check.cocci", line 7, column 1, charpos = 64
  around = 'f',
  whole content =  f(...);


@is_void@
identifier f;
position p;
@@
 void f@p(...);

@addition@
identifier f;
position p != is_void.p;
type rt;
@@
 rt
+__must_check
 f@p(...);


elfring@Sonne:~/Projekte/Coccinelle/janitor> spatch --parse-cocci use_must_check2.cocci
init_defs_builtins: /usr/local/bin/../lib/coccinelle/standard.h
plus: parse error:
  File "use_must_check2.cocci", line 14, column 1, charpos = 137
  around = 'f',
  whole content =  f@p(...);



Will the addition of such an annotation in a function declaration
become supported for the semantic patch language?

Regards,
Markus
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Cocci] Adding code after function return types with SmPL
  2019-10-07 20:44 ` Julia Lawall
@ 2019-10-08 11:56   ` Markus Elfring
  0 siblings, 0 replies; 4+ messages in thread
From: Markus Elfring @ 2019-10-08 11:56 UTC (permalink / raw)
  To: Julia Lawall; +Cc: Coccinelle

>> Will the addition of such an annotation in a function declaration
>> become supported for the semantic patch language?
>
> Perhaps some day.

The desired modification for a known preprocessor symbol like “__must_check”
points software development challenges out.

But the following SmPL script variant gets accepted.

@addition@
identifier f;
type rt != void;
@@
 rt
+__attribute__ ((warn_unused_result))
 f(...);


Can further improvements become easier also for another transformation approach?

@replacement@
@@
-__attribute__ ((warn_unused_result))
+__must_check


elfring@Sonne:~/Projekte/Coccinelle/janitor> spatch --parse-cocci use_must_check5.cocci
init_defs_builtins: /usr/local/bin/../lib/coccinelle/standard.h
File "use_must_check5.cocci", line 3, column 1, charpos = 18
  around = '__attribute__',
  whole content = -__attribute__ ((warn_unused_result))


Would any additional error information be helpful here?

Regards,
Markus
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Cocci] Adding code after function return types with SmPL
  2019-10-07 12:48 Markus Elfring
@ 2019-10-07 20:44 ` Julia Lawall
  2019-10-08 11:56   ` Markus Elfring
  0 siblings, 1 reply; 4+ messages in thread
From: Julia Lawall @ 2019-10-07 20:44 UTC (permalink / raw)
  To: Markus Elfring; +Cc: Coccinelle

[-- Attachment #1: Type: text/plain, Size: 1197 bytes --]



On Mon, 7 Oct 2019, Markus Elfring wrote:

> Hello,
>
> I would like to try the following transformation approach out with
> the software combination “Coccinelle 1.0.8-00004-g842075f7”.
>
> @addition@
> identifier f;
> type rt != void;
> @@
>  rt
> +__must_check
>  f(...);
>
>
> elfring@Sonne:~/Projekte/Coccinelle/janitor> spatch --parse-cocci use_must_check.cocci
> init_defs_builtins: /usr/local/bin/../lib/coccinelle/standard.h
> plus: parse error:
>   File "use_must_check.cocci", line 7, column 1, charpos = 64
>   around = 'f',
>   whole content =  f(...);
>
>
> @is_void@
> identifier f;
> position p;
> @@
>  void f@p(...);
>
> @addition@
> identifier f;
> position p != is_void.p;
> type rt;
> @@
>  rt
> +__must_check
>  f@p(...);
>
>
> elfring@Sonne:~/Projekte/Coccinelle/janitor> spatch --parse-cocci use_must_check2.cocci
> init_defs_builtins: /usr/local/bin/../lib/coccinelle/standard.h
> plus: parse error:
>   File "use_must_check2.cocci", line 14, column 1, charpos = 137
>   around = 'f',
>   whole content =  f@p(...);
>
>
>
> Will the addition of such an annotation in a function declaration
> become supported for the semantic patch language?

Perhaps some day.

julia

[-- Attachment #2: Type: text/plain, Size: 136 bytes --]

_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Cocci] Adding code after function return types with SmPL
@ 2019-10-07 12:48 Markus Elfring
  2019-10-07 20:44 ` Julia Lawall
  0 siblings, 1 reply; 4+ messages in thread
From: Markus Elfring @ 2019-10-07 12:48 UTC (permalink / raw)
  To: Coccinelle

Hello,

I would like to try the following transformation approach out with
the software combination “Coccinelle 1.0.8-00004-g842075f7”.

@addition@
identifier f;
type rt != void;
@@
 rt
+__must_check
 f(...);


elfring@Sonne:~/Projekte/Coccinelle/janitor> spatch --parse-cocci use_must_check.cocci
init_defs_builtins: /usr/local/bin/../lib/coccinelle/standard.h
plus: parse error:
  File "use_must_check.cocci", line 7, column 1, charpos = 64
  around = 'f',
  whole content =  f(...);


@is_void@
identifier f;
position p;
@@
 void f@p(...);

@addition@
identifier f;
position p != is_void.p;
type rt;
@@
 rt
+__must_check
 f@p(...);


elfring@Sonne:~/Projekte/Coccinelle/janitor> spatch --parse-cocci use_must_check2.cocci
init_defs_builtins: /usr/local/bin/../lib/coccinelle/standard.h
plus: parse error:
  File "use_must_check2.cocci", line 14, column 1, charpos = 137
  around = 'f',
  whole content =  f@p(...);



Will the addition of such an annotation in a function declaration
become supported for the semantic patch language?

Regards,
Markus
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-10-08 11:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-07 12:48 [Cocci] Adding code after function return types with SmPL Markus Elfring
2019-10-07 12:48 Markus Elfring
2019-10-07 20:44 ` Julia Lawall
2019-10-08 11:56   ` Markus Elfring

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).