]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/ipa-ref.h
Fix LTO bootstrap.
[thirdparty/gcc.git] / gcc / ipa-ref.h
CommitLineData
369451ec 1/* IPA reference lists.
5624e564 2 Copyright (C) 2010-2015 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;
2c8326a5 25class varpool_node;
5e20cdc9 26class 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,
d5e254e1
IE
35 IPA_REF_ALIAS,
36 IPA_REF_CHKP
369451ec
JH
37};
38
369451ec
JH
39/* Record of reference in callgraph or varpool. */
40struct GTY(()) ipa_ref
41{
d122681a
ML
42public:
43 /* Remove reference. */
44 void remove_reference ();
45
46 /* Return true when execution of reference can lead to return from
47 function. */
48 bool cannot_lead_to_return ();
49
50 /* Return reference list this reference is in. */
51 struct ipa_ref_list * referring_ref_list (void);
52
53 /* Return reference list this reference is in. */
54 struct ipa_ref_list * referred_ref_list (void);
55
5e20cdc9
DM
56 symtab_node *referring;
57 symtab_node *referred;
369451ec 58 gimple stmt;
042ae7d2 59 unsigned int lto_stmt_uid;
5932a4d4 60 unsigned int referred_index;
d5e254e1 61 ENUM_BITFIELD (ipa_ref_use) use:3;
042ae7d2 62 unsigned int speculative:1;
369451ec
JH
63};
64
65typedef struct ipa_ref ipa_ref_t;
66typedef struct ipa_ref *ipa_ref_ptr;
67
369451ec
JH
68
69/* List of references. This is stored in both callgraph and varpool nodes. */
70struct GTY(()) ipa_ref_list
71{
d122681a
ML
72public:
73 /* Return first reference in list or NULL if empty. */
74 struct ipa_ref *first_reference (void)
75 {
76 if (!vec_safe_length (references))
77 return NULL;
78 return &(*references)[0];
79 }
80
81 /* Return first referring ref in list or NULL if empty. */
82 struct ipa_ref *first_referring (void)
83 {
84 if (!referring.length ())
85 return NULL;
86 return referring[0];
87 }
88
e55637b7
ML
89 /* Return first referring alias. */
90 struct ipa_ref *first_alias (void)
91 {
92 struct ipa_ref *r = first_referring ();
93
94 return r && r->use == IPA_REF_ALIAS ? r : NULL;
95 }
96
97 /* Return last referring alias. */
98 struct ipa_ref *last_alias (void)
99 {
100 unsigned int i = 0;
101
102 for(i = 0; i < referring.length (); i++)
103 if (referring[i]->use != IPA_REF_ALIAS)
104 break;
105
106 return i == 0 ? NULL : referring[i - 1];
107 }
108
109 /* Return true if the symbol has an alias. */
110 bool inline has_aliases_p (void)
111 {
112 return first_alias ();
113 }
114
d122681a
ML
115 /* Clear reference list. */
116 void clear (void)
117 {
118 referring.create (0);
119 references = NULL;
120 }
121
122 /* Return number of references. */
123 unsigned int nreferences (void)
124 {
125 return vec_safe_length (references);
126 }
127
369451ec 128 /* Store actual references in references vector. */
9771b263 129 vec<ipa_ref_t, va_gc> *references;
073a8998 130 /* Referring is vector of pointers to references. It must not live in GGC space
369451ec 131 or GGC will try to mark middle of references vectors. */
9771b263 132 vec<ipa_ref_ptr> GTY((skip)) referring;
369451ec 133};
f1717f8d
KC
134
135#endif /* GCC_IPA_REF_H */