Lines Matching refs:can_jump
459 bool can_jump; in bpf_insn_successors() member
462 [0 ... 255] = {.can_jump = false, .can_fallthrough = true}, in bpf_insn_successors()
467 _J(BPF_EXIT, {.can_jump = false, .can_fallthrough = false}), in bpf_insn_successors()
468 _J(BPF_JA, {.can_jump = true, .can_fallthrough = false}), in bpf_insn_successors()
469 _J(BPF_JEQ, {.can_jump = true, .can_fallthrough = true}), in bpf_insn_successors()
470 _J(BPF_JNE, {.can_jump = true, .can_fallthrough = true}), in bpf_insn_successors()
471 _J(BPF_JLT, {.can_jump = true, .can_fallthrough = true}), in bpf_insn_successors()
472 _J(BPF_JLE, {.can_jump = true, .can_fallthrough = true}), in bpf_insn_successors()
473 _J(BPF_JGT, {.can_jump = true, .can_fallthrough = true}), in bpf_insn_successors()
474 _J(BPF_JGE, {.can_jump = true, .can_fallthrough = true}), in bpf_insn_successors()
475 _J(BPF_JSGT, {.can_jump = true, .can_fallthrough = true}), in bpf_insn_successors()
476 _J(BPF_JSGE, {.can_jump = true, .can_fallthrough = true}), in bpf_insn_successors()
477 _J(BPF_JSLT, {.can_jump = true, .can_fallthrough = true}), in bpf_insn_successors()
478 _J(BPF_JSLE, {.can_jump = true, .can_fallthrough = true}), in bpf_insn_successors()
479 _J(BPF_JCOND, {.can_jump = true, .can_fallthrough = true}), in bpf_insn_successors()
480 _J(BPF_JSET, {.can_jump = true, .can_fallthrough = true}), in bpf_insn_successors()
502 if (opcode_info->can_jump) in bpf_insn_successors()