/* Utilities for ipa analysis. Copyright (C) 2004-2014 Free Software Foundation, Inc. Contributed by Kenneth Zadeck This file is part of GCC. GCC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. GCC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see . */ #ifndef GCC_IPA_UTILS_H #define GCC_IPA_UTILS_H #include "cgraph.h" /* Used for parsing attributes of asm code. */ extern tree memory_identifier_string; extern tree get_memory_identifier_string (void); struct ipa_dfs_info { int dfn_number; int low_link; /* This field will have the samy value for any two nodes in the same strongly connected component. */ int scc_no; bool new_node; bool on_stack; struct cgraph_node* next_cycle; PTR aux; }; /* Context of polymorphic call. This is used by ipa-devirt walkers of the type inheritance graph. */ struct ipa_polymorphic_call_context { /* The called object appears in an object of type OUTER_TYPE at offset OFFSET. */ HOST_WIDE_INT offset; tree outer_type; /* True if outer object may be in construction or destruction. */ bool maybe_in_construction; /* True if outer object may be of derived type. */ bool maybe_derived_type; }; /* Context representing "I know nothing". */ extern const ipa_polymorphic_call_context ipa_dummy_polymorphic_call_context; /* In ipa-utils.c */ void ipa_print_order (FILE*, const char *, struct cgraph_node**, int); int ipa_reduced_postorder (struct cgraph_node **, bool, bool, bool (*ignore_edge) (struct cgraph_edge *)); void ipa_free_postorder_info (void); vec ipa_get_nodes_in_cycle (struct cgraph_node *); bool ipa_edge_within_scc (struct cgraph_edge *); int ipa_reverse_postorder (struct cgraph_node **); tree get_base_var (tree); void ipa_merge_profiles (struct cgraph_node *dst, struct cgraph_node *src); bool recursive_call_p (tree, tree); /* In ipa-profile.c */ bool ipa_propagate_frequency (struct cgraph_node *node); /* In ipa-devirt.c */ struct odr_type_d; typedef odr_type_d *odr_type; void build_type_inheritance_graph (void); void update_type_inheritance_graph (void); vec possible_polymorphic_call_targets (tree, HOST_WIDE_INT, ipa_polymorphic_call_context, bool *final = NULL, void **cache_token = NULL, int *nonconstruction_targets = NULL); odr_type get_odr_type (tree, bool insert = false); void dump_possible_polymorphic_call_targets (FILE *, tree, HOST_WIDE_INT, const ipa_polymorphic_call_context &); bool possible_polymorphic_call_target_p (tree, HOST_WIDE_INT, const ipa_polymorphic_call_context &, struct cgraph_node *); tree method_class_type (const_tree); tree get_polymorphic_call_info (tree, tree, tree *, HOST_WIDE_INT *, ipa_polymorphic_call_context *); bool get_polymorphic_call_info_from_invariant (ipa_polymorphic_call_context *, tree, tree, HOST_WIDE_INT); tree vtable_pointer_value_to_binfo (const_tree); bool vtable_pointer_value_to_vtable (const_tree, tree *, unsigned HOST_WIDE_INT *); bool contains_polymorphic_type_p (const_tree); /* Return vector containing possible targets of polymorphic call E. If FINALP is non-NULL, store true if the list is complette. CACHE_TOKEN (if non-NULL) will get stored to an unique ID of entry in the target cache. If user needs to visit every target list just once, it can memoize them. Returned vector is placed into cache. It is NOT caller's responsibility to free it. The vector can be freed on cgraph_remove_node call if the particular node is a virtual function present in the cache. */ inline vec possible_polymorphic_call_targets (struct cgraph_edge *e, bool *final = NULL, void **cache_token = NULL, int *nonconstruction_targets = NULL) { gcc_checking_assert (e->indirect_info->polymorphic); ipa_polymorphic_call_context context = {e->indirect_info->offset, e->indirect_info->outer_type, e->indirect_info->maybe_in_construction, e->indirect_info->maybe_derived_type}; return possible_polymorphic_call_targets (e->indirect_info->otr_type, e->indirect_info->otr_token, context, final, cache_token, nonconstruction_targets); } /* Same as above but taking OBJ_TYPE_REF as an parameter. */ inline vec possible_polymorphic_call_targets (tree call, bool *final = NULL, void **cache_token = NULL) { tree otr_type; HOST_WIDE_INT otr_token; ipa_polymorphic_call_context context; get_polymorphic_call_info (current_function_decl, call, &otr_type, &otr_token, &context); return possible_polymorphic_call_targets (obj_type_ref_class (call), tree_to_uhwi (OBJ_TYPE_REF_TOKEN (call)), context, final, cache_token); } /* Dump possible targets of a polymorphic call E into F. */ inline void dump_possible_polymorphic_call_targets (FILE *f, struct cgraph_edge *e) { gcc_checking_assert (e->indirect_info->polymorphic); ipa_polymorphic_call_context context = {e->indirect_info->offset, e->indirect_info->outer_type, e->indirect_info->maybe_in_construction, e->indirect_info->maybe_derived_type}; dump_possible_polymorphic_call_targets (f, e->indirect_info->otr_type, e->indirect_info->otr_token, context); } /* Return true if N can be possibly target of a polymorphic call of E. */ inline bool possible_polymorphic_call_target_p (struct cgraph_edge *e, struct cgraph_node *n) { ipa_polymorphic_call_context context = {e->indirect_info->offset, e->indirect_info->outer_type, e->indirect_info->maybe_in_construction, e->indirect_info->maybe_derived_type}; return possible_polymorphic_call_target_p (e->indirect_info->otr_type, e->indirect_info->otr_token, context, n); } /* Return true if N can be possibly target of a polymorphic call of OBJ_TYPE_REF expression CALL. */ inline bool possible_polymorphic_call_target_p (tree call, struct cgraph_node *n) { return possible_polymorphic_call_target_p (obj_type_ref_class (call), tree_to_uhwi (OBJ_TYPE_REF_TOKEN (call)), ipa_dummy_polymorphic_call_context, n); } #endif /* GCC_IPA_UTILS_H */