Commit 2dac4037 by Paolo Carlini Committed by Paolo Carlini

decl.c (min_location): New.

/cp
2018-07-03  Paolo Carlini  <paolo.carlini@oracle.com>

	* decl.c (min_location): New.
	(smallest_type_quals_location): Use the latter.
	(check_concept_fn): Use DECL_SOURCE_LOCATION.
	(grokdeclarator): Use accurate locations in a number of error
	messages involving ds_thread, ds_storage_class, ds_virtual,
	ds_constexpr, ds_typedef and ds_friend; exploit min_location.

/testsuite
2018-07-03  Paolo Carlini  <paolo.carlini@oracle.com>

	* g++.dg/other/locations1.C: New.
	* g++.dg/tls/locations1.C: Likewise.
	* g++.dg/diagnostic/virtual-constexpr.C: Likewise.
	* g++.dg/diagnostic/virtual-static.C: Likewise.
	* g++.dg/concepts/fn-concept2.C: Test the locations too.
	* g++.dg/cpp0x/constexpr-virtual5.C: Likewise.
	* g++.dg/cpp0x/pr51463.C: Likewise.
	* g++.dg/other/typedef1.C: Likewise.
	* g++.dg/parse/dtor13.C: Likewise.
	* g++.dg/template/error44.C: Likewise.
	* g++.dg/template/typedef4.C: Likewise.
	* g++.dg/template/typedef5.C: Likewise.
	* g++.dg/tls/diag-2.C: Likewise.
	* g++.old-deja/g++.brendan/crash11.C: Likewise.

From-SVN: r262358
parent c3c3ddbb
2018-07-03 Paolo Carlini <paolo.carlini@oracle.com>
* decl.c (min_location): New.
(smallest_type_quals_location): Use the latter.
(check_concept_fn): Use DECL_SOURCE_LOCATION.
(grokdeclarator): Use accurate locations in a number of error
messages involving ds_thread, ds_storage_class, ds_virtual,
ds_constexpr, ds_typedef and ds_friend; exploit min_location.
2018-07-03 Marek Polacek <polacek@redhat.com> 2018-07-03 Marek Polacek <polacek@redhat.com>
PR c++/86201 PR c++/86201
......
...@@ -8545,15 +8545,18 @@ check_concept_fn (tree fn) ...@@ -8545,15 +8545,18 @@ check_concept_fn (tree fn)
{ {
// A constraint is nullary. // A constraint is nullary.
if (DECL_ARGUMENTS (fn)) if (DECL_ARGUMENTS (fn))
error ("concept %q#D declared with function parameters", fn); error_at (DECL_SOURCE_LOCATION (fn),
"concept %q#D declared with function parameters", fn);
// The declared return type of the concept shall be bool, and // The declared return type of the concept shall be bool, and
// it shall not be deduced from it definition. // it shall not be deduced from it definition.
tree type = TREE_TYPE (TREE_TYPE (fn)); tree type = TREE_TYPE (TREE_TYPE (fn));
if (is_auto (type)) if (is_auto (type))
error ("concept %q#D declared with a deduced return type", fn); error_at (DECL_SOURCE_LOCATION (fn),
"concept %q#D declared with a deduced return type", fn);
else if (type != boolean_type_node) else if (type != boolean_type_node)
error ("concept %q#D with non-%<bool%> return type %qT", fn, type); error_at (DECL_SOURCE_LOCATION (fn),
"concept %q#D with non-%<bool%> return type %qT", fn, type);
} }
/* Helper function. Replace the temporary this parameter injected /* Helper function. Replace the temporary this parameter injected
...@@ -9795,6 +9798,18 @@ create_array_type_for_decl (tree name, tree type, tree size) ...@@ -9795,6 +9798,18 @@ create_array_type_for_decl (tree name, tree type, tree size)
return build_cplus_array_type (type, itype); return build_cplus_array_type (type, itype);
} }
/* Returns the smallest location that is not UNKNOWN_LOCATION. */
static location_t
min_location (location_t loca, location_t locb)
{
if (loca == UNKNOWN_LOCATION
|| (locb != UNKNOWN_LOCATION
&& linemap_location_before_p (line_table, locb, loca)))
return locb;
return loca;
}
/* Returns the smallest location != UNKNOWN_LOCATION among the /* Returns the smallest location != UNKNOWN_LOCATION among the
three stored in LOCATIONS[ds_const], LOCATIONS[ds_volatile], three stored in LOCATIONS[ds_const], LOCATIONS[ds_volatile],
and LOCATIONS[ds_restrict]. */ and LOCATIONS[ds_restrict]. */
...@@ -9807,13 +9822,11 @@ smallest_type_quals_location (int type_quals, const location_t* locations) ...@@ -9807,13 +9822,11 @@ smallest_type_quals_location (int type_quals, const location_t* locations)
if (type_quals & TYPE_QUAL_CONST) if (type_quals & TYPE_QUAL_CONST)
loc = locations[ds_const]; loc = locations[ds_const];
if ((type_quals & TYPE_QUAL_VOLATILE) if (type_quals & TYPE_QUAL_VOLATILE)
&& (loc == UNKNOWN_LOCATION || locations[ds_volatile] < loc)) loc = min_location (loc, locations[ds_volatile]);
loc = locations[ds_volatile];
if ((type_quals & TYPE_QUAL_RESTRICT) if (type_quals & TYPE_QUAL_RESTRICT)
&& (loc == UNKNOWN_LOCATION || locations[ds_restrict] < loc)) loc = min_location (loc, locations[ds_restrict]);
loc = locations[ds_restrict];
return loc; return loc;
} }
...@@ -10710,14 +10723,20 @@ grokdeclarator (const cp_declarator *declarator, ...@@ -10710,14 +10723,20 @@ grokdeclarator (const cp_declarator *declarator,
{ {
if (staticp == 2) if (staticp == 2)
{ {
error ("member %qD cannot be declared both %<virtual%> " rich_location richloc (line_table, declspecs->locations[ds_virtual]);
"and %<static%>", dname); richloc.add_range (declspecs->locations[ds_storage_class], false);
error_at (&richloc, "member %qD cannot be declared both %<virtual%> "
"and %<static%>", dname);
storage_class = sc_none; storage_class = sc_none;
staticp = 0; staticp = 0;
} }
if (constexpr_p) if (constexpr_p)
error ("member %qD cannot be declared both %<virtual%> " {
"and %<constexpr%>", dname); rich_location richloc (line_table, declspecs->locations[ds_virtual]);
richloc.add_range (declspecs->locations[ds_constexpr], false);
error_at (&richloc, "member %qD cannot be declared both %<virtual%> "
"and %<constexpr%>", dname);
}
} }
friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend); friendp = decl_spec_seq_has_spec_p (declspecs, ds_friend);
...@@ -10726,18 +10745,27 @@ grokdeclarator (const cp_declarator *declarator, ...@@ -10726,18 +10745,27 @@ grokdeclarator (const cp_declarator *declarator,
{ {
if (typedef_p) if (typedef_p)
{ {
error ("typedef declaration invalid in parameter declaration"); error_at (declspecs->locations[ds_typedef],
"typedef declaration invalid in parameter declaration");
return error_mark_node; return error_mark_node;
} }
else if (template_parm_flag && storage_class != sc_none) else if (template_parm_flag && storage_class != sc_none)
{ {
error ("storage class specified for template parameter %qs", name); error_at (min_location (declspecs->locations[ds_thread],
declspecs->locations[ds_storage_class]),
"storage class specified for template parameter %qs",
name);
return error_mark_node; return error_mark_node;
} }
else if (storage_class == sc_static else if (storage_class == sc_static
|| storage_class == sc_extern || storage_class == sc_extern
|| thread_p) || thread_p)
error ("storage class specifiers invalid in parameter declarations"); {
error_at (min_location (declspecs->locations[ds_thread],
declspecs->locations[ds_storage_class]),
"storage class specified for parameter %qs", name);
return error_mark_node;
}
/* Function parameters cannot be concept. */ /* Function parameters cannot be concept. */
if (concept_p) if (concept_p)
...@@ -10871,15 +10899,15 @@ grokdeclarator (const cp_declarator *declarator, ...@@ -10871,15 +10899,15 @@ grokdeclarator (const cp_declarator *declarator,
; ;
else else
{ {
location_t loc
= min_location (declspecs->locations[ds_thread],
declspecs->locations[ds_storage_class]);
if (decl_context == FIELD) if (decl_context == FIELD)
error ("storage class specified for %qs", name); error_at (loc, "storage class specified for %qs", name);
else if (decl_context == PARM || decl_context == CATCHPARM)
error_at (loc, "storage class specified for parameter %qs", name);
else else
{ error_at (loc, "storage class specified for typename");
if (decl_context == PARM || decl_context == CATCHPARM)
error ("storage class specified for parameter %qs", name);
else
error ("storage class specified for typename");
}
if (storage_class == sc_register if (storage_class == sc_register
|| storage_class == sc_auto || storage_class == sc_auto
|| storage_class == sc_extern || storage_class == sc_extern
...@@ -10900,7 +10928,8 @@ grokdeclarator (const cp_declarator *declarator, ...@@ -10900,7 +10928,8 @@ grokdeclarator (const cp_declarator *declarator,
&& storage_class != sc_static) && storage_class != sc_static)
{ {
if (declspecs->gnu_thread_keyword_p) if (declspecs->gnu_thread_keyword_p)
pedwarn (input_location, 0, "function-scope %qs implicitly auto and " pedwarn (declspecs->locations[ds_thread],
0, "function-scope %qs implicitly auto and "
"declared %<__thread%>", name); "declared %<__thread%>", name);
/* When thread_local is applied to a variable of block scope the /* When thread_local is applied to a variable of block scope the
...@@ -10912,7 +10941,10 @@ grokdeclarator (const cp_declarator *declarator, ...@@ -10912,7 +10941,10 @@ grokdeclarator (const cp_declarator *declarator,
if (storage_class && friendp) if (storage_class && friendp)
{ {
error ("storage class specifiers invalid in friend function declarations"); error_at (min_location (declspecs->locations[ds_thread],
declspecs->locations[ds_storage_class]),
"storage class specifiers invalid in friend function "
"declarations");
storage_class = sc_none; storage_class = sc_none;
staticp = 0; staticp = 0;
} }
...@@ -11238,7 +11270,8 @@ grokdeclarator (const cp_declarator *declarator, ...@@ -11238,7 +11270,8 @@ grokdeclarator (const cp_declarator *declarator,
if (virtualp) if (virtualp)
{ {
/* Cannot be both friend and virtual. */ /* Cannot be both friend and virtual. */
error ("virtual functions cannot be friends"); error_at (declspecs->locations[ds_friend],
"virtual functions cannot be friends");
friendp = 0; friendp = 0;
} }
if (decl_context == NORMAL) if (decl_context == NORMAL)
...@@ -12369,15 +12402,18 @@ grokdeclarator (const cp_declarator *declarator, ...@@ -12369,15 +12402,18 @@ grokdeclarator (const cp_declarator *declarator,
else if (thread_p) else if (thread_p)
{ {
if (declspecs->gnu_thread_keyword_p) if (declspecs->gnu_thread_keyword_p)
error ("storage class %<__thread%> invalid for function %qs", error_at (declspecs->locations[ds_thread],
name); "storage class %<__thread%> invalid for function %qs",
name);
else else
error ("storage class %<thread_local%> invalid for function %qs", error_at (declspecs->locations[ds_thread],
name); "storage class %<thread_local%> invalid for "
"function %qs", name);
} }
if (virt_specifiers) if (virt_specifiers)
error ("virt-specifiers in %qs not allowed outside a class definition", name); error ("virt-specifiers in %qs not allowed outside a class "
"definition", name);
/* Function declaration not at top level. /* Function declaration not at top level.
Storage classes other than `extern' are not allowed Storage classes other than `extern' are not allowed
and `extern' makes no difference. */ and `extern' makes no difference. */
......
2018-07-03 Paolo Carlini <paolo.carlini@oracle.com>
* g++.dg/other/locations1.C: New.
* g++.dg/tls/locations1.C: Likewise.
* g++.dg/diagnostic/virtual-constexpr.C: Likewise.
* g++.dg/diagnostic/virtual-static.C: Likewise.
* g++.dg/concepts/fn-concept2.C: Test the locations too.
* g++.dg/cpp0x/constexpr-virtual5.C: Likewise.
* g++.dg/cpp0x/pr51463.C: Likewise.
* g++.dg/other/typedef1.C: Likewise.
* g++.dg/parse/dtor13.C: Likewise.
* g++.dg/template/error44.C: Likewise.
* g++.dg/template/typedef4.C: Likewise.
* g++.dg/template/typedef5.C: Likewise.
* g++.dg/tls/diag-2.C: Likewise.
* g++.old-deja/g++.brendan/crash11.C: Likewise.
2018-07-03 Marek Polacek <polacek@redhat.com> 2018-07-03 Marek Polacek <polacek@redhat.com>
PR c++/86201 PR c++/86201
......
// { dg-options "-std=c++17 -fconcepts" } // { dg-options "-std=c++17 -fconcepts" }
template<typename T> template<typename T>
concept auto C1() { return 0; } // { dg-error "deduced return type" } concept auto C1() { return 0; } // { dg-error "16:concept .concept auto C1\\(\\). declared with a deduced return type" }
template<typename T> template<typename T>
concept int C2() { return 0; } // { dg-error "return type" } concept int C2() { return 0; } // { dg-error "15:concept .concept int C2\\(\\). with non-.bool. return type .int." }
template<typename T>
concept bool C3(int) { return 0; } // { dg-error "16:concept .concept bool C3\\(int\\). declared with function parameters" }
...@@ -2,5 +2,5 @@ ...@@ -2,5 +2,5 @@
// { dg-do compile { target c++11 } } // { dg-do compile { target c++11 } }
struct S { struct S {
constexpr virtual int f() { return 1; } // { dg-error "both 'virtual' and 'constexpr'" } constexpr virtual int f() { return 1; } // { dg-error "13:member .f. cannot be declared both .virtual. and .constexpr." }
}; };
...@@ -3,5 +3,6 @@ ...@@ -3,5 +3,6 @@
struct A struct A
{ {
static virtual int i = 0; // { dg-error "both 'virtual' and 'static'|declared as" } static virtual int i = 0; // { dg-error "10:member .i. cannot be declared both .virtual. and .static." }
// { dg-error "declared as" "" { target *-*-* } .-1 }
}; };
// { dg-options "-fdiagnostics-show-caret" }
// { dg-do compile { target c++11 } }
struct S
{
virtual constexpr void foo(); // { dg-error "3:member .foo. cannot be declared both .virtual. and .constexpr." }
/* { dg-begin-multiline-output "" }
virtual constexpr void foo();
^~~~~~~ ~~~~~~~~~
{ dg-end-multiline-output "" } */
constexpr virtual void bar(); // { dg-error "13:member .bar. cannot be declared both .virtual. and .constexpr." }
/* { dg-begin-multiline-output "" }
constexpr virtual void bar();
~~~~~~~~~ ^~~~~~~
{ dg-end-multiline-output "" } */
};
// { dg-options "-fdiagnostics-show-caret" }
struct S
{
virtual static void foo(); // { dg-error "3:member .foo. cannot be declared both .virtual. and .static." }
/* { dg-begin-multiline-output "" }
virtual static void foo();
^~~~~~~ ~~~~~~
{ dg-end-multiline-output "" } */
static virtual void bar(); // { dg-error "10:member .bar. cannot be declared both .virtual. and .static." }
/* { dg-begin-multiline-output "" }
static virtual void bar();
~~~~~~ ^~~~~~~
{ dg-end-multiline-output "" } */
};
void foo(static int p); // { dg-error "10:storage class specified" }
// PR c++/27572 // PR c++/27572
// { dg-do compile } // { dg-do compile }
void f1(typedef) {} // { dg-error "no type|typedef declaration" } void f1(typedef) {} // { dg-error "9:typedef declaration" }
void f2(typedef x) {} // { dg-error "type|typedef declaration" } // { dg-error "no type" "" { target *-*-* } .-1 }
void f3(typedef x[]) {} // { dg-error "type|typedef declaration" } void f2(typedef x) {} // { dg-error "9:typedef declaration" }
void f4(typedef int x) {} // { dg-error "typedef declaration" } // { dg-error "type" "" { target *-*-* } .-1 }
void f3(typedef x[]) {} // { dg-error "9:typedef declaration" }
// { dg-error "type" "" { target *-*-* } .-1 }
void f4(typedef int x) {} // { dg-error "9:typedef declaration" }
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
struct A struct A
{ {
static friend A::~A(); /* { dg-error "storage class specifiers|extra qualification|implicitly friend" } */ static friend A::~A(); /* { dg-error "3:storage class specifiers" } */
/* { dg-error "extra qualification|implicitly friend" "" { target *-*-* } .-1 } */
}; };
// PR c++/32056 // PR c++/32056
template <auto int T> struct A {}; // { dg-error "storage class specified|two or more" } template <auto int T> struct A {}; // { dg-error "11:storage class specified" "" { target c++98_only } }
template <extern int T> struct B {}; // { dg-error "storage class specified" } // { dg-error "two or more" "" { target c++11 } .-1 }
template <static int T> struct C {}; // { dg-error "storage class specified" } template <extern int T> struct B {}; // { dg-error "11:storage class specified" }
template <register int T> struct D {}; // { dg-error "storage class specified" } template <static int T> struct C {}; // { dg-error "11:storage class specified" }
template <mutable int T> struct E {}; // { dg-error "storage class specified" } template <register int T> struct D {}; // { dg-error "11:storage class specified" }
template <mutable int T> struct E {}; // { dg-error "11:storage class specified" }
// PR c++/27572 // PR c++/27572
// { dg-do compile } // { dg-do compile }
template<typedef> void foo(); // { dg-error "no type|typedef declaration|template" } template<typedef> void foo(); // { dg-error "10:typedef declaration" }
// { dg-error "no type|template" "" { target *-*-* } .-1 }
void bar() void bar()
{ {
......
// PR c++/27572 // PR c++/27572
// { dg-do compile } // { dg-do compile }
template<typedef,int> struct A1; // { dg-error "no type|typedef declaration|default argument" } template<typedef,int> struct A1; // { dg-error "10:typedef declaration" }
template<typedef x,int> struct A2; // { dg-error "type|typedef declaration|default argument" } // { dg-error "no type|default argument" "" { target *-*-* } .-1 }
template<typedef x[],int> struct A3; // { dg-error "no type|typedef declaration|expected" } template<typedef x,int> struct A2; // { dg-error "10:typedef declaration" }
template<typedef int x, int> struct A4; // { dg-error "typedef declaration|default argument" } // { dg-error "type|default argument" "" { target *-*-* } .-1 }
template<typedef x[],int> struct A3; // { dg-error "typedef declaration|no type|expected" }
template<typedef int x, int> struct A4; // { dg-error "10:typedef declaration" }
// { dg-error "default argument" "" { target *-*-* } .-1 }
...@@ -8,19 +8,19 @@ typedef __thread int g4; /* { dg-error "multiple storage classes" } */ ...@@ -8,19 +8,19 @@ typedef __thread int g4; /* { dg-error "multiple storage classes" } */
void foo() void foo()
{ {
__thread int l1; /* { dg-error "implicitly auto and declared '__thread'" } */ __thread int l1; /* { dg-error "3:function-scope .l1. implicitly auto and declared '__thread'" } */
auto __thread int l2; /* { dg-error "multiple storage classes|data types" } */ auto __thread int l2; /* { dg-error "multiple storage classes|data types" } */
__thread extern int l3; /* { dg-error "'__thread' before 'extern'" } */ __thread extern int l3; /* { dg-error "'__thread' before 'extern'" } */
register __thread int l4; /* { dg-error "multiple storage classes" } */ register __thread int l4; /* { dg-error "multiple storage classes" } */
} /* { dg-error "ISO C\\+\\+17 does not allow 'register' storage class specifier" "" { target c++17 } .-1 } */ } /* { dg-error "ISO C\\+\\+17 does not allow 'register' storage class specifier" "" { target c++17 } .-1 } */
__thread void f1 (); /* { dg-error "invalid for function" } */ __thread void f1 (); /* { dg-error "1:storage class .__thread. invalid for function" } */
extern __thread void f2 (); /* { dg-error "invalid for function" } */ extern __thread void f2 (); /* { dg-error "8:storage class .__thread. invalid for function" } */
static __thread void f3 (); /* { dg-error "invalid for function" } */ static __thread void f3 (); /* { dg-error "8:storage class .__thread. invalid for function" } */
__thread void f4 () { } /* { dg-error "invalid for function" } */ __thread void f4 () { } /* { dg-error "1:storage class .__thread. invalid for function" } */
void bar(__thread int p1); /* { dg-error "(invalid in parameter)|(specified for parameter)" } */ void bar(__thread int p1); /* { dg-error "10:storage class specified for parameter" } */
struct A { struct A {
__thread int i; /* { dg-error "storage class specified" } */ __thread int i; /* { dg-error "3:storage class specified" } */
}; };
/* { dg-require-effective-target tls } */
template <__thread int T> struct F {}; // { dg-error "11:storage class specified" }
template <static __thread int T> struct G {}; // { dg-error "11:storage class specified" }
...@@ -9,13 +9,14 @@ class A { ...@@ -9,13 +9,14 @@ class A {
int h; int h;
A() { i=10; j=20; } A() { i=10; j=20; }
virtual void f1() { printf("i=%d j=%d\n",i,j); } virtual void f1() { printf("i=%d j=%d\n",i,j); }
friend virtual void f2() { printf("i=%d j=%d\n",i,j); }// { dg-error "" } virtual.* friend virtual void f2() { printf("i=%d j=%d\n",i,j); } // { dg-error "2:virtual functions cannot be friends" }
}; };
class B : public A { class B : public A {
public: public:
virtual void f1() { printf("i=%d j=%d\n",i,j); }// { dg-error "" } member.*// ERROR - member.* virtual void f1() { printf("i=%d j=%d\n",i,j); }// { dg-error "" } member.*// ERROR - member.*
friend virtual void f2() { printf("i=%d j=%d\n",i,j); }// { dg-error "" } virtual.*// ERROR - member.*// ERROR - member.* friend virtual void f2() { printf("i=%d j=%d\n",i,j); } // { dg-error "2:virtual functions cannot be friends" }
// { dg-error "private" "" { target *-*-* } .-1 }
}; };
int int
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment