]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/cif-code.def
Redefine STACK_BOUNDARY/PREFERRED_STACK_BOUNDARY for Darwin/x86.
[thirdparty/gcc.git] / gcc / cif-code.def
CommitLineData
0e1d5770 1/* This file contains the definitions of the cgraph_inline_failed_t
2 enums used in GCC.
3
4 Copyright (C) 2008 Free Software Foundation, Inc.
5 Contributed by Doug Kwan <dougkwan@google.com>
6
7This file is part of GCC.
8
9GCC is free software you can redistribute it and/or modify it under
10the terms of the GNU General Public License as published by the Free
11Software Foundation either version 3, or (at your option) any later
12version.
13
14GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15WARRANTY without even the implied warranty of MERCHANTABILITY or
16FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17for more details.
18
19You should have received a copy of the GNU General Public License
20along with GCC see the file COPYING3. If not see
21<http://www.gnu.org/licenses/>. */
22
23/* The format of this file is
24 DEFCIFCODE(code, string).
25
26 Where symbol is the enumeration name without the ``''.
27 The argument STRING is a explain the failure. Except for OK,
28 which is a NULL pointer. */
29
30/* Inlining successful. This must be the first code. */
31DEFCIFCODE(OK , NULL)
32
33/* Inlining failed for an unspecified reason. */
34DEFCIFCODE(UNSPECIFIED , "")
35
36/* Function has not be considered for inlining. This is the code for
37 functions that have not been rejected for inlining yet. */
38DEFCIFCODE(FUNCTION_NOT_CONSIDERED,
39 N_("function not considered for inlining"))
40
41/* Inlining failed owing to unavailable function body. */
42DEFCIFCODE(BODY_NOT_AVAILABLE, N_("function body not available"))
43
44DEFCIFCODE(REDEFINED_EXTERN_INLINE,
45 N_("redefined extern inline functions are not considered for "
46 "inlining"))
47
48/* Function is not inlinable. */
49DEFCIFCODE(FUNCTION_NOT_INLINABLE, N_("function not inlinable"))
50
51/* Function is not an inlining candidate. */
52DEFCIFCODE(FUNCTION_NOT_INLINE_CANDIDATE, N_("function not inline candidate"))
53
54/* Inlining failed because of various limit parameters. */
55DEFCIFCODE(LARGE_FUNCTION_GROWTH_LIMIT,
56 N_("--param large-function-growth limit reached"))
57DEFCIFCODE(LARGE_STACK_FRAME_GROWTH_LIMIT,
58 N_("--param large-stack-frame-growth limit reached"))
59DEFCIFCODE(MAX_INLINE_INSNS_SINGLE_LIMIT,
60 N_("--param max-inline-insns-single limit reached"))
61DEFCIFCODE(MAX_INLINE_INSNS_AUTO_LIMIT,
62 N_("--param max-inline-insns-auto limit reached"))
63DEFCIFCODE(INLINE_UNIT_GROWTH_LIMIT,
48e1416a 64 N_("--param inline-unit-growth limit reached"))
0e1d5770 65
66/* Recursive inlining. */
67DEFCIFCODE(RECURSIVE_INLINING, N_("recursive inlining"))
68
69/* Call is unlikely. */
70DEFCIFCODE(UNLIKELY_CALL, N_("call is unlikely and code size would grow"))
71
72/* Function is not declared as an inline. */
73DEFCIFCODE(NOT_DECLARED_INLINED,
74 N_("function not declared inline and code size would grow"))
75
76/* Inlining suppressed due to size optimization. */
77DEFCIFCODE(OPTIMIZING_FOR_SIZE,
78 N_("optimizing for size and code size would grow"))
79
80/* Inlining failed because of mismatched options or arguments. */
81DEFCIFCODE(TARGET_OPTION_MISMATCH, N_("target specific option mismatch"))
82DEFCIFCODE(MISMATCHED_ARGUMENTS, N_("mismatched arguments"))
83
84/* Call was originally indirect. */
85DEFCIFCODE(ORIGINALLY_INDIRECT_CALL,
86 N_("originally indirect function call not considered for inlining"))
799c8711 87
88/* Ths edge represents an indirect edge with a yet-undetermined callee . */
89DEFCIFCODE(INDIRECT_UNKNOWN_CALL,
90 N_("indirect function call with a yet undetermined callee"))