From b1212255558f0a4a398c7314f92effe4dbdcfec2 Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Tue, 21 Nov 2017 00:46:24 +0000 Subject: C: hints for missing stdlib includes for macros and types The C frontend already "knows" about many common functions in the C standard library: test.c: In function 'test': test.c:3:3: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration] printf ("hello world\n"); ^~~~~~ test.c:3:3: warning: incompatible implicit declaration of built-in function 'printf' test.c:3:3: note: include '' or provide a declaration of 'printf' and which header file they are in. However it doesn't know about various types and macros: test.c:1:13: error: 'NULL' undeclared here (not in a function) void *ptr = NULL; ^~~~ This patch uses the name_hint/deferred_diagnostic machinery to add hints for missing C standard library headers for some of the most common type and macro names. For example, the above becomes: test.c:1:13: error: 'NULL' undeclared here (not in a function) void *ptr = NULL; ^~~~ test.c:1:13: note: 'NULL' is defined in header ''; did you forget to '#include '? gcc/c/ChangeLog: * c-decl.c (get_c_name_hint): New function. (class suggest_missing_header): New class. (lookup_name_fuzzy): Call get_c_name_hint and use it to suggest missing headers to the user. gcc/testsuite/ChangeLog: * gcc.dg/spellcheck-stdlib.c: New test case. From-SVN: r254979 --- gcc/c/c-decl.c | 92 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 90 insertions(+), 2 deletions(-) (limited to 'gcc/c/c-decl.c') diff --git a/gcc/c/c-decl.c b/gcc/c/c-decl.c index 7726476..ae45e9a 100644 --- a/gcc/c/c-decl.c +++ b/gcc/c/c-decl.c @@ -3992,6 +3992,83 @@ lookup_name_in_scope (tree name, struct c_scope *scope) return NULL_TREE; } +/* Subroutine of lookup_name_fuzzy for handling unrecognized names + for some of the most common names within the C standard library. + Given non-NULL NAME, return the header name defining it within the C + standard library (with '<' and '>'), or NULL. */ + +static const char * +get_c_name_hint (const char *name) +{ + struct std_name_hint + { + const char *name; + const char *header; + }; + static const std_name_hint hints[] = { + /* . */ + {"errno", ""}, + + /* . */ + {"va_list", ""}, + + /* . */ + {"NULL", ""}, + {"ptrdiff_t", ""}, + {"wchar_t", ""}, + {"size_t", ""}, + + /* . */ + {"BUFSIZ", ""}, + {"EOF", ""}, + {"FILE", ""}, + {"FILENAME_MAX", ""}, + {"fpos_t", ""}, + {"stderr", ""}, + {"stdin", ""}, + {"stdout", ""} + }; + const size_t num_hints = sizeof (hints) / sizeof (hints[0]); + for (size_t i = 0; i < num_hints; i++) + { + if (0 == strcmp (name, hints[i].name)) + return hints[i].header; + } + return NULL; +} + +/* Subclass of deferred_diagnostic for suggesting to the user + that they have missed a #include. */ + +class suggest_missing_header : public deferred_diagnostic +{ + public: + suggest_missing_header (location_t loc, const char *name, + const char *header_hint) + : deferred_diagnostic (loc), m_name_str (name), m_header_hint (header_hint) + { + gcc_assert (name); + gcc_assert (header_hint); + } + + ~suggest_missing_header () + { + if (is_suppressed_p ()) + return; + + gcc_rich_location richloc (get_location ()); + maybe_add_include_fixit (&richloc, m_header_hint); + inform (&richloc, + "%qs is defined in header %qs;" + " did you forget to %<#include %s%>?", + m_name_str, m_header_hint, m_header_hint); + } + + private: + const char *m_name_str; + const char *m_header_hint; +}; + /* Look for the closest match for NAME within the currently valid scopes. @@ -4006,13 +4083,24 @@ lookup_name_in_scope (tree name, struct c_scope *scope) identifier to the C frontend. It also looks for start_typename keywords, to detect "singed" vs "signed" - typos. */ + typos. + + Use LOC for any deferred diagnostics. */ name_hint -lookup_name_fuzzy (tree name, enum lookup_name_fuzzy_kind kind, location_t) +lookup_name_fuzzy (tree name, enum lookup_name_fuzzy_kind kind, location_t loc) { gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE); + /* First, try some well-known names in the C standard library, in case + the user forgot a #include. */ + const char *header_hint = get_c_name_hint (IDENTIFIER_POINTER (name)); + if (header_hint) + return name_hint (NULL, + new suggest_missing_header (loc, + IDENTIFIER_POINTER (name), + header_hint)); + best_match bm (name); /* Look within currently valid scopes. */ -- cgit v1.1