Lines Matching refs:target
199 #define EMIT4_PCREL_RIC(op, mask, target) \
201 int __rel = ((target) - jit->prg) / 2; \
237 #define EMIT6_PCREL_RIEB(op1, op2, b1, b2, mask, target) \
239 unsigned int rel = (int)((target) - jit->prg) / 2; \
246 #define EMIT6_PCREL_RIEC(op1, op2, b1, imm, mask, target) \
248 unsigned int rel = (int)((target) - jit->prg) / 2; \
263 #define EMIT6_PCREL_RILB(op, b, target) \
265 unsigned int rel = (int)((target) - jit->prg) / 2; \
270 #define EMIT6_PCREL_RIL(op, target) \
272 unsigned int rel = (int)((target) - jit->prg) / 2; \
276 #define EMIT6_PCREL_RILC(op, mask, target) \
278 EMIT6_PCREL_RIL((op) | (mask) << 20, (target)); \
538 static void bpf_jit_plt(void *plt, void *ret, void *target)
542 *(void **)((char *)plt + (bpf_plt_target - bpf_plt)) = target ?: ret;