]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/ipa-ref.h
c++: Handle multiple aggregate overloads [PR95319].
[thirdparty/gcc.git] / gcc / ipa-ref.h
CommitLineData
369451ec 1/* IPA reference lists.
8d9254fc 2 Copyright (C) 2010-2020 Free Software Foundation, Inc.
369451ec
JH
3 Contributed by Jan Hubicka
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 3, or (at your option) any later
10version.
11
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
20
f1717f8d
KC
21#ifndef GCC_IPA_REF_H
22#define GCC_IPA_REF_H
23
369451ec 24struct cgraph_node;
99b1c316
MS
25struct varpool_node;
26struct symtab_node;
5932a4d4 27
369451ec
JH
28
29/* How the reference is done. */
30enum GTY(()) ipa_ref_use
31{
32 IPA_REF_LOAD,
33 IPA_REF_STORE,
39e2db00 34 IPA_REF_ADDR,
31db0fe0 35 IPA_REF_ALIAS
369451ec
JH
36};
37
369451ec
JH
38/* Record of reference in callgraph or varpool. */
39struct GTY(()) ipa_ref
40{
d122681a
ML
41public:
42 /* Remove reference. */
43 void remove_reference ();
44
45 /* Return true when execution of reference can lead to return from
46 function. */
47 bool cannot_lead_to_return ();
48
956d615d 49 /* Return true if reference may be used in address compare. */
5ebd0e61
ML
50 bool address_matters_p ();
51
d122681a
ML
52 /* Return reference list this reference is in. */
53 struct ipa_ref_list * referring_ref_list (void);
54
55 /* Return reference list this reference is in. */
56 struct ipa_ref_list * referred_ref_list (void);
57
5e20cdc9
DM
58 symtab_node *referring;
59 symtab_node *referred;
355fe088 60 gimple *stmt;
042ae7d2 61 unsigned int lto_stmt_uid;
f1ba88b1
XHL
62 /* speculative id is used to link direct calls with their corresponding
63 IPA_REF_ADDR references when representing speculative calls. */
64 unsigned int speculative_id : 16;
5932a4d4 65 unsigned int referred_index;
d5e254e1 66 ENUM_BITFIELD (ipa_ref_use) use:3;
042ae7d2 67 unsigned int speculative:1;
369451ec
JH
68};
69
70typedef struct ipa_ref ipa_ref_t;
71typedef struct ipa_ref *ipa_ref_ptr;
72
369451ec
JH
73
74/* List of references. This is stored in both callgraph and varpool nodes. */
75struct GTY(()) ipa_ref_list
76{
d122681a
ML
77public:
78 /* Return first reference in list or NULL if empty. */
79 struct ipa_ref *first_reference (void)
80 {
81 if (!vec_safe_length (references))
82 return NULL;
83 return &(*references)[0];
84 }
85
86 /* Return first referring ref in list or NULL if empty. */
87 struct ipa_ref *first_referring (void)
88 {
89 if (!referring.length ())
90 return NULL;
91 return referring[0];
92 }
93
e55637b7
ML
94 /* Return first referring alias. */
95 struct ipa_ref *first_alias (void)
96 {
97 struct ipa_ref *r = first_referring ();
98
99 return r && r->use == IPA_REF_ALIAS ? r : NULL;
100 }
101
102 /* Return last referring alias. */
103 struct ipa_ref *last_alias (void)
104 {
105 unsigned int i = 0;
106
107 for(i = 0; i < referring.length (); i++)
108 if (referring[i]->use != IPA_REF_ALIAS)
109 break;
110
111 return i == 0 ? NULL : referring[i - 1];
112 }
113
114 /* Return true if the symbol has an alias. */
115 bool inline has_aliases_p (void)
116 {
117 return first_alias ();
118 }
119
d122681a
ML
120 /* Clear reference list. */
121 void clear (void)
122 {
123 referring.create (0);
124 references = NULL;
125 }
126
127 /* Return number of references. */
128 unsigned int nreferences (void)
129 {
130 return vec_safe_length (references);
131 }
132
369451ec 133 /* Store actual references in references vector. */
9771b263 134 vec<ipa_ref_t, va_gc> *references;
073a8998 135 /* Referring is vector of pointers to references. It must not live in GGC space
369451ec 136 or GGC will try to mark middle of references vectors. */
9771b263 137 vec<ipa_ref_ptr> GTY((skip)) referring;
369451ec 138};
f1717f8d
KC
139
140#endif /* GCC_IPA_REF_H */