Home | History | Annotate | Download | only in dwarf2

Lines Matching defs:call_site

97 			       const struct call_site *call_site,
165 struct call_site
167 call_site (unrelocated_addr pc, dwarf2_per_cu_data *per_cu,
198 struct call_site *tail_call_next = nullptr;
228 /* Key hash type to store call_site objects in gdb::unordered_set, identified by
235 std::size_t operator() (const call_site *site) const noexcept
242 /* Key equal type to store call_site objects in gdb::unordered_set, identified
249 bool operator() (const call_site *a, const call_site *b) const noexcept
252 bool operator() (unrelocated_addr pc, const call_site *site) const noexcept
256 /* Set of call_site objects identified by their unrelocated PC. */
259 = gdb::unordered_set<call_site *, call_site_hash_pc, call_site_eq_pc>;