This contains the private implementation of the suppression engine of libabigail.
More...
|
typedef unordered_set< const class_or_union * > | class_set_type |
| A convenience typedef for a set of pointer to class_or_union. More...
|
|
typedef unordered_set< const function_type * > | fn_set_type |
| A convenience typedef for a set of pointer to function_type. More...
|
|
typedef unordered_map< uint64_t_pair_type, bool, uint64_t_pair_hash > | type_comparison_result_type |
| A convenience typedef for a map which key is a pair of uint64_t and which value is a boolean. This is initially intended to cache the result of comparing two (sub-)types. More...
|
|
typedef std::pair< uint64_t, uint64_t > | uint64_t_pair_type |
| A convenience typedef for a pair of uint64_t which is initially intended to store a pair of pointer values. More...
|
|
typedef unordered_set< uint64_t_pair_type, uint64_t_pair_hash > | uint64_t_pairs_set_type |
| A convenience typedef for a set of uint64_t_pair. More...
|
|
|
template<typename input_iterator , typename deref_lambda > |
void | canonicalize_types (const input_iterator &begin, const input_iterator &end, deref_lambda deref) |
| Compute the canonical type for all the IR types of the system. More...
|
|
bool | compare_using_locations (const decl_base *f, const decl_base *s) |
| Compare decls using their locations. More...
|
|
bool | is_ptr_ref_or_qual_type (const type_base *t) |
| Helper to detect if a type is either a reference, a pointer, or a qualified type. More...
|
|
integral_type::modifiers_type | operator& (integral_type::modifiers_type l, integral_type::modifiers_type r) |
| Bitwise AND operator for integral_type::modifiers_type. More...
|
|
integral_type::modifiers_type & | operator&= (integral_type::modifiers_type &l, integral_type::modifiers_type r) |
| Bitwise &= operator for integral_type::modifiers_type. More...
|
|
integral_type::modifiers_type | operator| (integral_type::modifiers_type l, integral_type::modifiers_type r) |
| Bitwise OR operator for integral_type::modifiers_type. More...
|
|
integral_type::modifiers_type & | operator|= (integral_type::modifiers_type &l, integral_type::modifiers_type r) |
| Bitwise |= operator for integral_type::modifiers_type. More...
|
|
integral_type::modifiers_type | operator~ (integral_type::modifiers_type l) |
| Bitwise one's complement operator for integral_type::modifiers_type. More...
|
|
bool | parse_integral_type (const string &str, integral_type &type) |
| Parse an integral type from a string. More...
|
|
This contains the private implementation of the suppression engine of libabigail.
Definition in file abg-ir-priv.h.