]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / include / clang / Basic / DiagnosticFrontendKinds.td
1 //==--- DiagnosticFrontendKinds.td - frontend diagnostics -----------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 class BackendInfo : CatBackend, ShowInSystemHeader;
11
12 let Component = "Frontend" in {
13
14 def err_fe_error_opening : Error<"error opening '%0': %1">;
15 def err_fe_error_reading : Error<"error reading '%0'">;
16 def err_fe_error_reading_stdin : Error<"error reading stdin: %0">;
17 def err_fe_error_backend : Error<"error in backend: %0">, DefaultFatal;
18
19 def err_fe_inline_asm : Error<"%0">, CatInlineAsm;
20 def warn_fe_inline_asm : Warning<"%0">, CatInlineAsm, InGroup<BackendInlineAsm>;
21 def note_fe_inline_asm : Note<"%0">, CatInlineAsm;
22 def note_fe_inline_asm_here : Note<"instantiated into assembly here">;
23 def err_fe_cannot_link_module : Error<"cannot link module '%0': %1">,
24   DefaultFatal;
25
26 def warn_fe_frame_larger_than : Warning<"stack frame size of %0 bytes in %q1">,
27     BackendInfo, InGroup<BackendFrameLargerThanEQ>;
28 def warn_fe_backend_frame_larger_than: Warning<"%0">,
29     BackendInfo, InGroup<BackendFrameLargerThanEQ>;
30 def err_fe_backend_frame_larger_than: Error<"%0">, BackendInfo;
31 def note_fe_backend_frame_larger_than: Note<"%0">, BackendInfo;
32
33 def warn_fe_backend_plugin: Warning<"%0">, BackendInfo, InGroup<BackendPlugin>;
34 def err_fe_backend_plugin: Error<"%0">, BackendInfo;
35 def remark_fe_backend_plugin: Remark<"%0">, BackendInfo, InGroup<RemarkBackendPlugin>;
36 def note_fe_backend_plugin: Note<"%0">, BackendInfo;
37
38 def warn_fe_override_module : Warning<
39     "overriding the module target triple with %0">,
40     InGroup<DiagGroup<"override-module">>;
41
42 def remark_fe_backend_optimization_remark : Remark<"%0">, BackendInfo,
43     InGroup<BackendOptimizationRemark>;
44 def remark_fe_backend_optimization_remark_missed : Remark<"%0">, BackendInfo,
45     InGroup<BackendOptimizationRemarkMissed>;
46 def remark_fe_backend_optimization_remark_analysis : Remark<"%0">, BackendInfo,
47     InGroup<BackendOptimizationRemarkAnalysis>;
48 def remark_fe_backend_optimization_remark_analysis_fpcommute : Remark<"%0; "
49     "allow reordering by specifying '#pragma clang loop vectorize(enable)' "
50     "before the loop or by providing the compiler option '-ffast-math'.">,
51     BackendInfo, InGroup<BackendOptimizationRemarkAnalysis>;
52 def remark_fe_backend_optimization_remark_analysis_aliasing : Remark<"%0; "
53     "allow reordering by specifying '#pragma clang loop vectorize(enable)' "
54     "before the loop. If the arrays will always be independent specify "
55     "'#pragma clang loop vectorize(assume_safety)' before the loop or provide "
56     "the '__restrict__' qualifier with the independent array arguments. "
57     "Erroneous results will occur if these options are incorrectly applied!">,
58     BackendInfo, InGroup<BackendOptimizationRemarkAnalysis>;
59 def warn_fe_backend_optimization_failure : Warning<"%0">, BackendInfo,
60     InGroup<BackendOptimizationFailure>, DefaultWarn;
61 def note_fe_backend_invalid_loc : Note<"could "
62   "not determine the original source location for %0:%1:%2">, BackendInfo;
63
64 def err_fe_backend_unsupported : Error<"%0">, BackendInfo;
65
66 def err_fe_invalid_code_complete_file : Error<
67     "cannot locate code-completion file %0">, DefaultFatal;
68 def err_fe_stdout_binary : Error<"unable to change standard output to binary">,
69   DefaultFatal;
70 def err_fe_dependency_file_requires_MT : Error<
71     "-dependency-file requires at least one -MT or -MQ option">;
72 def err_fe_invalid_plugin_name : Error<
73     "unable to find plugin '%0'">;
74 def err_fe_expected_compiler_job : Error<
75     "unable to handle compilation, expected exactly one compiler job in '%0'">;
76 def err_fe_expected_clang_command : Error<
77     "expected a clang compiler command">;
78 def err_fe_remap_missing_to_file : Error<
79     "could not remap file '%0' to the contents of file '%1'">, DefaultFatal;
80 def err_fe_remap_missing_from_file : Error<
81     "could not remap from missing file '%0'">, DefaultFatal;
82 def err_fe_unable_to_load_pch : Error<
83     "unable to load PCH file">;
84 def err_fe_unable_to_load_plugin : Error<
85     "unable to load plugin '%0': '%1'">;
86 def err_fe_unable_to_create_target : Error<
87     "unable to create target: '%0'">;
88 def err_fe_unable_to_interface_with_target : Error<
89     "unable to interface with target machine">;
90 def err_fe_unable_to_open_output : Error<
91     "unable to open output file '%0': '%1'">;
92 def warn_fe_macro_contains_embedded_newline : Warning<
93     "macro '%0' contains embedded newline; text after the newline is ignored">;
94 def warn_fe_cc_print_header_failure : Warning<
95     "unable to open CC_PRINT_HEADERS file: %0 (using stderr)">;
96 def warn_fe_cc_log_diagnostics_failure : Warning<
97     "unable to open CC_LOG_DIAGNOSTICS file: %0 (using stderr)">;
98 def warn_fe_unable_to_open_stats_file : Warning<
99     "unable to open statistics output file '%0': '%1'">,
100     InGroup<DiagGroup<"unable-to-open-stats-file">>;
101 def err_fe_no_pch_in_dir : Error<
102     "no suitable precompiled header file found in directory '%0'">;
103 def err_fe_action_not_available : Error<
104     "action %0 not compiled in">;
105 def err_fe_invalid_alignment : Error<
106     "invalid value '%1' in '%0'; alignment must be a power of 2">;
107 def err_fe_invalid_wchar_type
108     : Error<"invalid wchar_t type '%0'; must be one of 'char', 'short', 'int'">;
109 def err_fe_invalid_exception_model
110    : Error<"invalid exception model '%0' for target '%1'">;
111
112 def warn_fe_serialized_diag_merge_failure : Warning<
113     "unable to merge a subprocess's serialized diagnostics">,
114     InGroup<SerializedDiagnostics>;
115 def warn_fe_serialized_diag_failure : Warning<
116     "unable to open file %0 for serializing diagnostics (%1)">,
117     InGroup<SerializedDiagnostics>;
118
119 def err_verify_missing_line : Error<
120     "missing or invalid line number following '@' in expected %0">;
121 def err_verify_missing_file : Error<
122     "file '%0' could not be located in expected %1">;
123 def err_verify_invalid_range : Error<
124     "invalid range following '-' in expected %0">;
125 def err_verify_missing_start : Error<
126     "cannot find start ('{{') of expected %0">;
127 def err_verify_missing_end : Error<
128     "cannot find end ('}}') of expected %0">;
129 def err_verify_invalid_content : Error<
130     "invalid expected %0: %1">;
131 def err_verify_missing_regex : Error<
132     "cannot find start of regex ('{{') in %0">;
133 def err_verify_inconsistent_diags : Error<
134     "'%0' diagnostics %select{expected|seen}1 but not %select{seen|expected}1: "
135     "%2">;
136 def err_verify_invalid_no_diags : Error<
137     "%select{expected|'expected-no-diagnostics'}0 directive cannot follow "
138     "%select{'expected-no-diagnostics' directive|other expected directives}0">;
139 def err_verify_no_directives : Error<
140     "no expected directives found: consider use of 'expected-no-diagnostics'">;
141
142 def note_fixit_applied : Note<"FIX-IT applied suggested code changes">;
143 def note_fixit_in_macro : Note<
144     "FIX-IT unable to apply suggested code changes in a macro">;
145 def note_fixit_failed : Note<
146     "FIX-IT unable to apply suggested code changes">;
147 def note_fixit_unfixed_error : Note<"FIX-IT detected an error it cannot fix">;
148 def warn_fixit_no_changes : Note<
149     "FIX-IT detected errors it could not fix; no output will be generated">;
150
151 // PCH reader
152 def err_relocatable_without_isysroot : Error<
153     "must specify system root with -isysroot when building a relocatable "
154     "PCH file">;
155
156 def warn_unknown_diag_option : Warning<
157     "unknown %select{warning|remark}0 option '%1'%select{|; did you mean '%3'?}2">,
158     InGroup<UnknownWarningOption>;
159 def warn_unknown_warning_specifier : Warning<
160     "unknown %0 warning specifier: '%1'">,
161     InGroup<UnknownWarningOption>;
162
163 def warn_incompatible_analyzer_plugin_api : Warning<
164     "checker plugin '%0' is not compatible with this version of the analyzer">,
165     InGroup<DiagGroup<"analyzer-incompatible-plugin"> >;
166 def note_incompatible_analyzer_plugin_api : Note<
167     "current API version is '%0', but plugin was compiled with version '%1'">;
168
169 def err_module_build_requires_fmodules : Error<
170   "module compilation requires '-fmodules'">;
171 def err_module_interface_requires_modules_ts : Error<
172   "module interface compilation requires '-fmodules-ts'">;
173 def err_header_module_requires_modules : Error<
174   "header module compilation requires '-fmodules' or '-fmodules-ts'">;
175 def warn_module_config_mismatch : Warning<
176   "module file %0 cannot be loaded due to a configuration mismatch with the current "
177   "compilation">, InGroup<DiagGroup<"module-file-config-mismatch">>, DefaultError;
178 def err_module_map_not_found : Error<"module map file '%0' not found">,
179   DefaultFatal;
180 def err_missing_module_name : Error<
181   "no module name provided; specify one with -fmodule-name=">,
182   DefaultFatal;
183 def err_missing_module : Error<
184   "no module named '%0' declared in module map file '%1'">, DefaultFatal;
185 def err_no_submodule : Error<"no submodule named %0 in module '%1'">;
186 def err_no_submodule_suggest : Error<
187   "no submodule named %0 in module '%1'; did you mean '%2'?">;
188 def warn_no_priv_submodule_use_toplevel : Warning<
189   "no submodule named %0 in module '%1'; using top level '%2'">,
190   InGroup<PrivateModule>;
191 def note_private_top_level_defined : Note<
192   "module defined here">;
193 def warn_missing_submodule : Warning<"missing submodule '%0'">,
194   InGroup<IncompleteUmbrella>;
195 def note_module_import_here : Note<"module imported here">;
196 def err_module_cannot_create_includes : Error<
197   "cannot create includes file for module %0: %1">;
198 def warn_module_config_macro_undef : Warning<
199   "%select{definition|#undef}0 of configuration macro '%1' has no effect on "
200   "the import of '%2'; pass '%select{-D%1=...|-U%1}0' on the command line "
201   "to configure the module">,
202   InGroup<ConfigMacros>;
203 def note_module_def_undef_here : Note<
204   "macro was %select{defined|#undef'd}0 here">;
205 def remark_module_build : Remark<"building module '%0' as '%1'">,
206   InGroup<ModuleBuild>;
207 def remark_module_build_done : Remark<"finished building module '%0'">,
208   InGroup<ModuleBuild>;
209 def err_modules_embed_file_not_found :
210   Error<"file '%0' specified by '-fmodules-embed-file=' not found">,
211   DefaultFatal;
212 def err_module_header_file_not_found :
213   Error<"module header file '%0' not found">, DefaultFatal;
214 def err_module_header_file_invalid :
215   Error<"unexpected module header file input '%0'">, DefaultFatal;
216
217 def err_test_module_file_extension_version : Error<
218   "test module file extension '%0' has different version (%1.%2) than expected "
219   "(%3.%4)">;
220
221 def err_missing_vfs_overlay_file : Error<
222   "virtual filesystem overlay file '%0' not found">, DefaultFatal;
223 def err_invalid_vfs_overlay : Error<
224   "invalid virtual filesystem overlay file '%0'">, DefaultFatal;
225
226 def warn_option_invalid_ocl_version : Warning<
227   "OpenCL version %0 does not support the option '%1'">, InGroup<Deprecated>;
228
229 def warn_stdlibcxx_not_found : Warning<
230   "include path for stdlibc++ headers not found; pass '-stdlib=libc++' on the "
231   "command line to use the libc++ standard library instead">,
232   InGroup<DiagGroup<"stdlibcxx-not-found">>;
233
234 def err_builtin_needs_feature : Error<"%0 needs target feature %1">;
235 def err_function_needs_feature : Error<
236   "always_inline function %1 requires target feature '%2', but would "
237   "be inlined into function %0 that is compiled without support for '%2'">;
238
239 def err_alias_to_undefined : Error<
240   "%select{alias|ifunc}0 must point to a defined "
241   "%select{variable or |}1function">;
242 def warn_alias_to_weak_alias : Warning<
243   "%select{alias|ifunc}2 will always resolve to %0 even if weak definition of "
244   "%1 is overridden">,
245   InGroup<IgnoredAttributes>;
246 def err_duplicate_mangled_name : Error<
247   "definition with same mangled name '%0' as another definition">;
248 def err_cyclic_alias : Error<
249   "%select{alias|ifunc}0 definition is part of a cycle">;
250 def err_ifunc_resolver_return : Error<
251   "ifunc resolver function must return a pointer">;
252
253 def warn_atomic_op_misaligned : Warning<
254   "%select{large|misaligned}0 atomic operation may incur "
255   "significant performance penalty">, InGroup<DiagGroup<"atomic-alignment">>;
256
257 def warn_alias_with_section : Warning<
258   "%select{alias|ifunc}1 will not be in section '%0' but in the same section "
259   "as the %select{aliasee|resolver}2">,
260   InGroup<IgnoredAttributes>;
261
262 let CategoryName = "Instrumentation Issue" in {
263 def warn_profile_data_out_of_date : Warning<
264   "profile data may be out of date: of %0 function%s0, %1 %plural{1:has|:have}1"
265   " mismatched data that will be ignored">,
266   InGroup<ProfileInstrOutOfDate>;
267 def warn_profile_data_missing : Warning<
268   "profile data may be incomplete: of %0 function%s0, %1 %plural{1:has|:have}1"
269   " no data">,
270   InGroup<ProfileInstrMissing>,
271   DefaultIgnore;
272 def warn_profile_data_unprofiled : Warning<
273   "no profile data available for file \"%0\"">,
274   InGroup<ProfileInstrUnprofiled>;
275
276 } // end of instrumentation issue category
277
278 }