Skip to content
Snippets Groups Projects
Commit 728c6c8b authored by Julien Signoles's avatar Julien Signoles
Browse files

translate TODO into English

parent 7542c9c3
No related branches found
No related tags found
No related merge requests found
...@@ -2,26 +2,20 @@ ...@@ -2,26 +2,20 @@
# FEATURE WISHES # # FEATURE WISHES #
################## ##################
- [Bernard] avoir une fonction e_acsl_trace_behavior(char *bhv_name) {} - [Bernard] implement a function e_acsl_trace_behavior(char *bhv_name) {}
à appeler dès qu'un behavior est activé which would be called anytime a behavior is activated
- [Yannick] Logic functions - [Yannick] Logic functions
- [Nikolaï] temporal memory properties - [Nikolaï] temporal memory properties
- memory profiling - memory profiling
- [Guillaume] ajouter les annotations de RTE dans la table des annotations - [Guillaume] add the RTE annotations generated by E-ACSL in the Frama-C
(avec une option) annotation table (possibly through a new command line option)
- [David Mentré] tset - [David Mentré] support of tset
- [Guillaume] voir les valeurs quand la spec échoue, voir Boogaloo@RV'13 à ce - [Guillaume] when a verification fails at runtime, possibility of seeing the
sujet values of each involved left-values (cf Boogaloo@RV'13).
- [Tout le monde] scripts de compilation du programme généré - [Everyone] provide the compilation scripts of the generated program
- [Enseignement] assigns - [Teaching purpose] support of assigns
- multithreading - multithreading
- Required API for Stady
=====
- Voir avec Guillaume et Nikolaï ce dont ils ont besoin comme API pour faire
leur génération de code pour les entrées de PathCrawler...
==> problème de la connaissance de la taille des tableaux
(Pathcrawler_dimension)
=====
##################### #####################
# E-ACSL CONSTRUCTS # # E-ACSL CONSTRUCTS #
...@@ -42,22 +36,21 @@ ...@@ -42,22 +36,21 @@
######## ########
- grep TODO *.ml* - grep TODO *.ml*
- Gestion du mode -lib-entry - Support of -lib-entry
- générer les delete des globals dans une fonction séparée, comme pour les init. - generate 'free' statements of global in a separate function
- generate guard for \offset, \block_length and \base_addr (similarly to initialization).
- generate guards for \offset, \block_length and \base_addr
(\offset(p) must ensures that p is valid) (\offset(p) must ensures that p is valid)
- don't generate code for properties with status valid_under_hyp when we know - don't generate code for properties with status valid_under_hyp when we know
that the hyp will be generated that the hyp is (or is going to be) generated
- use value analysis whenever possible instead of our own imprecise analysis
- use checked assigns whenever possible in the analysis - use checked assigns whenever possible in the analysis
checked property = valid property or property for which code will be generated checked = already verified or verified at runtime
- RTE avec du code GMP - RTE on GMP code
- ne pas appeler __malloc et __free quand pas nécessaire. Nécessite d'avoir - call custom __malloc et __free only when required, and use standard malloc
malloc, __malloc, __e_acsl_malloc, __e_acsl__malloc (idem pour free) and free in the other cases.
- analysis: optimize it by performing no join over sets anymore - RTE: eliminate redundant checks (e.g. on **p)
- analysis: fixed incorrectness in presence of recursive functions - default output of e_acsl_assert should be in the same format than standart
- RTE: potential duplication (e.g. with **p) error messages (nicer in Emacs for instance)
- default output of e_acsl_assert in the format of standart error messages
- some calls to __eacsl_memory_debug are missing in debug mode - some calls to __eacsl_memory_debug are missing in debug mode
- translate only once the assumes clause in presence of a pre- and a - translate only once the assumes clause in presence of a pre- and a
post-condition post-condition
...@@ -68,25 +61,25 @@ ...@@ -68,25 +61,25 @@
- see BTS - see BTS
- see Chapter "Known Limitations" of the User Manual - see Chapter "Known Limitations" of the User Manual
- variable GMP potentiellement initialisée mais non utilisée en présence de \at - GMP variables are possibly initialized but never used in presence of \at
(voir test result.i, cas -e-acsl-gmp-only) (see test result.i, case -e-acsl-gmp-only)
- comparaisons qui aboutissent à du C incorrect - ACSL comparisons may lead to generate incorrect C code
==> comparaison de chaînes litérales ==> comparison of literal strings
(voir tests other_constants.i et comparison.i) (see tests other_constants.i et comparison.i)
--> dépend de la sémantique d'ACSL non fixée --> what is the exact ACSL semantics?
--> veut-on le transformer en égalité des caractères avec un ordre lexico --> use a lexicographical ordering based on an equality over characters, or
ou veut-on générer une erreur (comportement non **spécifié** du C). generate an error (unspecified C behavior)?
==> comparaison de pointeurs --> générer une erreur (merci RTE?) ==> pointer comparisons --> may generate an error (use RTE?)
- \at incorrect si StmtLabel faisant référence au stmt courant (voir test at.i) ==> equality of logical arrays
- incorrect d'utiliser Pre, Post, Here, Old dans stmt contract ==> equality of reals --> convert into an equality of double
(même problème que Jessie: cf. BTS #72) (see tests/e-acsl-runtime/bts1307.i).
(voir aussi result.i et ./at_stmt_contract.i) - incorrect translation of \at if the label refers to the current statement (see
- interprétation des tableaux logiques test at.i)
[Dillon] Windows - issue when using labels Pre, Post, Here, Old in a stmt contract
(similar issue than Jessie, cf. BTS #72)
(see tests result.i and ./at_stmt_contract.i)
- interpretation of logical arrays
- \valid(p) is not true if p is a const pointer (depend on -const-readonly) - \valid(p) is not true if p is a const pointer (depend on -const-readonly)
- utiliser == avec des real en arguments : c'est convertit en une égalité sur
des floating points, qui ne fait notoirement pas ce qu'on veut
(voir tests/e-acsl-runtime/bts1307.i).
[to be check]: no call to full_init or initialize for the assigned result of a [to be check]: no call to full_init or initialize for the assigned result of a
function call function call
...@@ -101,9 +94,9 @@ function call ...@@ -101,9 +94,9 @@ function call
# TESTS # # TESTS #
######### #########
- inclure exemple du E-ACSL Reference Manual - add examples from E-ACSL Reference Manual
- inclure exemple du E-ACSL User Manual - add examples from E-ACSL User Manual
- inclure exemple du E-ACSL Tutorial - add examples from E-ACSL Tutorial
- currently, tests require a non-free version of Frama-C (built-ins Value) - currently, tests require a non-free version of Frama-C (built-ins Value)
- [Guillaume] tests de non-régression de temps d'exécution (+ conso mémoire) - [Guillaume] how to test execution time/memory consumption of E-ACSL in order
pour voir les dégradations/gains de performance. to detect regression about these behaviors?
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment