1 /* IPA reference lists.
3 Free Software Foundation, Inc.
4 Contributed by Jan Hubicka
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
24 union symtab_node_def
;
25 typedef union symtab_node_def
*symtab_node
;
26 typedef const union symtab_node_def
*const_symtab_node
;
29 /* How the reference is done. */
30 enum GTY(()) ipa_ref_use
38 /* Record of reference in callgraph or varpool. */
39 struct GTY(()) ipa_ref
41 symtab_node referring
;
44 unsigned int referred_index
;
45 ENUM_BITFIELD (ipa_ref_use
) use
:2;
48 typedef struct ipa_ref ipa_ref_t
;
49 typedef struct ipa_ref
*ipa_ref_ptr
;
52 DEF_VEC_ALLOC_O(ipa_ref_t
,gc
);
53 DEF_VEC_P(ipa_ref_ptr
);
54 DEF_VEC_ALLOC_P(ipa_ref_ptr
,heap
);
56 /* List of references. This is stored in both callgraph and varpool nodes. */
57 struct GTY(()) ipa_ref_list
59 /* Store actual references in references vector. */
60 VEC(ipa_ref_t
,gc
) *references
;
61 /* Referring is vector of pointers to references. It must not live in GGC space
62 or GGC will try to mark middle of references vectors. */
63 VEC(ipa_ref_ptr
,heap
) * GTY((skip
)) referring
;
66 struct ipa_ref
* ipa_record_reference (symtab_node
,
68 enum ipa_ref_use
, gimple
);
70 void ipa_remove_reference (struct ipa_ref
*);
71 void ipa_remove_all_references (struct ipa_ref_list
*);
72 void ipa_remove_all_referring (struct ipa_ref_list
*);
73 void ipa_dump_references (FILE *, struct ipa_ref_list
*);
74 void ipa_dump_referring (FILE *, struct ipa_ref_list
*);
75 void ipa_clone_references (symtab_node
, struct ipa_ref_list
*);
76 void ipa_clone_referring (symtab_node
, struct ipa_ref_list
*);
77 bool ipa_ref_cannot_lead_to_return (struct ipa_ref
*);
78 bool ipa_ref_has_aliases_p (struct ipa_ref_list
*);