Release coccinelle-0.2.1-rc1
[bpt/coccinelle.git] / docs / manual / spatch_options.tex
CommitLineData
faf9a90c
C
1\section{Introduction}
2
3This document describes the options provided by Coccinelle. The options
4have an impact on various phases of the semantic patch application
5process. These are:
6
7\begin{enumerate}
8\item Selecting and parsing the semantic patch.
9\item Selecting and parsing the C code.
10\item Application of the semantic patch to the C code.
11\item Transformation.
12\item Generation of the result.
13\end{enumerate}
14
15\noindent
16One can either initiate the complete process from step 1, or
17to perform step 1 or step 2 individually.
18
19Coccinelle has quite a lot of options. The most common usages are as
20follows, for a semantic match {\tt foo.cocci}, a C file {\tt foo.c}, and a
21directory {\tt foodir}:
22
23\begin{itemize}
24\item {\tt spatch -parse\_cocci foo.cocci}: Check that the semantic patch
25 is syntactically correct.
26\item {\tt spatch -parse\_c foo.c}: Check that the C file
27 is syntactically correct. The Coccinelle C parser tries to recover
28 during the parsing process, so if one function does not parse, it will
29 start up again with the next one. Thus, a parse error is often not a
30 cause for concern, unless it occurs in a function that is relevant to the
31 semantic patch.
32\item {\tt spatch -sp\_file foo.cocci foo.c}: Apply the semantic patch {\tt
33 foo.cocci} to the file {\tt foo.c} and print out any transformations as a
34 diff.
35\item {\tt spatch -sp\_file foo.cocci foo.c -debug}: The same as the
36 previous case, but print out some information about the matching process.
37\item {\tt spatch -sp\_file foo.cocci -dir foodir}: Apply the semantic
38 patch {\tt foo.cocci} to all of the C files in the directory {\tt foodir}.
39\item {\tt spatch -sp\_file foo.cocci -dir foodir -include\_headers}: Apply
40 the semantic patch {\tt foo.cocci} to all of the C files and header files
41 in the directory {\tt foodir}.
42\end{itemize}
43
44In the rest of this document, the options are annotated as follows:
45\begin{itemize}
46\item \FilledBigDiamondshape: a basic option, that is most likely of
47 interest to all users.
48\item \BigLowerDiamond: an option that is frequently used, often for better
49understanding the effect of a semantic patch.
50\item \BigDiamondshape: an option that is likely to be rarely used, but
51 whose effect is still comprehensible to a user.
52\item An option with no annotation is likely of interest only to
53 developers.
54\end{itemize}
55
56\section{Selecting and parsing the semantic patch}
57
58\subsection{Standalone options}
59
60\normal{-parse\_cocci $\langle$file$\rangle$}{ Parse a semantic
61patch file and print out some information about it.}
62
63\subsection{The semantic patch}
64
65\minimum{-sp\_file $\langle$file$\rangle$, -c $\langle$file$\rangle$,
66-cocci\_file $\langle$file$\rangle$}{ Specify the name of the file
67 containing the semantic patch. The file name should end in {\tt .cocci}.
68All three options do the same thing; the last two are deprecated.}
69
70\subsection{Isomorphisms}
71
72\rare{-iso, -iso\_file}{ Specify a file containing isomorphisms to be used in
73place of the standard one. Normally one should use the {\tt using}
74construct within a semantic patch to specify isomorphisms to be used {\em
75 in addition to} the standard ones.}
76
b1b2de81
C
77\rare{-iso\_limit $\langle$int$\rangle$} Limit the depth of application of
78isomorphisms to the specified integer.
79
80\rare{-no\_iso\_limit} Put no limit on the number of times that
81isomorphisms can be applied. This is the default.
82
faf9a90c
C
83\developer{-track\_iso}{ Gather information about isomorphism usage.}
84
85\developer{-profile\_iso}{ Gather information about the time required for
86isomorphism expansion.}
87
88\subsection{Display options}
89
90\rare{-show\_cocci}{Show the semantic patch that is being processed before
91 expanding isomorphisms.}
92
93\rare{-show\_SP}{Show the semantic patch that is being processed after
94 expanding isomorphisms.}
95
96\rare{-show\_ctl\_text}{ Show the representation
97of the semantic patch in CTL.}
98
99\rare{-ctl\_inline\_let}{ Sometimes {\tt let} is used to name
100intermediate terms CTL representation. This option causes the let-bound
101terms to be inlined at the point of their reference.
102This option implicitly sets {\bf -show\_ctl\_text}.}
103
104\rare{-ctl\_show\_mcodekind}{ Show
105transformation information within the CTL representation
106of the semantic patch. This option implicitly sets {\bf -show\_ctl\_text}.}
107
108\rare{-show\_ctl\_tex}{ Create a LaTeX files showing the representation
109of the semantic patch in CTL.}
110
111\section{Selecting and parsing the C files}
112
113\subsection{Standalone options}
114
115\normal{-parse\_c $\langle$file/dir$\rangle$}{ Parse a {\tt .c} file or all
116 of the {\tt .c} files in a directory. This generates information about
117 any parse errors encountered.}
118
119\normal{-parse\_h $\langle$file/dir$\rangle$}{ Parse a {\tt .h} file or all
120 of the {\tt .h} files in a directory. This generates information about
121 any parse errors encountered.}
122
123\normal{-parse\_ch $\langle$file/dir$\rangle$}{ Parse a {\tt .c} or {\tt
124 .h} file or all of the {\tt .c} or {\tt .h} files in a directory. This
125 generates information about any parse errors encountered.}
126
127\normal{-control\_flow $\langle$file$\rangle$, -control\_flow
128$\langle$file$\rangle$:$\langle$function$\rangle$}{ Print a control-flow
129graph for all of the functions in a file or for a specific function in a
130file. This requires {\tt dot} (http://www.graphviz.org/) and {\tt gv}.}
131
132\rare{-type\_c $\langle$file$\rangle$}{ Parse a C file and pretty-print a
133version including type information.}
134
135\developer{-tokens\_c $\langle$file$\rangle$}{Prints the tokens in a C
136 file.}
137
138\developer{-parse\_unparse $\langle$file$\rangle$}{Parse and then reconstruct
139 a C file.}
140
141\developer{-compare\_c $\langle$file$\rangle$ $\langle$file$\rangle$,
142 -compare\_c\_hardcoded}{Compares one C file to another, or compare the
143file tests/compare1.c to the file tests/compare2.c.}
144
145\developer{-test\_cfg\_ifdef $\langle$file$\rangle$}{Do some special
146processing of \#ifdef and display the resulting control-flow graph. This
147requires {\tt dot} and {\tt gv}.}
148
149\developer{-test\_attributes $\langle$file$\rangle$,
150 -test\_cpp $\langle$file$\rangle$}{
151Test the parsing of cpp code and attributes, respectively.}
152
153\subsection{Selecting C files}
154
708f4980
C
155An argument that ends in {\tt .c} is assumed to be a C file to process.
156Normally, only one C file or one directory is specified. If multiple C
157files are specified, they are treated in parallel, {\em i.e.}, the first
158semantic patch rule is applied to all functions in all files, then the
159second semantic patch rule is applied to all functions in all files, etc.
160If a directory is specified then no files may be specified and only the
faf9a90c
C
161rightmost directory specified is used.
162
faf9a90c
C
163\normal{-include\_headers}{ This option causes header files to be processed
164independently. This option only makes sense if a directory is specified
165using {\bf -dir}.}
166
167\normal{-use\_glimpse}{ Use a glimpse index to select the files to which
168a semantic patch may be relevant. This option requires that a directory is
169specified. The index may be created using the script {\tt
170 coccinelle/scripts/ glimpseindex\_cocci.sh}. Glimpse is available at
171http://webglimpse.net/. In conjunction with the option {\bf -patch\_cocci}
172this option prints the regular expression that will be passed to glimpse.}
173
708f4980
C
174\rare{-dir}{ Specify a directory containing C files to process. By
175 default, the include path will be set to the ``include'' subdirectory of
176 this directory. A different include path can be specified using the
177 option {\bf -I}. {\bf -dir} only considers the rightmost directory in
178 the argument list. This behavior is convenient for creating a script
179 that always works on a single directory, but allows the user of the
180 script to override the provided directory with another one. Spatch
181 collects the files in the directory using {\tt find} and does not follow
182 symbolic links.}
183
faf9a90c
C
184\developer{-kbuild\_info $\langle$file$\rangle$}{ The specified file
185 contains information about which sets of files should be considered in
186 parallel.}
187
188\developer{-disable\_worth\_trying\_opt}{Normally, a C file is only
189 processed if it contains some keywords that have been determined to be
190 essential for the semantic patch to match somewhere in the file. This
191 option disables this optimization and tries the semantic patch on all files.}
192
193\developer{-test $\langle$file$\rangle$}{ A shortcut for running Coccinelle
194on the semantic patch ``file{\tt{.cocci}}'' and the C file ``file{\tt{.c}}''.}
195
196\developer{-testall}{A shortcut for running Coccinelle on all files in a
197 subdirectory {\tt tests} such that there are all of a {\tt .cocci} file, a {\tt
198 .c} file, and a {\tt .res} file, where the {\tt .res} contains the
199 expected result.}
200
201\developer{-test\_okfailed, -test\_regression\_okfailed} Other options for
202keeping track of tests that have succeeded and failed.
203
204\developer{-compare\_with\_expected}{Compare the result of applying
205 Coccinelle to file{\tt{.c}} to the file file{\tt{.res}} representing the
206 expected result.}
207
708f4980
C
208\developer{-expected\_score\_file $\langle$file$\rangle$}{
209which score file to compare with in the testall run}
210
faf9a90c
C
211\subsection{Parsing C files}
212
213\rare{-show\_c}{Show the C code that is being processed.}
214
215\rare{-parse\_error\_msg}{Show parsing errors in the C file.}
216
ae4735db
C
217\rare{-verbose\_parsing}{Show parsing errors in the C file, as well as
218 information about attempts to accomodate such errors. This implicitly
219 sets -parse\_error\_msg.}
220
faf9a90c
C
221\rare{-type\_error\_msg}{Show information about where the C type checker
222 was not able to determine the type of an expression.}
223
708f4980
C
224\rare{-int\_bits $\langle$n$\rangle$, -long\_bits
225$\langle$n$\rangle$}{Provide integer size information. n is the number of
226bits in an unsigned integer or unsigned long, respectively. If only the
227option {\bf -int\_bits} is used, unsigned longs will be assumed to have
228twice as many bits as unsigned integers. If only the option {\bf
229-long\_bits} is used, unsigned ints will be assumed to have half as many
230bits as unsigned integers. This information is only used in determining
231the types of integer constants, according to the ANSI C standard (C89). If
232neither is provided, the type of an integer constant is determined by the
233sequence of ``u'' and ``l'' annotations following the constant. If there
234is none, the constant is assumed to be a signed integer. If there is only
235``u'', the constant is assumed to be an unsigned integer, etc.}
236
002099fc
C
237\rare{-no\_loops}{Drop back edges for loops. This may make a semantic
238 patch/match run faster, at the cost of not finding matches that wrap
239 around loops.}
240
faf9a90c
C
241\developer{-use\_cache} Use preparsed versions of the C files that are
242stored in a cache.
243
244\developer{-debug\_cpp, -debug\_lexer, -debug\_etdt,
245 -debug\_typedef}{Various options for debugging the C parser.}
246
247\developer{-filter\_msg, -filter\_define\_error,
248 -filter\_passed\_level}{Various options for debugging the C parser.}
249
250\developer{-only\_return\_is\_error\_exit}{In matching ``{\tt{\ldots}}'' in
251 a semantic patch or when forall is specified, a rule must match all
252 control-flow paths starting from a node matching the beginning of the
253 rule. This is relaxed, however, for error handling code. Normally, error
254 handling code is considered to be a conditional with only a then branch
255 that ends in goto, break, continue, or return. If this option is set,
256 then only a then branch ending in a return is considered to be error
257 handling code. Usually a better strategy is to use {\tt when strict} in
258 the semantic patch, and then match explicitly the case where there is a
259 conditional whose then branch ends in a return.}
260
261\subsubsection*{Macros and other preprocessor code}
262
708f4980 263\normal{-macro\_file $\langle$file$\rangle$}{
faf9a90c
C
264 Extra macro definitions to be taken into account when parsing the C
265 files.}
266
708f4980
C
267\normal{-macro\_file\_builtins $\langle$file$\rangle$}{
268 Builtin macro definitions to be taken into account when parsing the C
269 files.}
270
271\rare{-ifdef\_to\_if,-no\_ifdef\_to\_if}{
272The option {\bf -ifdef\_to\_if}
273represents an {\tt \#ifdef} in the source code as a conditional in the
274control-flow graph when doing so represents valid code. {\bf
275-no\_ifdef\_to\_if} disables this feature. {\bf -ifdef\_to\_if} is the
276default.
277}
faf9a90c
C
278
279\rare{-use\_if0\_code}{ Normally code under \#if 0 is ignored. If this
280option is set then the code is considered, just like the code under any
281other \#ifdef.}
282
283\developer{-noadd\_typedef\_root}{This seems to reduce the scope of a
284 typedef declaration found in the C code.}
285
286\subsubsection*{Include files}
287
288\normal{-all\_includes, -local\_includes, -no\_includes}{
289These options control which include files mentioned in a C file are taken into
290account. {\bf -all\_includes} indicates that all included files will be
291processed. {\bf -local\_includes} indicates that only included files in
292the current directory will be processed. {\bf -no\_includes} indicates
293that no included files will be processed. If the semantic patch contains
294type specifications on expression metavariables, then the default is {\bf
295-local\_includes}. Otherwise the default is {\bf -no\_includes}. At most
296one of these options can be specified.}
297
298\normal{-I $\langle$path$\rangle$}{ This option specifies the directory in
299 which to find non-local include files. This option should be used only
300 once, as each use will overwrite the preceding one.}
301
7f004419
C
302\rare{-relax\_include\_path}{This option when combined with -all\_includes
303 causes the search for local
faf9a90c
C
304 include files to consider the directory specified using {\bf -I} if the
305 included file is not found in the current directory.}
306
307\section{Application of the semantic patch to the C code}
308
309\subsection{Feedback at the rule level during the application of the
310 semantic patch}
311
312\normal{-show\_bindings}{
313Show the environments with respect to which each rule is applied and the
314bindings that result from each such application.}
315
316\normal{-show\_dependencies}{ Show the status (matched or unmatched) of the
317rules on which a given rule depends. {\bf -show\_dependencies} implicitly
318sets {\bf -show\_bindings}, as the values of the dependencies are
319environment-specific.}
320
321\normal{-show\_trying}{
322Show the name of each program element to which each rule is applied.}
323
324\normal{-show\_transinfo}{
325Show information about each transformation that is performed.
326The node numbers that are referenced are the number of the nodes in the
327control-flow graph, which can be seen using the option {\bf -control\_flow}
328(the initial control-flow graph only) or the option {\bf -show\_flow} (the
329control-flow graph before and after each rule application).}
330
331\normal{-show\_misc}{Show some miscellaneous information.}
332
333\rare{-show\_flow $\langle$file$\rangle$, -show\_flow
334 $\langle$file$\rangle$:$\langle$function$\rangle$} Show the control-flow
335graph before and after the application of each rule.
336
337\developer{-show\_before\_fixed\_flow}{This is similar to {\bf
338 -show\_flow}, but shows a preliminary version of the control-flow graph.}
339
340\subsection{Feedback at the CTL level during the application of the
341 semantic patch}
342
343\normal{-verbose\_engine}{Show a trace of the matching of atomic terms to C
344 code.}
345
346\rare{-verbose\_ctl\_engine}{Show a trace of the CTL matching process.
347 This is unfortunately rather voluminous and not so helpful for someone
348 who is not familiar with CTL in general and the translation of SmPL into
349 CTL specifically. This option implicitly sets the option {\bf
350 -show\_ctl\_text}.}
351
352\rare{-graphical\_trace}{Create a pdf file containing the control flow
353 graph annotated with the various nodes matched during the CTL matching
354 process. Unfortunately, except for the most simple examples, the output
355 is voluminous, and so the option is not really practical for most
356 examples. This requires {\tt dot} (http://www.graphviz.org/) and {\tt
357 pdftk}.}
358
359\rare{-gt\_without\_label}{The same as {\bf -graphical\_trace}, but the PDF
360 file does not contain the CTL code.}
361
362\rare{-partial\_match}{
363Report partial matches of the semantic patch on the C file. This can
364 be substantially slower than normal matching.}
365
366\rare{-verbose\_match}{
367Report on when CTL matching is not applied to a function or other program
368unit because it does not contain some required atomic pattern.
369This can be viewed as a simpler, more efficient, but less informative
370version of {\bf -partial\_match}.}
371
372\subsection{Actions during the application of the semantic patch}
373
ae4735db
C
374\normal{-D rulename}{Run the patch considering that the virtual rule
375 ``rulename'' is satisfied. Virtual rules should be declared at the
376 beginning of the semantic patch in a comma separated list following the
377 keyword virtual. Other rules can depend on the satisfaction or non
378 satifaction of these rules using the keyword {\tt depends on} in the
379 usual way.}
380
381\normal{-D variable=value}{Run the patch considering that the virtual
382 identifier metavariable ``variable'' is bound to ``value''. Any
383 identifier metavariable can be designated as being virtual by giving it
384 the rule name {\tt virtual}. An example is in demos/vm.coci}
385
faf9a90c
C
386\rare{-allow\_inconsistent\_paths}{Normally, a term that is transformed
387 should only be accessible from other terms that are matched by the
388 semantic patch. This option removes this constraint. Doing so, is
389 unsafe, however, because the properties that hold along the matched path
390 might not hold at all along the unmatched path.}
391
392\rare{-disallow\_nested\_exps}{In an expression that contains repeated
393 nested subterms, {\em e.g.} of the form {\tt f(f(x))}, a pattern can
394 match a single expression in multiple ways, some nested inside others.
395 This option causes the matching process to stop immediately at the
396 outermost match. Thus, in the example {\tt f(f(x))}, the possibility
397 that the pattern {\tt f(E)}, with metavariable {\tt E}, matches with {\tt
398 E} as {\tt x} will not be considered.}
399
978fd7e5
C
400\rare{-no\_safe\_expressions}{normally, we check that an expression does
401 not match something earlier in the disjunction. But for large
402 disjunctions, this can result in a very big CTL formula. So this
403 option give the user the option to say he doesn't want this feature,
404 if that is the case.}
405
faf9a90c
C
406\rare{-pyoutput coccilib.output.Gtk, -pyoutput coccilib.output.Console}{
407This controls whether Python output is sent to Gtk or to the console. {\bf
408 -pyoutput coccilib.output.Console} is the default. The Gtk option is
409currently not well supported.}
410
411\developer{-loop}{When there is ``{\tt{\ldots}}'' in the semantic patch,
412 the CTL operator {\sf AU} is used if the current function does not
413 contain a loop, and {\sf AW} may be used if it does. This option causes
414 {\sf AW} always to be used.}
415
416\developer{-steps $\langle$int$\rangle$}{
417This limits the number of steps performed by the CTL engine to the
418specified number. This option is unsafe as it might cause a rule to fail
419due to running out of steps rather than due to not matching.}
420
421\developer{-bench $\langle$int$\rangle$}{This collects various information
422 about the operations performed during the CTL matching process.}
423
424\developer{-popl, -popl\_mark\_all, -popl\_keep\_all\_wits}{
425These options use a simplified version of the SmPL language. {\bf
426 -popl\_mark\_all} and {\bf -popl\_keep\_all\_wits} implicitly set {\bf
427 -popl}.}
428
429\section{Generation of the result}
430
431Normally, the only output is a diff printed to standard output.
432
7f004419
C
433\normal{-keep\_comments}{Don't remove comments adjacent to removed code.}
434
708f4980
C
435\normal{-linux\_spacing, -smpl\_spacing}{Control the spacing within the code
436 added by the semantic patch. The option {\bf -linux\_spacing} causes
437 spatch to follow the conventions of Linux, regardless of the spacing in
438 the semantic patch. This is the default. The option {\bf
439 -smpl\_spacing} causes spatch to follow the spacing given in the semantic
440 patch, within individual lines.}
441
faf9a90c
C
442\rare{-o $\langle$file$\rangle$}{ The output file.}
443
444\rare{-inplace}{ Modify the input file.}
445
446\rare{-outplace}{ Store modifications in a .cocci\_res file.}
447
448\rare{-no\_show\_diff}{ Normally, a diff between the original and transformed
449code is printed on the standard output. This option causes this not to be
450done.}
451
452\rare{-U}{ Set number of diff context lines.}
453
454\rare{-save\_tmp\_files}{Coccinelle creates some temporary
455 files in {\tt /tmp} that it deletes after use. This option causes these
456 files to be saved.}
457
458\developer{-debug\_unparsing}{Show some debugging information about the
459 generation of the transformed code. This has the side-effect of
460 deleting the transformed code.}
461
462\developer{-patch}{ Deprecated option.}
463
464
465\section{Other options}
466
467\subsection{Version information}
468
469\normal{-version}{ The version of Coccinelle. No other options are
470allowed.}
471
472\normal{-date}{ The date of the current version of Coccinelle. No other
473options are allowed.}
474
475\subsection{Help}
476
477\minimum{-h, -shorthelp}{ The most useful commands.}
478
479\minimum{-help, --help, -longhelp}{ A complete listing of the available
480commands.}
481
482\subsection{Controlling the execution of Coccinelle}
483
484\normal{-timeout $\langle$int$\rangle$}{ The maximum time in seconds for
485 processing a single file.}
486
487\rare{-max $\langle$int$\rangle$}{This option informs Coccinelle of the
488 number of instances of Coccinelle that will be run concurrently. This
489 option requires {\bf -index}. It is usually used with {\bf -dir}.}
490
491\rare{-index $\langle$int$\rangle$}{This option informs Coccinelle of
492 which of the concurrent instances is the current one. This option
493 requires {\bf -max}.}
494
495\rare{-mod\_distrib}{When multiple instances of Coccinelle are run in
496 parallel, normally the first instance processes the first $n$ files, the
497 second instance the second $n$ files, etc. With this option, the files
498 are distributed among the instances in a round-robin fashion.}
499
500\developer{-debugger}{Option for running Coccinelle from within the OCaml
501 debugger.}
502
503\developer{-profile}{ Gather timing information about the main Coccinelle
504functions.}
505
506\developer{-disable\_once}{Print various warning messages every time some
507condition occurs, rather than only once.}
508
509\subsection{Miscellaneous}
510
511\rare{-quiet}{Suppress most output. This is the default.}
512
513\developer{-pad, -hrule $\langle$dir$\rangle$, -xxx, -l1}{}
514