LibCompile
Functions
unsafeCompile
Given a source in opcodes compile to an equivalent source with real
function pointers for a given Interpreter contract. The "compilation"
involves simply replacing the opcode with the pointer at the index of
the opcode. i.e. opcode 4 will be replaced with pointers_[4]
.
Relies heavily on the integrity checks ensuring opcodes used are not OOB
and that the pointers provided are valid and in the correct order. As the
expression deployer is typically handling compilation during
serialization, NOT the interpreter, the interpreter MUST guard against
the compilation being garbage or outright hostile during eval
by
pointing to arbitrary internal functions of the interpreter.
function unsafeCompile(bytes memory source, bytes memory pointers) internal pure;
Parameters
Name | Type | Description |
---|---|---|
source | bytes | The input source as index based opcodes. |
pointers | bytes | The function pointers ordered by index to replace the index based opcodes with. |