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

Add functions, concurrency, wait/post (type checking is not complete) #51

Merged
merged 45 commits into from
Apr 18, 2024

Conversation

leonidas1712
Copy link
Contributor

@leonidas1712 leonidas1712 commented Apr 16, 2024

  • Function calls

    • Parsing
    • Compilation
    • Type check
  • Function declarations

    • Parsing
    • Compilation
    • Type check
  • Add spawn

    • No type annotation/proper type checking but I did make a Type::ThreadId
  • Add join - for now just join <symbol> , no fancy expr allowed

  • Add wait and post

  • Add yield

  • Add string literals

  • Update examples

See examples for function declarations. With type checking on, the following is currently enforced:

  1. Function calls (builtin or user) check for number/ types of arguments match
  2. All function declaration parameters must have a type annotation. Return type is optional, and if not present is taken as unit
  3. Function calls are typed, e.g let x : bool = func(); where func returns int will fail type checking

However, I have not added type checking of the function body yet and some other features related to type checking. Will do this in another PR after presentation.

This PR also adds syntax/compilation for spawn, join, wait, post, yield and string literals.

All the examples should now be functional, except for garbage-collection-02 and higher-order-fn-01 as support for function types in annotations is not added yet. These are functional when compiling / running untyped.

@leonidas1712
Copy link
Contributor Author

Screenshot 2024-04-17 at 12 44 51 AM Screenshot 2024-04-17 at 12 53 53 AM

There might be a bug with the VM call microcode.

By default, the HW compiler will compile arguments left to right so e.g for math_pow(2,3) it pushes LD math_pow, LDC 2, LDC 3.

But the HW’s CALL takes the arguments and puts them at the end (hence i = arity-1 at the start) then decrements the index, so the args passed are in the original order i.e [2,3] again

However with the rst VM, it seems that since the args are added as they are popped, the order is actually reversed so it ends up calling the function with reversed arguments.

If you don’t want to reverse the args after adding, you could use VecDeque to to add the arguments to the front instead

@ForAeons

@wxiaoyun
Copy link
Member

wxiaoyun commented Apr 17, 2024

Screenshot 2024-04-17 at 12 44 51 AM Screenshot 2024-04-17 at 12 53 53 AM

There might be a bug with the VM call microcode.

By default, the HW compiler will compile arguments left to right so e.g for math_pow(2,3) it pushes LD math_pow, LDC 2, LDC 3.

But the HW’s CALL takes the arguments and puts them at the end (hence i = arity-1 at the start) then decrements the index, so the args passed are in the original order i.e [2,3] again

However with the rst VM, it seems that since the args are added as they are popped, the order is actually reversed so it ends up calling the function with reversed arguments.

If you don’t want to reverse the args after adding, you could use VecDeque to to add the arguments to the front instead

@ForAeons

Will fix this and submit a PR #52
Whats HW?

@leonidas1712
Copy link
Contributor Author

oh right HW is "homework"

@wxiaoyun
Copy link
Member

Hey man, I found a bug with extending the environment that prevents higher order function call. It is fixed in #50

@leonidas1712 leonidas1712 changed the title Add functions Add functions, concurrency, wait/post (type checking is not complete) Apr 18, 2024
@leonidas1712 leonidas1712 marked this pull request as ready for review April 18, 2024 16:27
@leonidas1712 leonidas1712 merged commit 7d0cb26 into crabscript:master Apr 18, 2024
4 checks passed
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

Successfully merging this pull request may close these issues.

2 participants