Home | History | Annotate | Download | only in gold

Lines Matching refs:got_type

1253   enum Got_type
2150 add_global(Symbol* gsym, unsigned int got_type)
2153 return Output_data_got<size, big_endian>::add_global(gsym, got_type);
2157 add_global_plt(Symbol* gsym, unsigned int got_type)
2160 return Output_data_got<size, big_endian>::add_global_plt(gsym, got_type);
2164 add_global_tls(Symbol* gsym, unsigned int got_type)
2165 { return this->add_global_plt(gsym, got_type); }
2168 add_global_with_rel(Symbol* gsym, unsigned int got_type,
2173 add_global_with_rel(gsym, got_type, rel_dyn, r_type);
2177 add_global_pair_with_rel(Symbol* gsym, unsigned int got_type,
2183 add_global_pair_with_rel(gsym, got_type, rel_dyn, r_type_1, r_type_2);
2187 add_local(Relobj* object, unsigned int sym_index, unsigned int got_type)
2191 got_type);
2195 add_local_plt(Relobj* object, unsigned int sym_index, unsigned int got_type)
2199 got_type);
2203 add_local_tls(Relobj* object, unsigned int sym_index, unsigned int got_type)
2204 { return this->add_local_plt(object, sym_index, got_type); }
2208 unsigned int got_type,
2214 add_local_tls_pair(object, sym_index, got_type, rel_dyn, r_type);
6978 enum Got_type got_type = GOT_TYPE_STANDARD;
6980 got_type = GOT_TYPE_TLSGD;
6982 got_type = GOT_TYPE_TPREL;
6983 if (got_type != GOT_TYPE_STANDARD)
6987 gold_assert(gsym->has_got_offset(got_type));
6988 value = gsym->got_offset(got_type);
6993 gold_assert(object->local_has_got_offset(r_sym, got_type));
6994 value = object->local_got_offset(r_sym, got_type);
8311 for (Got_type got_type = GOT_TYPE_TLSGD;
8312 got_type <= GOT_TYPE_TPREL;
8313 got_type = Got_type(got_type + 1))
8314 if (ppc_object->local_has_got_offset(symndx, got_type))
8316 unsigned int off = ppc_object->local_got_offset(symndx, got_type);
8317 if (got_type == GOT_TYPE_TLSGD)
8321 if (got_type == GOT_TYPE_TPREL)
8341 for (Got_type got_type = GOT_TYPE_TLSGD;
8342 got_type <= GOT_TYPE_TPREL;
8343 got_type = Got_type(got_type + 1))
8344 if (gsym->has_got_offset(got_type))
8346 unsigned int off = gsym->got_offset(got_type);
8347 if (got_type == GOT_TYPE_TLSGD)
8351 if (got_type == GOT_TYPE_TPREL)