Lines Matching refs:depth
127 int push_regs(struct jit_context *ctx, u32 mask, u32 excl, int depth) in push_regs() argument
135 emit(ctx, sw, reg, depth, MIPS_R_SP); in push_regs()
137 emit(ctx, sd, reg, depth, MIPS_R_SP); in push_regs()
139 depth += sizeof(long); in push_regs()
142 ctx->stack_used = max((int)ctx->stack_used, depth); in push_regs()
143 return depth; in push_regs()
150 int pop_regs(struct jit_context *ctx, u32 mask, u32 excl, int depth) in pop_regs() argument
158 emit(ctx, lw, reg, depth, MIPS_R_SP); in pop_regs()
160 emit(ctx, ld, reg, depth, MIPS_R_SP); in pop_regs()
162 depth += sizeof(long); in pop_regs()
165 return depth; in pop_regs()