Home | History | Annotate | Download | only in gold

Lines Matching refs:got_type

208 // but will usually have at most one.  GOT_TYPE identifies the type of
218 Got_offset_list(unsigned int got_type, unsigned int got_offset)
219 : got_type_(got_type), got_offset_(got_offset), got_next_(NULL)
240 // Set the offset for the GOT entry of type GOT_TYPE.
242 set_offset(unsigned int got_type, unsigned int got_offset)
246 this->got_type_ = got_type;
253 if (g->got_type_ == got_type)
259 Got_offset_list* g = new Got_offset_list(got_type, got_offset);
265 // Return the offset for a GOT entry of type GOT_TYPE.
267 get_offset(unsigned int got_type) const
271 if (g->got_type_ == got_type)
1098 // GOT_TYPE.
1100 local_has_got_offset(unsigned int symndx, unsigned int got_type) const
1101 { return this->do_local_has_got_offset(symndx, got_type); }
1103 // Return the GOT offset of type GOT_TYPE of the local symbol
1107 local_got_offset(unsigned int symndx, unsigned int got_type) const
1108 { return this->do_local_got_offset(symndx, got_type); }
1110 // Set the GOT offset with type GOT_TYPE of the local symbol SYMNDX
1113 set_local_got_offset(unsigned int symndx, unsigned int got_type,
1115 { this->do_set_local_got_offset(symndx, got_type, got_offset); }
1301 unsigned int got_type) const = 0;
1305 do_local_got_offset(unsigned int symndx, unsigned int got_type) const = 0;
1309 do_set_local_got_offset(unsigned int symndx, unsigned int got_type,
1974 // GOT_TYPE.
1976 do_local_has_got_offset(unsigned int symndx, unsigned int got_type) const
1981 && p->second->get_offset(got_type) != -1U);
1984 // Return the GOT offset of type GOT_TYPE of the local symbol
1987 do_local_got_offset(unsigned int symndx, unsigned int got_type) const
1992 unsigned int off = p->second->get_offset(got_type);
1997 // Set the GOT offset with type GOT_TYPE of the local symbol SYMNDX
2000 do_set_local_got_offset(unsigned int symndx, unsigned int got_type,
2006 p->second->set_offset(got_type, got_offset);
2009 Got_offset_list* g = new Got_offset_list(got_type, got_offset);