annotate gcc/cif-code.def @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents f6334be47118
children 84e7813d76e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 /* This file contains the definitions of the cgraph_inline_failed_t
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 enums used in GCC.
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
3
111
kono
parents: 67
diff changeset
4 Copyright (C) 2008-2017 Free Software Foundation, Inc.
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 Contributed by Doug Kwan <dougkwan@google.com>
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
6
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 This file is part of GCC.
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
8
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
9 GCC is free software you can redistribute it and/or modify it under
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 the terms of the GNU General Public License as published by the Free
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
11 Software Foundation either version 3, or (at your option) any later
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
12 version.
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
13
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
15 WARRANTY without even the implied warranty of MERCHANTABILITY or
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
17 for more details.
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
18
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
19 You should have received a copy of the GNU General Public License
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
20 along with GCC see the file COPYING3. If not see
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
21 <http://www.gnu.org/licenses/>. */
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
22
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
23 /* The format of this file is
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
24 DEFCIFCODE(code, string).
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
25
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
26 Where symbol is the enumeration name without the ``''.
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
27 The argument STRING is a explain the failure. Except for OK,
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
28 which is a NULL pointer. */
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
29
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
30 /* Inlining successful. This must be the first code. */
111
kono
parents: 67
diff changeset
31 DEFCIFCODE(OK, CIF_FINAL_NORMAL, NULL)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
32
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
33 /* Inlining failed for an unspecified reason. */
111
kono
parents: 67
diff changeset
34 DEFCIFCODE(UNSPECIFIED, CIF_FINAL_ERROR, "")
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
35
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
36 /* Function has not be considered for inlining. This is the code for
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
37 functions that have not been rejected for inlining yet. */
111
kono
parents: 67
diff changeset
38 DEFCIFCODE(FUNCTION_NOT_CONSIDERED, CIF_FINAL_NORMAL,
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
39 N_("function not considered for inlining"))
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
40
111
kono
parents: 67
diff changeset
41 /* Caller is compiled with optimizations disabled. */
kono
parents: 67
diff changeset
42 DEFCIFCODE(FUNCTION_NOT_OPTIMIZED, CIF_FINAL_ERROR,
kono
parents: 67
diff changeset
43 N_("caller is not optimized"))
kono
parents: 67
diff changeset
44
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
45 /* Inlining failed owing to unavailable function body. */
111
kono
parents: 67
diff changeset
46 DEFCIFCODE(BODY_NOT_AVAILABLE, CIF_FINAL_ERROR,
kono
parents: 67
diff changeset
47 N_("function body not available"))
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
48
111
kono
parents: 67
diff changeset
49 /* Extern inline function that has been redefined. */
kono
parents: 67
diff changeset
50 DEFCIFCODE(REDEFINED_EXTERN_INLINE, CIF_FINAL_ERROR,
kono
parents: 67
diff changeset
51 N_("redefined extern inline functions are not considered for "
kono
parents: 67
diff changeset
52 "inlining"))
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
53
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
54 /* Function is not inlinable. */
111
kono
parents: 67
diff changeset
55 DEFCIFCODE(FUNCTION_NOT_INLINABLE, CIF_FINAL_ERROR,
kono
parents: 67
diff changeset
56 N_("function not inlinable"))
kono
parents: 67
diff changeset
57
kono
parents: 67
diff changeset
58 /* Function is overwritable. */
kono
parents: 67
diff changeset
59 DEFCIFCODE(OVERWRITABLE, CIF_FINAL_ERROR,
kono
parents: 67
diff changeset
60 N_("function body can be overwritten at link time"))
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
61
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
62 /* Function is not an inlining candidate. */
111
kono
parents: 67
diff changeset
63 DEFCIFCODE(FUNCTION_NOT_INLINE_CANDIDATE, CIF_FINAL_NORMAL,
kono
parents: 67
diff changeset
64 N_("function not inline candidate"))
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
65
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
66 /* Inlining failed because of various limit parameters. */
111
kono
parents: 67
diff changeset
67 DEFCIFCODE(LARGE_FUNCTION_GROWTH_LIMIT, CIF_FINAL_NORMAL,
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
68 N_("--param large-function-growth limit reached"))
111
kono
parents: 67
diff changeset
69 DEFCIFCODE(LARGE_STACK_FRAME_GROWTH_LIMIT, CIF_FINAL_NORMAL,
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
70 N_("--param large-stack-frame-growth limit reached"))
111
kono
parents: 67
diff changeset
71 DEFCIFCODE(MAX_INLINE_INSNS_SINGLE_LIMIT, CIF_FINAL_NORMAL,
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
72 N_("--param max-inline-insns-single limit reached"))
111
kono
parents: 67
diff changeset
73 DEFCIFCODE(MAX_INLINE_INSNS_AUTO_LIMIT, CIF_FINAL_NORMAL,
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
74 N_("--param max-inline-insns-auto limit reached"))
111
kono
parents: 67
diff changeset
75 DEFCIFCODE(INLINE_UNIT_GROWTH_LIMIT, CIF_FINAL_NORMAL,
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
76 N_("--param inline-unit-growth limit reached"))
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
77
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
78 /* Recursive inlining. */
111
kono
parents: 67
diff changeset
79 DEFCIFCODE(RECURSIVE_INLINING, CIF_FINAL_NORMAL,
kono
parents: 67
diff changeset
80 N_("recursive inlining"))
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
81
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
82 /* Call is unlikely. */
111
kono
parents: 67
diff changeset
83 DEFCIFCODE(UNLIKELY_CALL, CIF_FINAL_NORMAL,
kono
parents: 67
diff changeset
84 N_("call is unlikely and code size would grow"))
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
85
111
kono
parents: 67
diff changeset
86 /* Function is not declared as inline. */
kono
parents: 67
diff changeset
87 DEFCIFCODE(NOT_DECLARED_INLINED, CIF_FINAL_NORMAL,
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
88 N_("function not declared inline and code size would grow"))
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
89
111
kono
parents: 67
diff changeset
90 /* Caller and callee disagree on the arguments. */
kono
parents: 67
diff changeset
91 DEFCIFCODE(MISMATCHED_ARGUMENTS, CIF_FINAL_ERROR,
kono
parents: 67
diff changeset
92 N_("mismatched arguments"))
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
93
111
kono
parents: 67
diff changeset
94 /* Caller and callee disagree on the arguments. */
kono
parents: 67
diff changeset
95 DEFCIFCODE(LTO_MISMATCHED_DECLARATIONS, CIF_FINAL_ERROR,
kono
parents: 67
diff changeset
96 N_("mismatched declarations during linktime optimization"))
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
97
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
98 /* Call was originally indirect. */
111
kono
parents: 67
diff changeset
99 DEFCIFCODE(ORIGINALLY_INDIRECT_CALL, CIF_FINAL_NORMAL,
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents:
diff changeset
100 N_("originally indirect function call not considered for inlining"))
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
101
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
102 /* Ths edge represents an indirect edge with a yet-undetermined callee . */
111
kono
parents: 67
diff changeset
103 DEFCIFCODE(INDIRECT_UNKNOWN_CALL, CIF_FINAL_NORMAL,
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
104 N_("indirect function call with a yet undetermined callee"))
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
105
111
kono
parents: 67
diff changeset
106 /* We can't inline different EH personalities together. */
kono
parents: 67
diff changeset
107 DEFCIFCODE(EH_PERSONALITY, CIF_FINAL_ERROR,
kono
parents: 67
diff changeset
108 N_("exception handling personality mismatch"))
kono
parents: 67
diff changeset
109
kono
parents: 67
diff changeset
110 /* We can't inline if the callee can throw non-call exceptions but the
kono
parents: 67
diff changeset
111 caller cannot. */
kono
parents: 67
diff changeset
112 DEFCIFCODE(NON_CALL_EXCEPTIONS, CIF_FINAL_ERROR,
kono
parents: 67
diff changeset
113 N_("non-call exception handling mismatch"))
kono
parents: 67
diff changeset
114
kono
parents: 67
diff changeset
115 /* We can't inline because of mismatched target specific options. */
kono
parents: 67
diff changeset
116 DEFCIFCODE(TARGET_OPTION_MISMATCH, CIF_FINAL_ERROR,
kono
parents: 67
diff changeset
117 N_("target specific option mismatch"))
kono
parents: 67
diff changeset
118
kono
parents: 67
diff changeset
119 /* We can't inline because of mismatched optimization levels. */
kono
parents: 67
diff changeset
120 DEFCIFCODE(OPTIMIZATION_MISMATCH, CIF_FINAL_ERROR,
kono
parents: 67
diff changeset
121 N_("optimization level attribute mismatch"))
kono
parents: 67
diff changeset
122
kono
parents: 67
diff changeset
123 /* We can't inline because the callee refers to comdat-local symbols. */
kono
parents: 67
diff changeset
124 DEFCIFCODE(USES_COMDAT_LOCAL, CIF_FINAL_ERROR,
kono
parents: 67
diff changeset
125 N_("callee refers to comdat-local symbols"))
kono
parents: 67
diff changeset
126
kono
parents: 67
diff changeset
127 /* We can't inline because of mismatched caller/callee attributes. */
kono
parents: 67
diff changeset
128 DEFCIFCODE(ATTRIBUTE_MISMATCH, CIF_FINAL_ERROR,
kono
parents: 67
diff changeset
129 N_("function attribute mismatch"))
kono
parents: 67
diff changeset
130
kono
parents: 67
diff changeset
131 /* We can't inline because of mismatched caller/callee attributes. */
kono
parents: 67
diff changeset
132 DEFCIFCODE(CILK_SPAWN, CIF_FINAL_ERROR,
kono
parents: 67
diff changeset
133 N_("caller function contains cilk spawn"))
kono
parents: 67
diff changeset
134
kono
parents: 67
diff changeset
135 /* We proved that the call is unreachable. */
kono
parents: 67
diff changeset
136 DEFCIFCODE(UNREACHABLE, CIF_FINAL_ERROR,
kono
parents: 67
diff changeset
137 N_("unreachable"))
kono
parents: 67
diff changeset
138
kono
parents: 67
diff changeset
139 /* We can't inline because of instrumentation thunk. */
kono
parents: 67
diff changeset
140 DEFCIFCODE(CHKP, CIF_FINAL_ERROR,
kono
parents: 67
diff changeset
141 N_("caller is instrumentation thunk"))