Searched refs:condt (Results 1 – 2 of 2) sorted by relevance
/linux-4.4.14/arch/arm/net/ |
D | bpf_jit_32.c | 517 unsigned i, load_order, off, condt; in build_body() local 565 condt = ARM_COND_GE; in build_body() 568 condt = ARM_COND_HI; in build_body() 581 _emit(condt, ARM_CMP_I(r_off, 0), ctx); in build_body() 583 _emit(condt, ARM_ADD_R(r_scratch, r_off, r_skb_data), in build_body() 587 _emit(condt, ARM_LDRB_I(r_A, r_scratch, 0), in build_body() 590 emit_load_be16(condt, r_A, r_scratch, ctx); in build_body() 592 emit_load_be32(condt, r_A, r_scratch, ctx); in build_body() 594 _emit(condt, ARM_B(b_imm(i + 1, ctx)), ctx); in build_body() 776 condt = ARM_COND_EQ; in build_body() [all …]
|
/linux-4.4.14/arch/mips/net/ |
D | bpf_jit.c | 656 unsigned int i, off, condt; in build_body() local 921 condt = MIPS_COND_EQ | MIPS_COND_K; in build_body() 926 condt = MIPS_COND_EQ | MIPS_COND_X; in build_body() 930 condt = MIPS_COND_GE | MIPS_COND_K; in build_body() 935 condt = MIPS_COND_GE | MIPS_COND_X; in build_body() 939 condt = MIPS_COND_GT | MIPS_COND_K; in build_body() 944 condt = MIPS_COND_GT | MIPS_COND_X; in build_body() 947 if ((condt & MIPS_COND_GE) || in build_body() 948 (condt & MIPS_COND_GT)) { in build_body() 949 if (condt & MIPS_COND_K) { /* K */ in build_body() [all …]
|