Lines Matching +full:5 +full:x
61 %token ':' ',' '[' ']' '(' ')' 'x' 'a' '+' 'M' '*' '&' '#' '%'
123 : OP_LDB '[' 'x' '+' number ']' {
124 bpf_set_curr_instr(BPF_LD | BPF_B | BPF_IND, 0, 0, $5); }
125 | OP_LDB '[' '%' 'x' '+' number ']' {
135 : OP_LDH '[' 'x' '+' number ']' {
136 bpf_set_curr_instr(BPF_LD | BPF_H | BPF_IND, 0, 0, $5); }
137 | OP_LDH '[' '%' 'x' '+' number ']' {
163 | OP_LD '[' 'x' '+' number ']' {
164 bpf_set_curr_instr(BPF_LD | BPF_W | BPF_IND, 0, 0, $5); }
165 | OP_LD '[' '%' 'x' '+' number ']' {
217 bpf_set_jmp_label($5, JTL);
220 | OP_JEQ 'x' ',' label ',' label {
224 | OP_JEQ '%' 'x' ',' label ',' label {
225 bpf_set_jmp_label($5, JTL);
229 bpf_set_jmp_label($5, JTL);
231 | OP_JEQ 'x' ',' label {
234 | OP_JEQ '%' 'x' ',' label {
235 bpf_set_jmp_label($5, JTL);
241 bpf_set_jmp_label($5, JFL);
243 | OP_JNEQ 'x' ',' label {
246 | OP_JNEQ '%' 'x' ',' label {
247 bpf_set_jmp_label($5, JFL);
253 bpf_set_jmp_label($5, JFL);
255 | OP_JLT 'x' ',' label {
258 | OP_JLT '%' 'x' ',' label {
259 bpf_set_jmp_label($5, JFL);
265 bpf_set_jmp_label($5, JFL);
267 | OP_JLE 'x' ',' label {
270 | OP_JLE '%' 'x' ',' label {
271 bpf_set_jmp_label($5, JFL);
277 bpf_set_jmp_label($5, JTL);
280 | OP_JGT 'x' ',' label ',' label {
284 | OP_JGT '%' 'x' ',' label ',' label {
285 bpf_set_jmp_label($5, JTL);
289 bpf_set_jmp_label($5, JTL);
291 | OP_JGT 'x' ',' label {
294 | OP_JGT '%' 'x' ',' label {
295 bpf_set_jmp_label($5, JTL);
301 bpf_set_jmp_label($5, JTL);
304 | OP_JGE 'x' ',' label ',' label {
308 | OP_JGE '%' 'x' ',' label ',' label {
309 bpf_set_jmp_label($5, JTL);
313 bpf_set_jmp_label($5, JTL);
315 | OP_JGE 'x' ',' label {
318 | OP_JGE '%' 'x' ',' label {
319 bpf_set_jmp_label($5, JTL);
325 bpf_set_jmp_label($5, JTL);
328 | OP_JSET 'x' ',' label ',' label {
332 | OP_JSET '%' 'x' ',' label ',' label {
333 bpf_set_jmp_label($5, JTL);
337 bpf_set_jmp_label($5, JTL);
339 | OP_JSET 'x' ',' label {
342 | OP_JSET '%' 'x' ',' label {
343 bpf_set_jmp_label($5, JTL);
350 | OP_ADD 'x' {
352 | OP_ADD '%' 'x' {
359 | OP_SUB 'x' {
361 | OP_SUB '%' 'x' {
368 | OP_MUL 'x' {
370 | OP_MUL '%' 'x' {
377 | OP_DIV 'x' {
379 | OP_DIV '%' 'x' {
386 | OP_MOD 'x' {
388 | OP_MOD '%' 'x' {
400 | OP_AND 'x' {
402 | OP_AND '%' 'x' {
409 | OP_OR 'x' {
411 | OP_OR '%' 'x' {
418 | OP_XOR 'x' {
420 | OP_XOR '%' 'x' {
427 | OP_LSH 'x' {
429 | OP_LSH '%' 'x' {
436 | OP_RSH 'x' {
438 | OP_RSH '%' 'x' {
447 | OP_RET 'x' {
449 | OP_RET '%' 'x' {
596 printf("{ %#04x, %2u, %2u, %#010x },\n", out[i].code, in bpf_pretty_print_c()