Lines Matching refs:fix
24 struct fix;
277 struct fix *jump_around_fix;
327 extern void xtensa_init_fix_data (struct fix *);
329 extern int xtensa_force_relocation (struct fix *);
330 extern int xtensa_validate_fix_sub (struct fix *);
336 extern bool xtensa_fix_adjustable (struct fix *);
360 #define TC_FORCE_RELOCATION(fix) xtensa_force_relocation (fix) argument
361 #define TC_FORCE_RELOCATION_SUB_SAME(fix, seg) \ argument
362 (GENERIC_FORCE_RELOCATION_SUB_SAME (fix, seg) \
363 || xtensa_force_relocation (fix))
364 #define TC_VALIDATE_FIX_SUB(fix, seg) xtensa_validate_fix_sub (fix) argument
369 #define tc_fix_adjustable(fix) xtensa_fix_adjustable (fix) argument