| 148 | } |
| 149 | |
| 150 | static void |
| 151 | eval_smax_bound(struct bpf_reg_val *rv, uint64_t mask) |
| 152 | { |
| 153 | rv->s.max = mask >> 1; |
| 154 | rv->s.min = rv->s.max ^ UINT64_MAX; |
| 155 | } |
| 156 | |
| 157 | static void |
| 158 | eval_max_bound(struct bpf_reg_val *rv, uint64_t mask) |
no outgoing calls
no test coverage detected