Lines Matching defs:mem_off
662 int src, dst, r, td, ts, mem_off, b_off;
1368 mem_off = insn->off + MAX_BPF_STACK;
1373 mem_off = insn->off;
1378 emit_instr(ctx, sb, MIPS_R_AT, mem_off, dst);
1381 emit_instr(ctx, sh, MIPS_R_AT, mem_off, dst);
1384 emit_instr(ctx, sw, MIPS_R_AT, mem_off, dst);
1387 emit_instr(ctx, sd, MIPS_R_AT, mem_off, dst);
1399 mem_off = insn->off + MAX_BPF_STACK;
1404 mem_off = insn->off;
1411 emit_instr(ctx, lbu, dst, mem_off, src);
1414 emit_instr(ctx, lhu, dst, mem_off, src);
1417 emit_instr(ctx, lw, dst, mem_off, src);
1420 emit_instr(ctx, ld, dst, mem_off, src);
1434 mem_off = insn->off + MAX_BPF_STACK;
1439 mem_off = insn->off;
1446 * If mem_off does not fit within the 9 bit ll/sc
1450 (mem_off >= BIT(8) || mem_off < -BIT(8))) {
1452 dst, mem_off);
1453 mem_off = 0;
1462 emit_instr(ctx, ll, MIPS_R_T8, mem_off, dst);
1464 emit_instr(ctx, sc, MIPS_R_T8, mem_off, dst);
1478 emit_instr(ctx, lld, MIPS_R_T8, mem_off, dst);
1480 emit_instr(ctx, scd, MIPS_R_T8, mem_off, dst);
1488 emit_instr(ctx, sb, src, mem_off, dst);
1491 emit_instr(ctx, sh, src, mem_off, dst);
1494 emit_instr(ctx, sw, src, mem_off, dst);
1502 emit_instr(ctx, sd, src, mem_off, dst);