Alexander Meißner

Results 71 comments of Alexander Meißner

Additionally, as the current program runtime can not support Move, a new one is being developed, which is tracked here: https://github.com/solana-labs/solana/issues/28755

Is this related to compiling the Interpreter for WASM or is there a different motivation of bringing it to 32 bit? The thing is that our entire ecosystem relies on...

For reference this is the tracking issue in Rust I think: https://github.com/rust-lang/rust/issues/73820 The problem is that at the moment we do not know where possible indirect jump targets are, or...

@ndrewh: First of all, sorry for the very late reply, which caused this very nice contribution to diverge so much from our main branch. If you still want to contribute...

The win api part of this PR is merged with #422.

> There is only ever one text-section and no need to concatenate it We only consider the byte range of one section: https://github.com/solana-labs/rbpf/blob/179a0f94b68ae0bef892b214750a54448d61b1be/src/elf.rs#L415 which is exactly named ".text": https://github.com/solana-labs/rbpf/blob/179a0f94b68ae0bef892b214750a54448d61b1be/src/elf.rs#L396

Honestly, I am surprised that it generated any output at all. Usually, one would only feed in a few methods at a time, not disassemble the entire program graphically. Also,...

> I am not sure to what extend rbpf emulates the operation that occurs within the runtime in a solana cluster This crate (RBPF) does not emulate the solana program...

It is not so much POSIX, as the only thing POSIX we are using is `mmap` / `mprotect` and there should be replacements for that on windows: https://docs.microsoft.com/en-us/windows/win32/api/memoryapi/ The way...

- mvkIsAnyFlagEnabled: At least the selection is enabled. - !mvkIsAnyFlagEnabled: The selection is disabled. - mvkIsOnlyAnyFlagEnabled: Only the selection is enabled. - !mvkIsOnlyAnyFlagEnabled: If the selection is enabled, then other...