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

Unify externs, intrinsics, and generators #558

Open
Verdagon opened this issue Sep 3, 2022 · 0 comments
Open

Unify externs, intrinsics, and generators #558

Verdagon opened this issue Sep 3, 2022 · 0 comments

Comments

@Verdagon
Copy link
Collaborator

Verdagon commented Sep 3, 2022

An extern:
extern func myFunc(a int, b int) int;

A generator:
extern("myGenerator") func myFunc(a int, b int) int;

We could make those the same kind of concept.

In the end, we want to be able to change this:

func +(left int, right int) int { return __vbi_addI32(left, right); }
extern func __vbi_addI32(left int, right int) int;

to this:

extern("__vbi_addI32") func +(left int, right int) int;

The only complication will be determining whether it's defined by frontend (IOW a generator, eg vale_static_sized_array_free) or backend (IOW an extern, eg vale_lock_weak).

Perhaps everything beginning with __vfi ("vale frontend intrinsic") could be from the frontend, __vbi by the backend, and __ve (vale extern) by vale-supplied C code.

@Verdagon Verdagon changed the title Unify externs and generators Unify externs, intrinsics, and generators Sep 3, 2022
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