An Instruction is one instruction executed by the BPF virtual machine.
| 9 | // An Instruction is one instruction executed by the BPF virtual |
| 10 | // machine. |
| 11 | type Instruction interface { |
| 12 | // Assemble assembles the Instruction into a RawInstruction. |
| 13 | Assemble() (RawInstruction, error) |
| 14 | } |
| 15 | |
| 16 | // A RawInstruction is a raw BPF virtual machine instruction. |
| 17 | type RawInstruction struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…