1 /* IPA reference lists.
2 Copyright (C) 2010-2014 Free Software Foundation, Inc.
3 Contributed by Jan Hubicka
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* Return callgraph node REF is referring. */
22 static inline struct cgraph_node
*
23 ipa_ref_node (struct ipa_ref
*ref
)
25 return cgraph (ref
->referred
);
28 /* Return varpool node REF is referring. */
30 static inline varpool_node
*
31 ipa_ref_varpool_node (struct ipa_ref
*ref
)
33 return varpool (ref
->referred
);
36 /* Return cgraph node REF is in. */
38 static inline struct cgraph_node
*
39 ipa_ref_referring_node (struct ipa_ref
*ref
)
41 return cgraph (ref
->referring
);
44 /* Return varpool node REF is in. */
46 static inline varpool_node
*
47 ipa_ref_referring_varpool_node (struct ipa_ref
*ref
)
49 return varpool (ref
->referring
);
52 /* Return reference list REF is in. */
54 static inline struct ipa_ref_list
*
55 ipa_ref_referring_ref_list (struct ipa_ref
*ref
)
57 return &ref
->referring
->ref_list
;
60 /* Return reference list REF is in. */
62 static inline struct ipa_ref_list
*
63 ipa_ref_referred_ref_list (struct ipa_ref
*ref
)
65 return &ref
->referred
->ref_list
;
68 /* Return first reference in LIST or NULL if empty. */
70 static inline struct ipa_ref
*
71 ipa_ref_list_first_reference (struct ipa_ref_list
*list
)
73 if (!vec_safe_length (list
->references
))
75 return &(*list
->references
)[0];
78 /* Return first referring ref in LIST or NULL if empty. */
80 static inline struct ipa_ref
*
81 ipa_ref_list_first_referring (struct ipa_ref_list
*list
)
83 if (!list
->referring
.length ())
85 return list
->referring
[0];
88 /* Clear reference list. */
91 ipa_empty_ref_list (struct ipa_ref_list
*list
)
93 list
->referring
.create (0);
94 list
->references
= NULL
;
97 /* Clear reference list. */
99 static inline unsigned int
100 ipa_ref_list_nreferences (struct ipa_ref_list
*list
)
102 return vec_safe_length (list
->references
);
105 #define ipa_ref_list_reference_iterate(L,I,P) \
106 vec_safe_iterate ((L)->references, (I), &(P))
107 #define ipa_ref_list_referring_iterate(L,I,P) \
108 (L)->referring.iterate ((I), &(P))