Lines Matching refs:ofl

59     Ofl_desc *ofl)  in ld_reg_check_sparc()  argument
78 ld_eprintf(ofl, ERR_FATAL, in ld_reg_check_sparc()
95 ld_eprintf(ofl, ERR_FATAL, MSG_INTL(MSG_SYM_INCOMPREG1), in ld_reg_check_sparc()
107 ld_eprintf(ofl, ERR_FATAL, MSG_INTL(MSG_SYM_MULTINIREG), in ld_reg_check_sparc()
115 ld_eprintf(ofl, ERR_FATAL, MSG_INTL(MSG_SYM_INCOMPREG2), in ld_reg_check_sparc()
127 Ofl_desc *ofl) in ld_mach_sym_typecheck_sparc() argument
137 ld_eprintf(ofl, ERR_FATAL, MSG_INTL(MSG_SYM_DIFFTYPE), in ld_mach_sym_typecheck_sparc()
139 ld_eprintf(ofl, ERR_NONE, MSG_INTL(MSG_SYM_FILETYPES), in ld_mach_sym_typecheck_sparc()
148 return (ld_reg_check_sparc(sdp, nsym, sdp->sd_name, ifl, ofl)); in ld_mach_sym_typecheck_sparc()
161 ld_is_regsym_sparc(Ofl_desc *ofl, Ifl_desc *ifl, Sym *sym, const char *strs, in ld_is_regsym_sparc() argument
177 ld_eprintf(ofl, ERR_FATAL, MSG_INTL(MSG_SYM_BADREG), in ld_is_regsym_sparc()
186 ld_eprintf(ofl, ERR_FATAL, MSG_INTL(MSG_SYM_BADREG), in ld_is_regsym_sparc()
202 ld_eprintf(ofl, ERR_FATAL, MSG_INTL(MSG_SYM_BADSCRATCH), in ld_is_regsym_sparc()
224 ld_reg_find_sparc(Sym *sym, Ofl_desc *ofl) in ld_reg_find_sparc() argument
226 if (ofl->ofl_regsyms == NULL) in ld_reg_find_sparc()
229 return (ofl->ofl_regsyms[sym->st_value]); in ld_reg_find_sparc()
233 ld_reg_enter_sparc(Sym_desc *sdp, Ofl_desc *ofl) in ld_reg_enter_sparc() argument
235 if (ofl->ofl_regsyms == NULL) { in ld_reg_enter_sparc()
237 ofl->ofl_regsymsno = STO_SPARC_REGISTER_G7 + 1; in ld_reg_enter_sparc()
239 if ((ofl->ofl_regsyms = libld_calloc(sizeof (Sym_desc *), in ld_reg_enter_sparc()
240 ofl->ofl_regsymsno)) == NULL) { in ld_reg_enter_sparc()
241 ofl->ofl_flags |= FLG_OF_FATAL; in ld_reg_enter_sparc()
246 ofl->ofl_regsyms[sdp->sd_sym->st_value] = sdp; in ld_reg_enter_sparc()