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

Optimizations #8

Open
5 of 11 tasks
akovari opened this issue Jan 20, 2019 · 0 comments
Open
5 of 11 tasks

Optimizations #8

akovari opened this issue Jan 20, 2019 · 0 comments
Assignees
Milestone

Comments

@akovari
Copy link
Member

akovari commented Jan 20, 2019

  • tuples represented as arrays of objects (this wouldn't allow for specific tuple extensions such as FileTuple)
  • rewrite BinaryOperationNode using Specialization
  • see if operations with constants can be be calculated in the parser (1 2)
  • check lambda lifting. Lift lambdas into non-closures unless necessary, so stack doesn't have to be restored when it is pure function
  • check if lambdas capture any variables, if not, avoid materializing stack
  • avoid using java collections in pattern matching
  • allow let expression to be truly concurrent
  • make sure promises are unwrapped whenever possible before calling map
  • see if TruffleBoundary can be removed from FrameSlotAliasNode and FrameSlotAliasNode and AnyValueNode
  • make module/function cache indexed by Seq, not String
  • cache resolved dependencies in the PatternLetNode
akovari added a commit that referenced this issue May 17, 2019
implements #8 - Non-blocking IO & concurrency
akovari added a commit that referenced this issue Aug 13, 2019
@akovari akovari added this to the beta release milestone Feb 23, 2020
@akovari akovari self-assigned this May 24, 2020
akovari added a commit that referenced this issue Jul 31, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant