Home | History | Annotate | Download | only in config

Lines Matching refs:fix

68 extern long nds32_pcrel_from_section (struct fix *, segT);
69 extern bfd_boolean nds32_fix_adjustable (struct fix *);
74 extern int nds32_validate_fix_sub (struct fix *, segT);
75 extern int nds32_force_relocation (struct fix *);
84 #define MD_PCREL_FROM_SECTION(fix, sect) nds32_pcrel_from_section (fix, sect)
86 #define tc_fix_adjustable(FIX) nds32_fix_adjustable (FIX)
93 #define TC_FORCE_RELOCATION_SUB_SAME(FIX, SEC) \
94 (! SEG_NORMAL (SEC) || TC_FORCE_RELOCATION (FIX))
95 #define TC_FORCE_RELOCATION(fix) nds32_force_relocation (fix)
96 #define TC_VALIDATE_FIX_SUB(FIX,SEG) nds32_validate_fix_sub (FIX,SEG)
99 #define MD_APPLY_SYM_VALUE(FIX) 0
105 #define TC_FIX_TYPE struct fix *
165 struct fix *fixup;
187 #define TC_RELOC_RTSYM_LOC_FIXUP(FIX) \
188 ((FIX)->fx_addsy == NULL \
189 || (! S_IS_EXTERNAL ((FIX)->fx_addsy) \
190 && ! S_IS_WEAK ((FIX)->fx_addsy) \
191 && S_IS_DEFINED ((FIX)->fx_addsy) \
192 && ! S_IS_COMMON ((FIX)->fx_addsy)))