cbe_rbpf 0.2.38

Virtual machine and JIT compiler for eBPF programs
Documentation
1
2
3
4
5
6
7
8
9
10
typedef unsigned long int uint64_t;
typedef unsigned char uint8_t;

volatile const uint64_t v1 = 41;
volatile const uint64_t v2 = 42;
volatile const uint64_t v3 = 43;

extern uint64_t entrypoint(const uint8_t *input) {
  return v2;
}