summaryrefslogtreecommitdiff
path: root/src/Interpreter.ml (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix a mistake with the input symbolic values not being linked to theSon Ho2022-01-271-6/+20
| | | | input variables when translating ASTs from symbolic to pure
* Cleanup a bit by removing useless `open`Son Ho2022-01-271-1/+0
|
* Change the signatures of several functions in Interpreter.mlSon Ho2022-01-271-18/+20
|
* Introduce Contexts.fun_contextSon Ho2022-01-271-5/+11
|
* Start working on TranslateSon Ho2022-01-271-4/+3
|
* Start actually generating symbolic ASTs for the backward functionsSon Ho2022-01-261-6/+14
|
* Make more progress on generating the symbolic AST for the backwardSon Ho2022-01-261-4/+4
| | | | functions
* Make good progress on generating the symbolic AST for the backwardSon Ho2022-01-261-22/+90
| | | | functions
* Make progress on translationSon Ho2022-01-261-20/+63
|
* Make progress on translationSon Ho2022-01-261-84/+78
|
* Do a minor cleanupSon Ho2022-01-261-11/+0
|
* Cleanup a bitSon Ho2022-01-261-1/+1
|
* Use the signatures in Assumed.ml in InterpreterStatements and remove theSon Ho2022-01-261-1/+1
| | | | functions which return instantiated signatures for the assumed functions
* Add some sanity checks and commentsSon Ho2022-01-261-2/+2
|
* Start working on translate_end_abstractionSon Ho2022-01-251-1/+1
|
* Implement SymbolicToPure.translate_fun_sigSon Ho2022-01-251-7/+9
|
* Finish updating the calls to the synthesis functions to generate theSon Ho2022-01-211-1/+3
| | | | symbolic AST
* Update InterpreterSon Ho2022-01-201-15/+32
|
* Update type_context to have to have a type info field, use maps insteadSon Ho2022-01-181-2/+7
| | | | of lists to store the types/functions definitions
* Introduce abs_kind, to keep track of abstractions' originsSon Ho2022-01-151-1/+1
|
* Add sv_kind ("symbolic value kind") to track the origin of the symbolicSon Ho2022-01-151-1/+3
| | | | values
* Start working on Collections.mlSon Ho2022-01-151-6/+1
|
* Start working on greedy symbolic value expansion and expansion beforeSon Ho2022-01-141-30/+31
| | | | assignment
* Update aproj to make AEndedProjLoans take an `aproj option` and add theSon Ho2022-01-141-1/+3
| | | | AIgnoredProjBorrows variant
* Update the projectors to ignore values when they don't contain regionsSon Ho2022-01-131-1/+3
| | | | of interest
* Factorize initialize_symbolic_context_for_fun andSon Ho2022-01-071-28/+9
| | | | eval_function_call_symbolic_from_inst_sig and make minor modifications
* Make more modifications to loggingSon Ho2022-01-071-2/+5
|
* Add an optional borrow identifier to AIgnoredMutBorrow, introduce theSon Ho2022-01-071-1/+14
| | | | AEndedIgnoredMutBorrow variant and fix a couple of bugs
* CleanupSon Ho2022-01-061-1/+0
|
* Make the symbolic, borrow, region and abstration counters global andSon Ho2022-01-061-8/+3
| | | | stateful
* Remove the symbolic_proj_comp def and make the set of ended regions aSon Ho2022-01-061-0/+1
| | | | field in the eval_ctx struct
* Fix another bugSon Ho2022-01-061-5/+5
|
* Make minor modificationsSon Ho2022-01-061-6/+8
|
* Fix minor bugsSon Ho2022-01-061-6/+3
|
* Implement tests for the symbolic interpreterSon Ho2022-01-061-18/+8
|
* Make good progress on implementing utilities to test symbolic executionSon Ho2022-01-061-22/+151
|
* Cleanup the dependencies a bitSon Ho2022-01-061-18/+0
|
* Move some definitions from Interpreter to InterpreterStatementsSon Ho2022-01-061-894/+1
|
* Move some functions from Interpreter to InterpreterExpressionsSon Ho2022-01-061-437/+1
|
* Move some definitions from Interpreter to InterpreterPathsSon Ho2022-01-061-815/+1
|
* Move some functions from Interpreter to InterpreterExpansionSon Ho2022-01-061-483/+1
|
* Move some functions from Interpreter to InterpreterBorrowsSon Ho2022-01-061-1099/+1
|
* Move some functions from Interpreter to InterpreterProjectorsSon Ho2022-01-061-635/+2
|
* Cleanup a bitSon Ho2022-01-051-22/+17
|
* Finish implementing evaluation of non-local function calls in symbolicSon Ho2022-01-051-69/+71
| | | | mode
* Make progress on eval_non_local_function_call_symbolicSon Ho2022-01-051-53/+85
|
* Cleanup a bitSon Ho2022-01-051-11/+0
|
* Split eval_local_function_call_symbolic to isolate a function which canSon Ho2022-01-051-40/+67
| | | | be reused for non-local function calls
* Implement apply_proj_borrows_on_input_valueSon Ho2022-01-051-8/+19
|
* Make progress on implementing the symbolic evaluation for the non-localSon Ho2022-01-051-45/+88
| | | | function calls