Searched refs:bpf_stack_adjust (Results 1 - 5 of 5) sorted by relevance

/linux-master/arch/parisc/net/
H A Dbpf_jit_comp64.c1102 int bpf_stack_adjust, stack_adjust, i; local
1111 bpf_stack_adjust = MAX_BPF_STACK;
1113 bpf_stack_adjust = ctx->prog->aux->stack_depth;
1114 bpf_stack_adjust = round_up(bpf_stack_adjust, STACK_ALIGN);
1116 stack_adjust = FRAME_SIZE + bpf_stack_adjust;
H A Dbpf_jit_comp32.c1474 int bpf_stack_adjust; local
1481 bpf_stack_adjust = MAX_BPF_STACK;
1483 bpf_stack_adjust = ctx->prog->aux->stack_depth;
1484 bpf_stack_adjust = round_up(bpf_stack_adjust, STACK_ALIGN);
1491 stack_adjust += bpf_stack_adjust;
/linux-master/arch/loongarch/net/
H A Dbpf_jit.c91 int stack_adjust = 0, store_offset, bpf_stack_adjust; local
93 bpf_stack_adjust = round_up(ctx->prog->aux->stack_depth, 16);
99 stack_adjust += bpf_stack_adjust;
136 if (bpf_stack_adjust)
137 emit_insn(ctx, addid, regmap[BPF_REG_FP], LOONGARCH_GPR_SP, bpf_stack_adjust);
/linux-master/arch/riscv/net/
H A Dbpf_jit_comp64.c1741 int i, stack_adjust = 0, store_offset, bpf_stack_adjust; local
1743 bpf_stack_adjust = round_up(ctx->prog->aux->stack_depth, 16);
1744 if (bpf_stack_adjust)
1764 stack_adjust += bpf_stack_adjust;
1816 if (bpf_stack_adjust)
1817 emit_addi(RV_REG_S5, RV_REG_SP, bpf_stack_adjust, ctx);
H A Dbpf_jit_comp32.c1309 int bpf_stack_adjust = local
1317 stack_adjust += bpf_stack_adjust;
1344 emit(rv_addi(lo(fp), RV_REG_SP, bpf_stack_adjust), ctx);

Completed in 137 milliseconds