Lines Matching full:scc
703 * Assign an SCC number to each instruction, recorded in env->insn_aux[*].scc.
704 * If instruction is a sole member of its SCC and there are no self edges,
705 * assign it SCC number of zero.
706 * Uses a non-recursive adaptation of Tarjan's algorithm for SCC computation.
750 * and thus there is an SCC (loop) containing both 'u' and 'v'. in bpf_compute_scc()
752 * and 'v' can be considered the root of some SCC. in bpf_compute_scc()
759 * scc = [0] * insn_cnt in bpf_compute_scc()
795 * # 'w' is the root of an SCC, pop all vertices in bpf_compute_scc()
796 * # below 'w' on stack and assign same SCC to them. in bpf_compute_scc()
800 * scc[t] = next_scc_id in bpf_compute_scc()
845 * Assign SCC number only if component has two or more elements, in bpf_compute_scc()
863 aux[t].scc = next_scc_id; in bpf_compute_scc()