Lines Matching refs:target
193 #define EMIT4_PCREL_RIC(op, mask, target) \
195 int __rel = ((target) - jit->prg) / 2; \
231 #define EMIT6_PCREL_RIEB(op1, op2, b1, b2, mask, target) \
233 unsigned int rel = (int)((target) - jit->prg) / 2; \
240 #define EMIT6_PCREL_RIEC(op1, op2, b1, imm, mask, target) \
242 unsigned int rel = (int)((target) - jit->prg) / 2; \
257 #define EMIT6_PCREL_RILB(op, b, target) \
259 unsigned int rel = (int)((target) - jit->prg) / 2; \
264 #define EMIT6_PCREL_RIL(op, target) \
266 unsigned int rel = (int)((target) - jit->prg) / 2; \
270 #define EMIT6_PCREL_RILC(op, mask, target) \
272 EMIT6_PCREL_RIL((op) | (mask) << 20, (target)); \