Searched defs:last_insn (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dcodegen.cc541 Instruction* last_insn = block->instructions.back(); local
542 if (BPF_CLASS(last_insn->code) == BPF_JMP) {
543 ComputeIncomingBranches(targets_to_blocks.find(last_insn->jt_ptr)->second,
546 if (BPF_OP(last_insn->code) != BPF_JA) {
548 targets_to_blocks.find(last_insn->jf_ptr)->second,
552 } else if (BPF_CLASS(last_insn->code) != BPF_RET) {
553 ComputeIncomingBranches(targets_to_blocks.find(last_insn->next)->second,
584 Instruction* last_insn = first_block->instructions.back(); local
585 if (BPF_CLASS(last_insn->code) == BPF_JMP) {
589 if (BPF_OP(last_insn
[all...]

Completed in 90 milliseconds