You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, loader programs serve two sets of instructions: account management and invoking BPF programs.
The account management instruction set can be split out and migrated to a BPF program, but that leaves the invocation of BPF programs. However, this can maybe be absorbed into the runtime.
Builtin programs use an "empty" rBPF VM to invoke their builtin functions, however this use of the VM may not be necessary. The primary purpose of the VM here was to enforce a standard interface, but if we can enforce the interface without the actual VM, then we don't need to invoke, for example, BPFLoader v3 when we wish to invoke a BPF program.
BPF programs would just be invoked directly by the runtime without first going through the mocked-up VM.
Currently, loader programs serve two sets of instructions: account management and invoking BPF programs.
The account management instruction set can be split out and migrated to a BPF program, but that leaves the invocation of BPF programs. However, this can maybe be absorbed into the runtime.
Builtin programs use an "empty" rBPF VM to invoke their builtin functions, however this use of the VM may not be necessary. The primary purpose of the VM here was to enforce a standard interface, but if we can enforce the interface without the actual VM, then we don't need to invoke, for example, BPFLoader v3 when we wish to invoke a BPF program.
BPF programs would just be invoked directly by the runtime without first going through the mocked-up VM.
For more context, see the following:
The text was updated successfully, but these errors were encountered: