Coccinelle release-1.0.0-rc11
[bpt/coccinelle.git] / changes.txt
CommitLineData
34e49164
C
1-*- org -*-
2
55d38388
C
3* upcoming/planned/todo
4** Language:
5- Semantic patch for other languages
6- Support metavariables, virtual rules and virtual identifiers
7 in initialize and finalize rules
ca417fcf 8- Support for matching #ifdef, etc.
190f1acf 9- function-typed metavariables
993936c0
C
10- virtual typedef, declarer name, iterator name
11- regexps for type metavariables
97111a47 12- 'symbol' metadeclaration for C identifiers that are guaranteed not intended as meta variables.
55d38388
C
13
14** Features:
15- New scripting languages
993936c0 16- more than one SP on the command line
55d38388
C
17
18** Bugfix:
19- Add more information in documentation, man pages and wiki
993936c0
C
20- typedefs from C code should not be used before their point of inference
21 (saved_typedefs in cprogram_of_file)
55d38388 22
8f657093
C
23* 1.0.0
24** Language:
25- Addition of initializer list metavariables. Thanks to Michael Stefaniuc
26 for noticing the need for them.
27- Allow multiple position variables per token
8babbc8f
C
28- ++ can now be associated with - code
29- Allow /* */ comments as smpl comments, not only as + code
30- Add support for && (label addresses)
31- local idexpression metavariable no longer matches static local x
5427db06 32- Consider using to be a comment in C++ code. Patch submitted by Jani Monoses.
993936c0
C
33- Command line cocci
34- print_main etc for ocaml Coccilib
f3c4ece6 35- =~ not ~= is used to indicate a regular expression constraint on an
7fe62b65 36 identifier. And !~ for a nonmatch.
f3c4ece6 37- allow long double, short int, long int, and long long int in SmPL code.
7fe62b65
C
38- gcc constructors allowed in SmPL. Thanks to Uwe Kleine-Koenig for
39 pointing out the problem.
97111a47
C
40- Allow ! to appear before () in depends. Thanks to SF Markus Elfring for
41 noticing the problem.
42- Can add code containing #pragma or #line.
17ba0788
C
43- Multicharacter command-line options now begin with -- and contain -
44 rather than _.
45- Allow multiple types of hidden metavariables, each preceded by @.
46 Position variables can be attached to these.
47- Python code now receives a structure containing a list of matched
48 elements for list metavariables. Thanks to Michael Stefaniuc for
49 suggesting this features.
50- Python code now receives expressions and identifiers as ordinary strings,
51 not as elements of specific structures.
8f657093
C
52
53** Features:
54- Preserve spacing before // comments when not at the beginning of a line
8babbc8f
C
55- Adjusted parsing of endif to put it after jump code
56- Improve warning message when using -use_cache
8babbc8f
C
57- More helpful initial value for exported variables in python
58- Support - on expression nests
65038c61
C
59- Better handling of the case of a matched declaration that should only
60 be replaced by other top level things.
5427db06
C
61- Allow a semantic patch beginning and ending with braces to match the
62 complete body of a function if the braces are not removed and if nothing
63 is added before the first brace or after the last one.
64- Add -cache_prefix option, to specify where to put cached files.
65- Allow module_init(foo); to match module_init(foo) (or likewise for any
66 declarer), when no transformation is specified on the semicolon.
67- Add Coccilib.exit() for ocaml code and cocci.exit() for python code,
68 to abort the treatment of the current file.
993936c0
C
69- Don't multiply print the same patch for the same file
70- Drop date in diff
71- Don't repeat smpl type warnings
72- -sp_file/-cocci_file are now optional. If not present an argument that
73 ends in .cocci is assumed to be the name of the file containing the
74 semantic patch.
f3c4ece6
C
75- Allow limiting the size of a named cache using -cache_limit
76- Cache name specified with -cache_prefix is extended according to the
77 index (parallelism), if any.
78- Allow multi-character constants in C code and SmPL code. Thanks to Kamil
79 Pilch for pointing out the problem.
97111a47
C
80- Better parsing of K&R C functions. No longer convert all parameters to
81 typedefs.
82- Implement newes as a hash table, for more efficiency on big sets of
83 environments.
84- A local variable that is declared without a type is not considered to be
85 a local variable. Actually, such a variable is probably really a macro
86 that expends to a declaration, and this macro is not the variable name.
87- Allow iteration to make modifications when the modifications are done
88 inplace.
89- -debug gives information about defined virtual rules and about virtual
90 identifier bindings.
91- no more crashing on c++-like code without the c++ argument.
92- dependencies can have ! on ()
93- Give ocaml code access to Flag and thus the current file name.
17ba0788
C
94- Slightly more efficient handling of lists.
95- Slightly better error message in the case of inconsistent paths
96- Improve limited size caching
8f657093
C
97
98** Bugfix:
99- Corrected parsing of script strings delimited by a single quote. Thanks
100 to Eugeniy Meshcheryakov for reporting the problem.
101- Improved indentation of added ifdefs.
102- Allow added comments and #ifdefs to precede other added code. Thanks to
103 Jani Monoses for noticing the problem.
8babbc8f
C
104- Corrected failure to due missing ocamlfind. Thanks to Derek M. Jones for
105 reporting the problem.
106- Allow fake nodes to be - in the allminus case, to drop tokens related to
107 a function definition or forward declaration but before the first code
108 mentioned in the semantic patch.
109- Drop __init etc when deleting a whole function.
110- Cause appropriate newlines to be preserved when multiple matches (trees)
111 contain adjacent modifications derived from the same SmPL code.
112- check_meta takes into account fresh identifier seed information.
113- Types for worth-trying optimization should not be followed by space
65038c61
C
114- Improved filtering of result of matching atomic patterns
115- Drop positions before creating function prototype rules
116- Adjust position of { introduced by adding multiple statements in a
117 single-statement position
118- Drop newline after function call ( when all arguments on that line are
119 eliminated
120- Accept removal of a single declaration, replaced by arbitrary,
121 non-declaration code
122- smpl_spacing takes into account newlines, indentation
5427db06
C
123- Improved prevention of transformations on toplevel { ... } from causing
124 changes outside function boundaries; also outside ifs, whiles, etc.
125 Changes are still allowed on { ... } present for other reasons.
126- Fix bug in include_match that caused everything to halt when all matches
127 were discarded
993936c0
C
128- Don't call Insert_plus on rules that cannot be evaluated due to failed
129 dependencies.
130- Allow variable declaration right after a case in switch.
131- The top of a loop is also after the body of a loop, for ... in loop body
132- Do not anchor Str regexp at the beginning of the string to check
133- Type annotation for C code uses most recent env for typedefs when
134 possible. Thanks to Andrea Canciani for pointing out the problem.
135- Pretty print pointer types without a trailing space. Thanks to Michael
136 Stefaniuc for pointing out the problem.
f3c4ece6
C
137- Propagate dependencies further in get_constants2
138- Make lexer more dos friendly
97111a47
C
139- slightly better handling of long long
140- Strip constraints from metavariables in function prototype treatment
141 before comparison, due to incomparability of pcre regexps.
142- Fixed obsolete regexp doc, thanks to Dmitry Osmakov
143- Improved x || ... || y to avoid double modification
144- Transparently allow \( \| and \) to be on lines beginning with -. The -
145 has no effect.
146- Remove memory leak related to pr2_once management. Thanks to Robert
147 Gomulka for helping to solve the problem. Don't use once hashtable if
148 messages won't be printed anyway.
149- Change the type of subtraction mixing pointer and array to have int result.
150 Thanks to Robert Gomulka for noticing the problem.
151- Fix interpretation of dependencies in the presence of virtual rules.
152 Ignore constraints on inherited position metavariables in a rule that
153 will be ignored.
154- Better support meta iterator and meta declarer tokens, and symid tokens.
155- Better indentation after added noindent.
17ba0788
C
156- Fixed length bug in the treatment of structures.
157- Allow inheriting declaration/field metavariables.
158- Don't drop spaces after parentheses in when no minus code present.
159 Thanks to Terry Wilson for reporting the problem.
160- Keep inherited metavariables in asttomember (preprocessing for matching)
161- allminus for types, to allow removing const, not just matching it
162- improved pretty printing when something is added before a closed brace
163- Allow matching on nameless structs. Thanks to Ron Minnich for reporting
164 the problem.
165- Pretty printing of const/volatile arrays in smpl code.
8f657093 166
690d68d1
C
167* 0.2.5
168** Language:
3a314143
C
169- Make a very small attempt to parse C++ code, amounting to accepting
170 identifiers containing ::, tilde, and template invocations. Use the
171 option -c++. This is not likely to be very useful in practice.
b23ff9c7 172- Added metavariable metavariable type.
d3f655c6 173- Add disjunctions on identifiers in some contexts
f59c9fb7 174- Pretend that & indicates a pointer in -c++ mode
190f1acf
C
175- Support for new and delete
176- Allow arrays in smpl parameter declarations. Thanks to Jesper Louis
177 Andersen for pointing out the problem.
178- Field list metavariables
179- Add the ability to add __attributes__ (NB, no matching on attributes)
180- Slightly improved the error message for transformation on multiple
181 variable declaration. Thanks to Jonathan Nieder for pointing out the
182 problem.
690d68d1
C
183
184** Features:
185- support transformations on variables (only) in declarations that declare
186 multiple variables
3a314143
C
187- allow #endif XXX in C code
188- relax_include_path now applied to non local includes too, in which case
189 it tries to find a unique file with a suffix of the provided name.
190 this is useful for directories that are intended to be symbolic links.
191- support matching and removing #undef
192- support for iteration in ocaml, requires use of -no_show_diff
193- calls to likely and unlikely propagate test expression status to their
194 arguments
ca417fcf
C
195- reuse typedefs and macros from complete parsing when reparsing the
196 transformed code
190f1acf 197- better explanation when presenting glimpse tokens
d3f655c6 198- optimization for an if branch that is just { ... }
4dfbc1c2 199- spatch -control_flow_to_file file.c generates a file file.dot
190f1acf 200- include files with names ending in .cpp if -c++ option is given
6756e19d 201- removed use of the no longer supported sexplib function Conv.hashtbl_of_sexp
f537ebc4 202- add information about which Fedora packages are needed
690d68d1
C
203
204** Bugfix:
3a314143
C
205- improved parsing of expressions to allow ... to the right of operators in
206 more places
ca417fcf
C
207- Fix check_config for Python 2.7 on Fedora 14 (Reported-by: Michael Stefaniuc)
208- Check for ocamlfind in configure (Reported-by: Paul E. McKenney)
209- Postpone use of ocamlfind at runtime to report fewer errors
b23ff9c7 210- Add support for Python 2.4 binding with the provided pycaml library
190f1acf
C
211- Allow '@' in script code. Thanks to Laurent Reveillere for noticing the
212 problem.
213- Remove an optimization of x or true to true in asttoctl2 for the case
214 where x may make a modification, eg the case of -thing ?-thing
215- Allow adding comments before a function.
f537ebc4
C
216- Introduction of newlines in function arguments needs to take into account
217 that the code added by SmPL can include newlines. Thanks to Thomas
218 Gleixner for finding the problem.
690d68d1 219
413ffc02
C
220* 0.2.4
221** Language:
222- scripts now have names and can declare metavariables that are seen by
223 SmPL as identifier metavariables, see demos/{python,ocaml}tococci.cocci
224- declaration (match variable declarations) and field (match structure
225 field declarations) metavariables
c491d8ee 226- matching of array initializations and of enum declarations
413ffc02
C
227
228** Features:
229- compatability with Python 2.7. Thanks to Richard W.M. Jones for pointing
230 out the problem
231- python and ocaml string representations of parameter lists and expression
232 lists
233- try simpler patterns on glimpse failure
785a3008
C
234- graceful and immediate failure when a virtual rule is defined on the
235 command line, but not in the rule
c491d8ee
C
236- spatch returns -1 when a virtual rule is requested that is not supported
237- no transformation when using * with the option -no_show_diff
e6509c05
C
238- expanded +++ file name for match output
239- struct *^* and enum *^* metavariable types
5626f154
C
240- allow an assignment to match a variable initialization, even if multiple
241 variables are declared at the same time.
1eddfd50 242- add the option -recursive_includes
9bc82bae
C
243- added the option -use_idutils. The requires the previous use of the
244 script idutils_index.sh
413ffc02
C
245
246** Bugfix:
247- detect used after metavariables in simple statement metavariable match
785a3008
C
248- allow inheriting position variables over rules that make transformations
249 but depend on virtual rules that are not defined on the command line
250- treat top-level tokens in decl visitor. Thanks to Peter Tummeltshammer
251 for noticing a resulting problem.
c491d8ee 252- improve typing of the result of an assignment expression
e6509c05 253- eliminate some recursive calls in C code parsing to avoid stack overflows
c491d8ee
C
254- better pretty printing of #define when the whole line is removed
255- better pretty printing of asm code containing
256 "::[input]"r"(&coherence_data[i])"
257- allow pretty printing of C code with nameless bit fields
e6509c05
C
258- avoid adding an error message to standard output if ocamlfind is not
259 found
260- struct/union/enum-typed metavariables with a metavariable type name
5626f154
C
261- better management of whitespace between deleted lines. Thanks to
262 Andriy Gapon for noticing the problem.
263- improved parsing recovery for badly parsed struct/enum typedefs
264- drop expanded tokens in sgrep output. Thanks to Andriy Gapon for
265 noticing the problem.
266- constant strings have array type, not pointer type. Thanks to Vasiliy
267 Kulikov for noticing the problem.
1eddfd50
C
268- improve indentation when adding code after a function call with indented
269 arguments.
270- return type of sizeof converted to unsigned long. Thanks to Vasiliy
271 Kulikov for noticing the problem.
272- improve spacing when adding structure initializers. Thanks to Vasiliy
273 Kulikov for noticing the problem.
413ffc02 274
5636bb2c
C
275* 0.2.3
276** Language:
277- <= constraints relating an expression metavariable to one or more
278 inherited expression metavariables that it should be a subexpression of
279- the -inplace and -outplace options have been renamed -in_place and
280 -out_place. -in_place no longer makes a backup. A backup can be
281 requested using the option -backup_suffix, eg -backup_suffix .bk
282- identifiers can be constrained to be different from an inherited
283 identifier metavariable, or from a set containing both concrete
284 identifiers and inherited identifier metavariables.
174d1640 285- support for ocaml scripting
aba5c457 286- ast available in ocaml scripts
5636bb2c
C
287
288** Features:
289- drop inconsistent paths check when only one node was matched
290- allow #define id with no definition
291- attempt to add newlines in the generated code when function calls in the
292 smpl cause passing column 80
293- allow - in front of statement level nests, if everything inside the nest
294 is also -
90aeb998
C
295- 'configure' looks for some system libraries: menhirLib, sexplib, pycaml.
296 Not available libraries are replaced by a copy provided with the sources.
297- added static for a function goes just before what is specified in the
298 semantic patch, not before any comments etc.
299- Add a new option, -ignore_unknown_options, to ease the integration
300 of Coccinelle as a checker in a toolchain.
301- error in python code causes immediate abort of spatch
174d1640 302- use the same algorithm for collecting grep tokens as for collecting
90aeb998 303 glimpse tokens
174d1640
C
304- Add scripts/spatch.bash_completion for automatic completion of common
305 options under the bash shell.
aba5c457 306- Print rule name when a script rule crashes
88e71198
C
307- Allow the declaration of an expression list or parameter list
308 metavariable to specify the number of expressions or parameters,
309 respectively.
5636bb2c
C
310
311** Bugfix:
312- drop inconsistent paths check when only one node was matched
313- better take into account virtual rules when selecting glimpse tokens
314- print diff when only a comment is added
315- the type of the C code !x should be int regardless of the type of x
316- allow python code at the beginning of an included file
317- better adjustment of whitespace when deleting adjacent lines. Thanks to
318 Wolfram Sang for pointing out the problem.
319- allow metavariables to be inherited from included files
320- allow ? on goto
321- more graceful failure on finding a strange character in a macro parameter
322 list
323- support Parameter metavariables
324- add space after the last comma in an added portion of an argument list
90aeb998
C
325- SmPL nameless struct should only match a nameless struct, not a nameless
326 union. Thanks to Peter Tummeltshammer for pointing out the problem.
327- adjustments to storage don't modify inline as well
328- matching and transformation allowed on inline
329- allow removed field between two ... in structure initialization
330- allow removing an entire structure initialization
174d1640
C
331- manage labels within do while 0 macros
332- added space after : in printing a conditional expression. Thanks to Josh
333 Triplett for noticing the problem.
aba5c457
C
334- dropped trailing whitespace when code at the end of a line is deleted.
335 Thanks to Josh Triplett for noticing the problem.
88e71198
C
336- Fixed environment management when script rule uses cache. Thanks to
337 Bissyande for finding the problem.
338- when false matches if with no else
18b1275a
C
339- ensure { ... } with whencode checks to the end of the function. Thanks to
340 Rene Rydhof Hansen for finding the problem.
5636bb2c 341
c3e37e97
C
342* 0.2.2
343** Language:
344- Added ToTestExpression to iso language, see standard.iso for an
345 explanation
346- Added depends on to initialize and finalize script code
347
348** Features:
349- Update Emacs mode (cocci.el) to support 'virtual' rules and fix other
350 keywords sush as 'depends on', 'using', 'disable'
351- better treatment of != 0 in isos, communtativity for ==/!= for all
352 constants
aa721442 353- allow adding // comments and blank lines (even after cocci + code)
c3e37e97
C
354- Add support for multiple -I options
355
356** Bugfix:
357- correct interaction between virtual rules and included .cocci files
358- improvement in treatment of ! in isos, to avoid duplicating + code
aa721442 359- improvement in treatment of metavars as isos, to avoid duplicating + code
c3e37e97
C
360 between toplevel and variable instantiation
361- test expression of smpl conditional, etc no longer assumed to have type
362 int
363- correct + line numbers in the patch produced when using *
364- iso constant metavariable matches an identifier whose name is all capital
365 letters, eg NULL
366- allow / at the end of the name of a directory (-dir) or patch prefix
367 (-patch)
368- dropped space in + code after the binding of a type metavariable that is
369 a pointer type
370- better handling of . or .. in -dir name
371- allow keywords and metavariable names in identifier constraints (not sure
372 keywords is very useful, though)
aa721442
C
373- no lubtype on arguments of && and || in SmPL
374- allow unknown as type for array indices in SmPL
375- support matching of static annotation on functions that are both static
376 and inline
377- support ENOTDIR error in Common.lfile_exists, to allow for the case where
378 an include file is in a subdirectory that exists but is an ordinary file,
379 not a directory.
380- better management of unbound position variables that appear in
381 constraints
382- cause python parser to skip over // comments, hoping that // is not
383 meaningful inside python
384- require + on every line of a multiline comment
d6a55602
C
385- correct calculation of line numbers when there is script code
386- always annotate arguments of && || and ! as test expressions in C code.
c3e37e97 387
ae4735db
C
388* 0.2.1
389** Language:
390- Add virtual identifiers
391- Add coccilib.report and coccilib.trac Python modules
392- coccilib.org and coccilib.report are imported by default but not loaded
393 in the current scope.
394
395** Features:
396- Parse_error_msg now more helpful. New option -verbose_parsing for even
397 more information.
398- Improve Python import handling. They are imported once during script
399 initialization.
400
401** Bugfix:
402- correct treatment of depends on with || for virtual rules
403
7f004419
C
404* 0.2.0
405** Language:
406
407** Features:
408- Remove duplicated code in disjunctions
409- Better error message when grep finds nothing relevant. Thanks to Joe
410 Perches for the suggestion.
411- added -keep_comments option for the unparsing of the transformed code
412- Option "-version" now also gives information about built-in
413 Python binding support.
9f8e26f4
C
414- slightly faster environment manipulation in pathological cases
415- hack added to accept well-formed #define after function header
7f004419
C
416
417** Bugfix:
9f8e26f4 418- Proper consideration of #define macro arguments in checking for the use
7f004419 419 of metavariables and in computing the line numbers of complex terms
9f8e26f4
C
420- Better parsing of included .cocci files
421- Put included .cocci files in the right order
422- Bind position variables only once for #include
423- Fix bug in include_match that caused everything to halt when all matches
7f004419 424 were discarded
9f8e26f4
C
425- Merge unlikely/likely iso rules under a iso rule named unlikely
426- Some fixes to coccicheck rules, thanks to Andrew Lunn
427- Support groups in regular expression, thanks to Michael Stefaniuc
7f004419 428
951c7801
C
429* 0.1.11
430
431** Language:
432- Meta-identifier/function and constant could be filtered from SmPL by
433 regular expressions using the "~=" and "!~=" operators followed by
434 an OCaml regular expression (see man Str) in double quote.
7f004419
C
435- Virtual rules, which can be referenced in depends, and set and unset
436 using the command-line options -D
437- ++ for multiple additions
951c7801
C
438
439** Features:
951c7801
C
440- coccicheck: a framework to check a series of SmPL files on a project
441 see scripts/coccicheck for more information
442
443** Bugfix:
444- bind position variables to the correct starting position in the case of a
445 complex statement such as an if or while. Thanks to Derek Jones for
446 pointing out the problem.
447- checking for non mentioned case lines in switch should be unchecked.
448- space should be printed after sizeof when there are no parentheses around
449 the argument. Thanks to Daniel Walker for pointing out the problem.
450- avoid introducing sharing in propagating ! over () in treatment of isos
451- save_excursion has to handle and rethrow exceptions
452- eliminate unnecessary consideration of CVS strings. Thanks to David
453 Young for pointing out the problem.
454- completely new treatment of statement metavariables
951c7801
C
455- better type checking for macro definitions
456- drop regression testing in -parse_c
457
fc1ad971
C
458* 0.1.10
459
460** Language:
461- declarations allowed in switch, suggested by Derek M. Jones
462
463** Features:
464- use interval timer for timeouts. Thanks to Derek M. Jones for the
465 implementation.
466- more flexible env.sh, thanks to Derek Jones.
467- faster Python invocation
468- simplify unparsing in the sgrep case
469
470** Bugfix:
471- for glimpse there is no point to create a pattern containing a numeric
472 constant because glimpse doesn't index them
473- add spaces after commas in function calls and function headers
474- made python integration more like the ubuntu version
475 http://patches.ubuntu.com/by-release/extracted/debian/c/coccinelle/0.1.5dbs-2/01-system-pycaml
476 this fixes some memory management problems with None, True, and False
477- correct labels associated with a switch in the CFG so that a statement
478 metavariable can match a switch. Thanks to Derek Jones for pointing out
479 the problem.
480- keep switch pattern within switch body. Thanks to Derek Jones for
481 pointing out the problem.
482- Allow expanded tokens to be stored in metavariables, as long as they are
483 not removed. But this does currently allow them in + code, which will
484 produce the expansion. Thanks to Ali-Erdem Ozcan for pointing out the
485 problem.
486- improved adjustment of spacing when code removed at the beginning of a line
487
978fd7e5
C
488* 0.1.9
489
490** Language:
491- allow fresh identifiers to be declared using ## such that the value mixes
492 both strings and previously declared metavariables
493
494** Features:
495- better handling of expanded code containing ##. Now compute the
496 result.
497- more precise warning message for the "'\' outside define".
498 Thanks to Nicholas Mc Guire for pointing out the problem.
499- more precise warning message related to ifdefization.
500 Thanks to Derek Jones for pointing out the problem.
501- we don't create any more certain files in /tmp (they may be a cause
502 of security problems).
503 Thanks to Eugeniy Meshcheryakov for pointing out the problem.
504- More optimization for the case of just deleting a complete function.
505 Allows this to happen without tracing through all the control-flow
506 paths. Thanks to Francois Bissyande for pointing out the problem.
507- prevent code from being added to the beginning or end of a disjunction
508- more information about why a script is not applied when using -debug option
509- added -no_safe_expressions option
510- added -no_loops option. Ignores back edges derived from looping
511 constructs. This is unsafe, but perhaps useful for bug finding, as it can
512 be more efficient.
513- for semantic matches, allow "minus" on same code with multiple
514 environments
515- better error message for mismatch of parenthesis in column 0 with normal
516 parenthesis. Thanks to Derek Jones for pointing out the problem.
517- allow disjunctions on function return types. Thanks to Pierre Habouzit
518 for pointing this out.
519
520** Bugfix:
521- keep disjunction in the proper order for structure initialization fields
522- variables declared in different places should not seem to match each
523 other
524- drop complaints about label metavariables not being used
525- drop test information from the type of an expression when the expression
526 is bound to a metavariable
527- nests should not extend beyond the before and after code, even if the
528 before and after code matches the nest code
529- nests should extend into conditionals that end in error exit
530- take into account metavariables on "else". Thanks to Derek Jones for
531 pointing out the problem.
532- print single quotes on generated character constants
533- better typedef handling in the initialisation/affectation builtin
534 isomorphism, cf -test init_affect_typedef
535- support disjunction of types on variable declaration
002099fc
C
536- allow @ within strings in script code. ignore // comment lines in script
537 code.
538- don't drop + code placed after the transformed code
539- drop spaces produced by removing code before semicolons
540- adjusted spacing within generated code
541- less verbose -sp. Thanks to Derek Jones for pointing out the problem.
542- accept multiple type names in a SmPL typedef declaration.
978fd7e5 543
708f4980
C
544* 0.1.8
545
546** Language:
547
548** Features:
549- Metavariables now capture the cpp code contained within their definitions
550- When - fragments are separated by ... or nest boundaries in the semantic
551 patch, but end up matching adjacent source code, the comments, cpp code
552 and whitespace that are between them are not deleted.
553- better parsing of C: do expansion of macros only when needed when
554 have actually a parse error and also leverage the definition of macros
555 in the parsed file (or in a optional_standard.h file passed as a parameter).
556 This should reduce the need for many hardcoded definitions in standard.h
557- new semantics for the -macro_file option, by default now expand macros
558 only when necessary. To force use the -macro_file_builtins option instead.
559- a new -extract_macros command line action to help the parser. Works with
560 the -macro_file option. e.g.
561 $ ./spatch -extract_macros ~/linux > /tmp/alldefs.h
562 $ ./spatch -macro_file /tmp/alldefs.h -sp_file foo.cocci -dir ~/linux
563- removed -D macro_file option, not consistent with what -D usually means
564- reattempt to be more efficient for statement metavariables that are just
565 placeholders (ie, no modification, no reuse)
566- triples now returned from ctl in sorted order. The main key is the
567 state. On the other hand, the state order does not always agree with the
568 order of appearance in the code.
569- spatch is now less verbose on the things it does yet handle. Less confusing
570 for new users.
571- slightly better error report. Thanks to Derek Jones for the suggestion.
572- added the options -linux_spacing and -smpl_spacing. -linux_spacing
573 causes spatch to follow the spacing conventions of Linux, while
574 -smpl_spacing causes spatch to follow the spacing in the semantic patch.
575 -linux_spacing is the default.
576- more informative error reporting for the already tagged token case.
577 Thanks to Erik Hovland for the suggestion.
578
579** Bugfix:
580- better parsing of declare macro at toplevel and in structure.
581 cf -text xfield
582- allowing back typedef names for fieldname
583- better printing of else in generated code
584- slightly better type inference for binary operators.
585- clear out declarer names and iterator names between SmPL files (for
586 -testall)
587- better parsing and type checking of macro type aliases. Cf -test macro_int16.
588 Thanks to Li Yingtong for pointing out the problem.
589- make insert_virtual_positions tail rec, avoid stack overflow pb.
590 Thanks to Diego Liziero <diegoliz@gmail.com> for pointing out the
591 problem.
592- Better type inference for arithmetic binary operators
593 Thanks to Li Yingtong for pointing out the problem.
594- Better type inference for constants
595 Thanks to Li Yingtong for pointing out the problem.
596- move computing of adjacency information for semantic patches to after
597 application of isomorphisms, because isomorphisms can introduce "..."
598- compute adjacency information for negated ...
599- record with each transformation site the set of indices of the witness
600 trees that caused the transformation site to come about. Whitespace and
601 comments between remove tokens associated with disjoint witness trees is
602 not removed.
603- correct treatment of function pointer typed parameters in the SmPL ast0
604 visitor.
605- better parsing error message and error recovery when comments are not ended,
606 when some macros have a weird body, and when some switch have a weird
607 Body.
608 Thanks to Derek Jones for pointing out the problem.
609- better detection and passing of "dangerous" ifdefs, cf -test
610 double_switch.
611- dropped the separation of decls and body in Seq. This gives better
612 positioning of the bindings of metavariables shared between them.
613 Thanks to Erik Hovland for an example that shows the problem.
614
615** Internals:
616- supress warning in compiling ocamlsexp (warning caused by a new behavior
617 of cpp used internally in processing files in ocamlsexp/)
618
b1b2de81
C
619* 0.1.7
620
621** Language:
622- initialize and finalize script code, cf demos/initial_final.cocci
623
624** Features:
625- -iso_limit option to limit the depth of isomorphism application
626- with the dir option, the include path is implicitly set to the "include"
627 subdirectory of the specified directory, if the option -I is not used.
628- give a seed for the name of a fresh identifier
629- better handling of cpp "constructed" identifiers as in a##b, that in
630 the futur will make it easier to match over those idents.
631 cf tests/pb_parsing_macro.c. Thanks to Ali-Erdem Ozcan for pointing
632 out the problem. A new "parsing hack hint" is also available:
633 YACFE_IDENT_BUILDER, cf standard.h.
634
635** Bugfix:
636- drop excessive "optimization" in ctl generation for while and for loops
637- allow . as the name of the directory
638- for type inference for an assignment, take the type of the right-hand
639 side expression, not the type of the assigned variable
640- allow for with a declartion in the first header element, as in C++
641 (partial support)
642- allow for matching against variable declarations that include only
643 storage, eg static, but no type at all.
644- allow for matching against types that contain both short/long and int
645- allow the type metavariable in the SmPL code "unsigned T" to match a T
646 that is a type consisting of more than one word, eg long int.
647- -ifdef_to_if option made to process nested ifdefs
648 (partial support)
649
650** Internals:
651- improve and fix installation process (usable on BSD)
652- improve and fix testing process
653- apply patches from Eugeniy Meshcheryakov
654- reorganize the way we parse C identifiers, especially concatenated cpp
655 identifiers as in a##b. This may lead to some regressions as we may
656 not parse as much code as before.
657- removed popl/ and popl09/ and popl related stuff from official distrib.
658
0708f913 659* 0.1.6
113803cf 660
b1b2de81
C
661** Language:
662- the ability to add comments
663
113803cf 664** Features:
0708f913
C
665- grouping of generated rules with -hrule option
666- handling of special coccinelle comments
667 /* {{coccinelle:skip_start}} */ and
668 /* {{coccinelle:skip_end}} */
669 allowing to give more hints to the C parser.
670 Thanks to Flavien@lebarbe.net for the idea.
0708f913
C
671- the ability to print the values of more (but not all) kinds of
672 metavariables from python
673- new vim SmPL mode.
674 Thanks to Alexander Faroy.
675
676** Bugfix:
677- consider the ident tokens also in the 2 lines before the error line for the
678 10-most-problematic-parsing-errors diagnostic.
679- SmPL parser allows cast as the argument of a pointer
680- SmPL type checker allows enum as an array index
681- Better generation of fresh metavariables names in hrule
682- no more warnings about things that should be metavariables when there is
683 a disjunction in a function position
684- bugfix in parser, better error message.
685 Thanks to Ali-Erdem OZCAN <ali-erdem.ozcan@st.com> for the bug report.
686
687** Internals:
688
689* 0.1.5
690
691** Language:
113803cf
C
692- added initialiser metavariable
693- added sequences of designators in structures
0708f913
C
694
695** Features:
113803cf
C
696- improved printing of the C code corresponding to metavariables
697- improved printing when code (eg declarations) is removed at the beginning
698 of a block, and then is followed by a blank line
699- slightly less verbose error reporting in parsing_hacks
700
701** Bugfix:
702- fixed some problems with parsing SmPL code where a nest appears after a |
703- better treatment of { }, form in macros wrt unparse_c
704- less quiet for -parse_c
705- improve parsing heuristics regarding macro statement
706
707** Internals:
708
faf9a90c
C
709* 0.1.4
710
0708f913
C
711** Language:
712- long long added to SmPL
713
708f4980
C
714** Documentation:
715- add grammar reference and spatch command line options reference
716
faf9a90c
C
717** Features:
718- can match patterns of the form unsigned T or signed T, where T is a
719 metavariable
720- dropped the sizeof_parens isomorphism, which was made redundant by the
721 paren isomorphism
722- simple rule generation
faf9a90c
C
723
724** Bugfix:
725- trailing , ; and ) no longer left on a line by themselves
726- better treatment of error exit when the searched for code matches the
727 error exit condition.
728- fix incorrect treatment of parentheses in test_exps that could allow +
729 code to be added twice
730- don't ask whether iterator names and declarer names should be declared as
731 metavariables.
732- slightly better support for expression list metavariables.
733- short and long allowed for array index types in SmPL
734- more restrictions on type inference for pointer arithmetic in SmPL
735- allow isomorphisms to apply when + code is anywhere within all - terms
736- changed order of printing const and volatile
737- allow eg ... <... in plus code
738- better formatting of generated if/while/etc. code
739- better parse error reporting when the problem is at the end of the file
740
741** Internals:
742- isomorphisms don't apply under signed/unsigned, to prevent the creation
743 of things like unsigned signed int. Need a better solution for this.
744
91eba41f
C
745* 0.1.3
746
747** Features:
748- help in building the configuration macro file. The -parse_c action
749 now returns the 10 most frequent parsing errors. This give useful
750 hints to extend standard.h.
751
752** Bugfix:
753- positions no longer allowed on \(, \|, and \)
754- improved propagation of negation for isos in the presence of parens
755- convert Todos in flow graph construction to recoverable errors
756- fixed bug in treatment of when != true and when != false, to allow more
757 than one of them per ...
758- improve parsing of typedef of function pointer.
759- improve typing.
760- parsing and typing support for old style C function declaration.
761- consider position variables as modifications when optimizing the
762 translation into CTL of function definitions
763
764** Internals:
765
485bce71
C
766* 0.1.2
767
768** Bugfix:
769- better handling of ifdef on statements in control flow graph.
770- transform files even if they do not end in .c (thanks to Vegard Nossum)
771
772** Internals:
773- merge code of yacfe
774
1be43e12
C
775* 0.1.1
776
0708f913 777** Language:
485bce71 778 - support for initializer at toplevel, cf -test substruct
1be43e12 779
34e49164
C
780* 0.1
781
782** first public release of the source code:
783
0708f913 784** Language:
34e49164
C
785 - embeded python scripting
786 - position
787
0708f913
C
788** Features
789
34e49164
C
790* beta
791
792** first public release of the binary
793
794* alpha
795
796** Features
797 - lots of features ... look at coccinelle research papers and tutorials.