-
Notifications
You must be signed in to change notification settings - Fork 0
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 support for more than two compartments #276
Comments
Looks like |
Also see |
Here's a rough breakdown of the changes we need to make to implement this.
|
I got a rough WIP working in PR #300.
For testing I modified |
This is non-trivial because each call gate is specific to a pair of compartments. This means when compartment A and B both call
foo
in C we need separate call gates for them. Currently we insert call gates usingld --wrap
which requires the interposed symbols to be globally unique so we'll have to rename these symbols (which can be done after compiling but before linking). See #174 for the preliminary plan.The text was updated successfully, but these errors were encountered: