Skip to content
Snippets Groups Projects
  1. Nov 16, 2016
  2. Oct 03, 2016
  3. Sep 20, 2016
  4. Jul 27, 2016
  5. Jun 14, 2016
  6. May 27, 2016
  7. Mar 21, 2016
  8. Mar 03, 2016
  9. Feb 20, 2016
  10. Feb 17, 2016
  11. Feb 13, 2016
  12. Feb 11, 2016
  13. Feb 04, 2016
  14. Jan 22, 2016
  15. Jan 16, 2016
  16. Jan 12, 2016
  17. Dec 15, 2015
  18. Nov 18, 2015
  19. Nov 16, 2015
  20. Feb 03, 2017
  21. Apr 22, 2015
  22. Feb 08, 2015
  23. Jan 27, 2015
    • Robbert Krebbers's avatar
      Let the malloc expression non-deterministically yield NULL. · fdcc90dd
      Robbert Krebbers authored
      * This behavior is "implementation defined" and can be turned on and off
        using the Boolean field "alloc_can_fail" of the class "Env".
      * The expression "EAlloc" is now an r-value of pointer type instead of an
        l-value.
      * The executable semantics for expressions is now non-deterministic. Hence,
        some proofs had to be revised.
      fdcc90dd
  24. Dec 17, 2014
  25. Nov 23, 2014
  26. Nov 06, 2014
  27. Sep 30, 2014
  28. Sep 03, 2014
  29. Aug 06, 2014
  30. Aug 04, 2014
  31. Jun 25, 2014
    • Robbert Krebbers's avatar
      Fix bugs in pointer operations · baaee9e0
      Robbert Krebbers authored
      * Equality comparison of NULL and non NULL pointers should be defined
      * Pointer comparisons, casts, and truth should only be defined for pointers
        that are alive
      * Treat dead pointers as indeterminate values in refinements. The proofs that
        all operations preserve refinement indicate that dead pointers can be indeed
        by replaced by anything without affecting the program's behavior.
      baaee9e0
  32. Jun 23, 2014
  33. Jun 16, 2014
    • Robbert Krebbers's avatar
      Changes in preparation of the C type system and C front-end language · 3503a91f
      Robbert Krebbers authored
      Major changes:
      * Make void a base type, and include a proper void base value. This is necessary
        because expressions (free, functions without return value) can yield a void.
        We now also allow void casts conforming to the C standard.
      * Various missing lemmas about typing, weakening, decidability, ...
      * The operations "free" and "alloc" now operate on l-values instead of r-values.
        This removes some duplication.
      * Improve notations of expressions and statements. Change the presence of the
        operators conforming to the C standard.
      
      Small changes:
      * Use the classes "Typed" and "TypeCheck" for validity of indexes in memory.
        This gives more uniform notations.
      * New tactic "typed_inversion" performs inversion on an inductive predicate
        of type "Typed" and folds the premises.
      * Remove a horrible hack in the definitions of the classes "FMap", "MBind",
        "OMap", "Alter" that was used to let "simpl" behave better. Instead, we have
        defined a tactic "csimpl" that folds the results after performing an
        ordinary "simpl".
      * Fast operation to remove duplicates from lists using hashsets.
      * Make various type constructors (mainly finite map implementations) universe
        polymorphic by packing them into an inductive. This way, the whole C syntax
        can live in type, avoiding the need for (slow) universe checks.
      3503a91f
Loading