Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

compiler could detect "entry iterator pattern" in comprehensions #1262

Open
jurgenvinju opened this issue Sep 23, 2019 · 0 comments
Open

compiler could detect "entry iterator pattern" in comprehensions #1262

jurgenvinju opened this issue Sep 23, 2019 · 0 comments

Comments

@jurgenvinju
Copy link
Member

map[&K, &V] M = ...
{<k,v> | &K k <- M, &V v <- M[k]}

Here we see the typical generation of keys k from a map M, only to iterate directly again over the values v of every M[k]. The same result would be obtained if Rascal would iterate over key/value pairs from a map generator instead of over the keys:

{<k,v> | <&K k, &V v> <- M}

but that is not the semantics of the map generator...

If the compiler could detect the comprehension pattern it could directly call IMap.entryIterator and bind v and u in the same order as the comprehension does, but without having to construct all the intermediate result sets of M[k] (and looking them up in the first place).

The computational complexity of the current comprehension pattern is quadratic, while the entryIterator solution would be linear. Also the pressure on memory allocation would reduce drastically.

The current workaround is that programmers must call toRel from the Relation library. They should now about this, and also toRel has an overhead of constructing the intermediate relation which the compiler would not have since it would only allocate the entryIterator.

@jurgenvinju jurgenvinju changed the title compiler could detects entry iterator pattern in comprehensions compiler could detect "entry iterator pattern" in comprehensions Sep 23, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant