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

/linux-master/arch/riscv/net/
H A Dbpf_jit_comp32.c145 int stack_adjust = ctx->stack_size; local
155 emit(rv_lw(RV_REG_RA, stack_adjust - 4, RV_REG_SP), ctx);
156 emit(rv_lw(RV_REG_FP, stack_adjust - 8, RV_REG_SP), ctx);
157 emit(rv_lw(RV_REG_S1, stack_adjust - 12, RV_REG_SP), ctx);
158 emit(rv_lw(RV_REG_S2, stack_adjust - 16, RV_REG_SP), ctx);
159 emit(rv_lw(RV_REG_S3, stack_adjust - 20, RV_REG_SP), ctx);
160 emit(rv_lw(RV_REG_S4, stack_adjust - 24, RV_REG_SP), ctx);
161 emit(rv_lw(RV_REG_S5, stack_adjust - 28, RV_REG_SP), ctx);
162 emit(rv_lw(RV_REG_S6, stack_adjust - 32, RV_REG_SP), ctx);
163 emit(rv_lw(RV_REG_S7, stack_adjust
1308 int stack_adjust = 0; local
[all...]
H A Dbpf_jit_comp64.c226 int stack_adjust = ctx->stack_size, store_offset = stack_adjust - 8; local
259 emit_addi(RV_REG_SP, RV_REG_SP, stack_adjust, ctx);
1741 int i, stack_adjust = 0, store_offset, bpf_stack_adjust; local
1748 stack_adjust += 8;
1749 stack_adjust += 8; /* RV_REG_FP */
1751 stack_adjust += 8;
1753 stack_adjust += 8;
1755 stack_adjust += 8;
1757 stack_adjust
[all...]
/linux-master/arch/loongarch/net/
H A Dbpf_jit.c91 int stack_adjust = 0, store_offset, bpf_stack_adjust; local
96 stack_adjust += sizeof(long) * 8;
98 stack_adjust = round_up(stack_adjust, 16);
99 stack_adjust += bpf_stack_adjust;
108 emit_insn(ctx, addid, LOONGARCH_GPR_SP, LOONGARCH_GPR_SP, -stack_adjust);
110 store_offset = stack_adjust - sizeof(long);
134 emit_insn(ctx, addid, LOONGARCH_GPR_FP, LOONGARCH_GPR_SP, stack_adjust);
146 ctx->stack_size = stack_adjust;
151 int stack_adjust local
[all...]
/linux-master/arch/parisc/net/
H A Dbpf_jit_comp64.c1102 int bpf_stack_adjust, stack_adjust, i; local
1116 stack_adjust = FRAME_SIZE + bpf_stack_adjust;
1117 stack_adjust = round_up(stack_adjust, STACK_ALIGN);
1151 emit(hppa_ldo(stack_adjust, HPPA_REG_SP, HPPA_REG_SP), ctx);
H A Dbpf_jit_comp32.c1471 int stack_adjust = 0; local
1487 stack_adjust += NR_SAVED_REGISTERS * REG_SIZE;
1489 stack_adjust += BPF_JIT_SCRATCH_REGS * REG_SIZE;
1491 stack_adjust += bpf_stack_adjust;
1493 stack_adjust = round_up(stack_adjust, STACK_ALIGN);
1510 emit(hppa_ldo(stack_adjust, HPPA_REG_SP, HPPA_REG_SP), ctx); // ldo stack_adjust(sp),sp (increase stack)

Completed in 137 milliseconds