OpCode represents a single operation. It is not a 1:1 mapping to real eBPF opcodes. The encoding varies based on a 3-bit Class: 7 6 5 4 3 2 1 0 7 6 5 4 3 2 1 0 7 6 5 4 3 2 1 0 7 6 5 4 3 2 1 0 ??? | CLS For ALUClass and ALUCLass32: 7 6 5 4 3
| 94 | // 7 6 5 4 3 2 1 0 7 6 5 4 3 2 1 0 7 6 5 4 3 2 1 0 7 6 5 4 3 2 1 0 |
| 95 | // 0 | OPC |S| CLS |
| 96 | type OpCode uint32 |
| 97 | |
| 98 | // InvalidOpCode is returned by setters on OpCode |
| 99 | const InvalidOpCode OpCode = 0xffff |
no outgoing calls
no test coverage detected