Home | History | Annotate | Download | only in gold

Lines Matching refs:Got_type

114 enum Got_type
758 multigot_got_type(unsigned int got_type) const
760 switch (got_type)
1986 // Return the GOT offset of type GOT_TYPE of the global symbol
1988 unsigned int got_offset(const Symbol* gsym, unsigned int got_type,
1992 return gsym->got_offset(got_type);
1997 return gsym->got_offset(g->multigot_got_type(got_type));
2001 // Return the GOT offset of type GOT_TYPE of the local symbol
2004 got_offset(unsigned int symndx, unsigned int got_type,
2006 { return object->local_got_offset(symndx, got_type); }
4960 unsigned int got_type;
4962 got_type = GOT_TYPE_STANDARD;
4964 got_type = GOT_TYPE_STANDARD_MULTIGOT + this->index_;
4965 if (got->add_global(mips_sym, got_type))
4967 mips_sym->set_global_gotoffset(mips_sym->got_offset(got_type));
4972 mips_sym->got_offset(got_type));
5033 unsigned int got_type;
5035 got_type = GOT_TYPE_STANDARD;
5041 got_type = GOT_TYPE_STANDARD_MULTIGOT + this->index_;
5042 if (!got->add_global(mips_sym, got_type))
5045 mips_sym->set_global_gotoffset(mips_sym->got_offset(got_type));
5056 mips_sym->got_offset(got_type));
5057 got->add_secondary_got_reloc(mips_sym->got_offset(got_type),
5097 unsigned int got_type;
5099 got_type = GOT_TYPE_STANDARD;
5101 got_type = GOT_TYPE_STANDARD_MULTIGOT;
5102 if (got->add_global(mips_sym, got_type))
5103 mips_sym->set_global_gotoffset(mips_sym->got_offset(got_type));
5128 unsigned int got_type = GOT_TYPE_TLS_PAIR;
5137 entry->shndx(), got_type,
5141 entry->object()->local_got_offset(entry->symndx(), got_type);
5150 entry->object()->set_local_got_offset(entry->symndx(), got_type,
5159 unsigned int got_type = GOT_TYPE_TLS_OFFSET;
5163 got->add_local_with_rel(entry->object(), entry->symndx(), got_type,
5167 got->add_local(entry->object(), entry->symndx(), got_type);
5169 entry->object()->local_got_offset(entry->symndx(), got_type);
5210 unsigned int got_type;
5212 got_type = GOT_TYPE_TLS_PAIR;
5214 got_type = GOT_TYPE_TLS_PAIR_MULTIGOT + this->index_;
5220 got->add_global_pair_with_rel(mips_sym, got_type,
5230 mips_sym->set_got_offset(got_type, got_offset);
5237 unsigned int got_type;
5239 got_type = GOT_TYPE_TLS_OFFSET;
5241 got_type = GOT_TYPE_TLS_OFFSET_MULTIGOT + this->index_;
5245 got->add_global_with_rel(mips_sym, got_type,
5249 got->add_global(mips_sym, got_type);
5250 unsigned int got_offset = mips_sym->got_offset(got_type);