summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Dafny: did a little to extend the support of labeled statements in ↵Gravatar Unknown2012-09-10
| | | | refinements (things like multiple labels are still not thought through very well)
* Dafny: improved checking of inherited postconditions (in refinements)Gravatar Unknown2012-09-10
|
* Boogie: added /tracePOs option for printing out number of proof obligations ↵Gravatar Unknown2012-09-10
| | | | without also printing out the verification times
* MergeGravatar Rustan Leino2012-09-10
|\
* | ignore Chalice/binGravatar Rustan Leino2012-09-10
| |
* | MergeGravatar Rustan Leino2012-09-10
|\ \
| * | Find implementations of interface methods for dynamic dispatch, not justGravatar Unknown2012-09-09
| | | | | | | | | | | | overrides of virtual methods.
* | | DafnyExtension: addressed a class initialization order problemGravatar Rustan Leino2012-09-09
| | |
* | | Dafny: allow 'decreases *' (that is, non-terminating recursion) on ↵Gravatar Rustan Leino2012-09-09
| | | | | | | | | | | | tail-recursive methods
| * | Avoid creating a dynamic dispatch table for GetHashCode and ToString: it endsGravatar Unknown2012-09-09
| | | | | | | | | | | | | | | up creating code that the Boogie parser gets a stack overflow while trying to parse!
| * | Moved the statement traverser's operand stack (used for explicit push/pop/dupGravatar Unknown2012-09-09
|/ / | | | | | | | | | | | | | | | | | | in the code model) into the sink so that the different statement traversers used for things like if-then-else statements share the same stack. Fixed a problem in the dispatch table for whole program virtual dispatch so it works for generic methods. Found input that either crashed the translator or caused it to produce bad Boogie: "fixed" it by having the translator thrown an exception so the method containing the bad code is skipped.
* | MergeGravatar Unknown2012-09-07
|\ \
* | | Dafny: Added detection and support for tail recursive calls (and an ↵Gravatar Unknown2012-09-07
| | | | | | | | | | | | optional "tailrecursion" attribute). Also, let the cloner also clone attributes.
* | | DafnyExtension: new color (violet) for buffer snapshot sent to the verifierGravatar Unknown2012-09-07
| | |
| * | Implement support for alternative SMT solvers -- CVC3 and CVC4Gravatar Peter Collingbourne2012-09-06
| | |
| * | Dafny: Fixed a test that would fail with Z3 4.1.Gravatar wuestholz2012-09-07
| | |
* | | MergeGravatar Unknown2012-09-05
|\| |
* | | Dafny: fixed typo in latex modeGravatar Unknown2012-09-05
| | |
| * | Moved point at which preprocessed output is shown.Gravatar Unknown2012-08-31
| | |
| * | Shared state is now properly abstracted in requires clauses.Gravatar Unknown2012-08-31
| | |
* | | DafnyExtension: don't duplicate names of inherited identifiersGravatar Unknown2012-08-30
| | |
* | | Dafny: for refinements, don't consider a newly provided predicate body to be ↵Gravatar Unknown2012-08-30
| | | | | | | | | | | | an extension--clients don't need to be reverified if the body is new, only an extensions to a previous definition need to be
* | | DafnyExtension: changed how "_" is displayed (now display as a keyword, not ↵Gravatar Unknown2012-08-30
| | | | | | | | | | | | as an identifier definition)
* | | Dafny: allow "_" as don't-care variable nameGravatar Unknown2012-08-30
| | |
| | * Dafny: allow more corecursive calls for copredicatesGravatar Rustan Leino2012-08-30
| |/ |/|
| * MergeGravatar Unknown2012-08-30
| |\ | |/ |/|
| * Barriers now handled uniformly via bugle_barrier.Gravatar Unknown2012-08-30
| | | | | | | | | | | | | | | | | | | | | | Improved loop invariant inference so that procedure formal parameters are treated as constants. (This involved fixing a bug where a Formal was being dualised to a LocalVariable.) Fixed problem in GPUVerifyBoogieDriver where source location information was being looked for via a file name, rather than a full path. Cleaned up some code in GPUVerifyBoogieDriver.
* | Dafny: fixed bug in checking postconditions of functions that mention the ↵Gravatar Unknown2012-08-29
| | | | | | | | result the function itself
* | DafnyExtension: fixed bug (omitted case: VarDeclStmt has no Update component)Gravatar Unknown2012-08-29
| |
* | Dafny: fixed contract violation in parser (for non-parsing Lhs production)Gravatar Unknown2012-08-29
|/
* A small fix in variable definition analysis.Gravatar Unknown2012-08-29
|
* Added generation of invariants to restrict source location to sensible values.Gravatar Egor Kyshtymov2012-08-28
| | | | | Refactored Make...Variable() and FindOrCreate...Variable() functions to take a variable name as a parameter rather than the variable itself.
* DafnyExtension: don't reverify a buffer with no changesGravatar Rustan Leino2012-08-27
|
* Dafny: fixed contract bug in resolverGravatar Rustan Leino2012-08-27
|
* Fix the whole-program translator so that exception handling is doneGravatar Unknown2012-08-23
| | | | | | | | | | correctly for virtual method calls. Changed the whole-program override for VisitMethodCall so that it creates a new CodeModel expression that does not contain virtual method calls and then translate that newly built expression. Treat type equality (and inequality) specially: translate it directly to a type test instead. But do it just for the idiom: "o.GetType == typeof(T)". In that case, turn it into "is#T$T($DynamicType(o))".
* Make the modelExceptions option an integer.Gravatar Unknown2012-08-22
| | | | | | | | | | | | | | | 0 means no modeling at all. 1 (which can be specified only if also specifying whole program translation) means that a fixpoint analysis will be done on all of the translated assemblies to compute the set of exceptions that each method can throw (even though we're using only the fact that a method throws anything at all, not the specific exceptions it can throw) so only calls to methods that can throw an exception have a branch after the call that checks to see if an exception has been thrown. Methods that are defined outside of the set of translated assemblies are assumed to *not* throw any exceptions! 2 means that every method is considered to be one that can throw an exception.
* Added group information to race error reporting.Gravatar Egor Kyshtymov2012-08-22
|
* Boogie build succeededGravatar CodeplexBot2012-08-22
|
* MergeGravatar Rustan Leino2012-08-21
|\
* | DafnyExtensions: better error handlingGravatar Rustan Leino2012-08-21
| |
| * Extra debugging output for HoudiniGravatar Unknown2012-08-21
|/
* Dafny and Boogie: get rid of 'static' fields in parserGravatar Rustan Leino2012-08-21
|
* Fixed problem where SOURCE variables were not being generated.Gravatar Unknown2012-08-20
|
* Added functionality for race error reporting.Gravatar Egor Kyshtymov2012-08-20
|
* DafnyExtension: fixed bad mergeGravatar Rustan Leino2012-08-17
|
* MergeGravatar Rustan Leino2012-08-17
|\
* | DafnyExtension: improved concurrency behaviorGravatar Unknown2012-08-17
| |
| * DafnyExtension: report out-of-time and out-of-memory errorsGravatar Rustan Leino2012-08-17
|/
* DafnyExtension: toward some fixesGravatar Unknown2012-08-17
|
* DafnyExtension: simplified display of type names and field namesGravatar Unknown2012-08-17
|