scala-am icon indicating copy to clipboard operation
scala-am copied to clipboard

(Abstract) Abstract Machine Experiments using Scala

Results 9 scala-am issues
Sort by recently updated
recently updated
newest added

Primitive values in the abstract interpreter are currently just implemented as Scala `objects`s (cf. `scalaam.language.scheme.primitives.SchemeLatticePrimitives`). As a result, the same primitive will get a different hash code on different runs...

enhancement
Scheme
normal priority

Currently, Scala-AM contains a lot of different classes and traits, representing values, environments, pointers, ... (Almost) all of these classes implement a toString method, allowing structured output (e.g. a lambda...

enhancement
low priority

The Scheme parser cannot fully parse - test/WeiChenRompf2019/toplas98/lattice.scm - test/WeiChenRompf2019/toplas98/lattice-processed.scm for a yet unknown reason. Also note that the benchmarks use an unknown identifier `void`, but this cannot be the...

Bug
Scheme
high priority
Scheme parser

The Scheme parser fails when a file ends on a comment.

Bug
Scheme
normal priority
Scheme parser

Currently, when the Scheme parser fails, a fixed error message is displayed. However, the parser may fail due to multiple reasons. In every case, the same error is thrown. This...

enhancement
Scheme
low priority
Scheme parser

Currently only simple benchmarks are used for soundness tests. Enabling all of the benchmarks results in the tests failing, due to memory usage. It is easy to enable them back...

enhancement
Test suite
Scheme
normal priority

Similar to the new representation of cons-cells, the representation of vectors in Scheme should be modified. Currently, in `ModularSchemeLattice.scala`, a vector and all its elements are represented as a single...

enhancement
Scheme
normal priority

The soundness tests can be improved by checking the entire store of the analysis against the store of the concrete interpreter, similar to what we already do for the precision...

enhancement
Test suite
Scheme
low priority

The concrete Scheme interpreter is currently written in a recursive style. This however causes stackoverflow errors on some benchmarks, meaning they cannot be used for testing.

enhancement
Test suite
Scheme
low priority