Fix <rdar://problem/6500554> missing objc error message.

llvm-svn: 65198
This commit is contained in:
Steve Naroff 2009-02-20 22:59:16 +00:00
parent e739d19156
commit 326064168a
6 changed files with 44 additions and 21 deletions

View File

@ -103,7 +103,9 @@ DIAG(err_builtin_definition, ERROR,
DIAG(ext_typedef_without_a_name, EXTWARN, DIAG(ext_typedef_without_a_name, EXTWARN,
"typedef requires a name") "typedef requires a name")
DIAG(err_statically_allocated_object, ERROR, DIAG(err_statically_allocated_object, ERROR,
"statically allocated Objective-C object %0") "Objective-C type cannot be statically allocated")
DIAG(err_object_cannot_be_by_value, ERROR,
"Objective-C type cannot be %0 by value")
DIAG(warn_enum_value_overflow, WARNING, DIAG(warn_enum_value_overflow, WARNING,
"overflow in enumeration value") "overflow in enumeration value")
DIAG(warn_pragma_pack_invalid_alignment, WARNING, DIAG(warn_pragma_pack_invalid_alignment, WARNING,
@ -174,8 +176,6 @@ DIAG(err_duplicate_method_decl, ERROR,
"duplicate declaration of method %0") "duplicate declaration of method %0")
DIAG(error_missing_method_context, ERROR, DIAG(error_missing_method_context, ERROR,
"missing context for method declaration") "missing context for method declaration")
DIAG(err_object_as_method_param, ERROR,
"can not use an object as parameter to a method")
DIAG(err_objc_property_attr_mutually_exclusive, ERROR, DIAG(err_objc_property_attr_mutually_exclusive, ERROR,
"property attributes '%0' and '%1' are mutually exclusive") "property attributes '%0' and '%1' are mutually exclusive")
DIAG(err_objc_property_requires_object, ERROR, DIAG(err_objc_property_requires_object, ERROR,

View File

@ -1470,8 +1470,7 @@ Sema::ActOnVariableDeclarator(Scope* S, Declarator& D, DeclContext* DC,
CheckExtraCXXDefaultArguments(D); CheckExtraCXXDefaultArguments(D);
if (R.getTypePtr()->isObjCInterfaceType()) { if (R.getTypePtr()->isObjCInterfaceType()) {
Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object) Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object);
<< D.getIdentifier();
InvalidDecl = true; InvalidDecl = true;
} }
@ -2761,6 +2760,13 @@ Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
<< D.getCXXScopeSpec().getRange(); << D.getCXXScopeSpec().getRange();
New->setInvalidDecl(); New->setInvalidDecl();
} }
// Parameter declarators cannot be interface types. All ObjC objects are
// passed by reference.
if (parmDeclType->isObjCInterfaceType()) {
Diag(D.getIdentifierLoc(), diag::err_object_cannot_be_by_value)
<< "passed";
New->setInvalidDecl();
}
// Add the parameter declaration into this scope. // Add the parameter declaration into this scope.
S->AddDecl(New); S->AddDecl(New);
@ -3671,8 +3677,7 @@ void Sema::ActOnFields(Scope* S,
} }
/// A field cannot be an Objective-c object /// A field cannot be an Objective-c object
if (FDTy->isObjCInterfaceType()) { if (FDTy->isObjCInterfaceType()) {
Diag(FD->getLocation(), diag::err_statically_allocated_object) Diag(FD->getLocation(), diag::err_statically_allocated_object);
<< FD->getDeclName();
FD->setInvalidDecl(); FD->setInvalidDecl();
EnclosingDecl->setInvalidDecl(); EnclosingDecl->setInvalidDecl();
continue; continue;

View File

@ -1344,9 +1344,17 @@ Sema::DeclTy *Sema::ActOnMethodDeclaration(
} }
QualType resultDeclType; QualType resultDeclType;
if (ReturnType) if (ReturnType) {
resultDeclType = QualType::getFromOpaquePtr(ReturnType); resultDeclType = QualType::getFromOpaquePtr(ReturnType);
else // get the type for "id".
// Methods cannot return interface types. All ObjC objects are
// passed by reference.
if (resultDeclType->isObjCInterfaceType()) {
Diag(MethodLoc, diag::err_object_cannot_be_by_value)
<< "returned";
return 0;
}
} else // get the type for "id".
resultDeclType = Context.getObjCIdType(); resultDeclType = Context.getObjCIdType();
ObjCMethodDecl* ObjCMethod = ObjCMethodDecl* ObjCMethod =
@ -1375,7 +1383,9 @@ Sema::DeclTy *Sema::ActOnMethodDeclaration(
argType = Context.getPointerType(argType); argType = Context.getPointerType(argType);
else if (argType->isObjCInterfaceType()) { else if (argType->isObjCInterfaceType()) {
// FIXME! provide more precise location for the parameter // FIXME! provide more precise location for the parameter
Diag(MethodLoc, diag::err_object_as_method_param); Diag(MethodLoc, diag::err_object_cannot_be_by_value)
<< "passed";
ObjCMethod->setInvalidDecl();
return 0; return 0;
} }
} else } else

View File

@ -14,8 +14,8 @@ void test1() {
id objects[] = {[NSNumber METH]}; id objects[] = {[NSNumber METH]};
} }
void test2(NSNumber x) { void test2(NSNumber x) { // expected-error {{Objective-C type cannot be passed by value}}
id objects[] = {[x METH]}; // expected-error {{bad receiver type}} id objects[] = {[x METH]};
} }
void test3(NSNumber *x) { void test3(NSNumber *x) {

View File

@ -1,29 +1,33 @@
// RUN: clang -fsyntax-only -verify %s // RUN: clang -fsyntax-only -verify %s
@interface Super @end @interface Super @end
Super s1; // expected-error{{statically allocated Objective-C object 's1'}} Super s1; // expected-error{{Objective-C type cannot be statically allocated}}
extern Super e1; // expected-error{{statically allocated Objective-C object 'e1'}} extern Super e1; // expected-error{{Objective-C type cannot be statically allocated}}
struct S { struct S {
Super s1; // expected-error{{statically allocated Objective-C object 's1'}} Super s1; // expected-error{{Objective-C type cannot be statically allocated}}
}; };
@protocol P1 @end @protocol P1 @end
@interface INTF @interface INTF
{ {
Super ivar1; // expected-error{{statically allocated Objective-C object 'ivar1'}} Super ivar1; // expected-error{{Objective-C type cannot be statically allocated}}
} }
@end @end
struct whatever {
Super objField; // expected-error{{Objective-C type cannot be statically allocated}}
};
@interface MyIntf @interface MyIntf
{ {
Super<P1> ivar1; // expected-error{{statically allocated Objective-C object 'ivar1'}} Super<P1> ivar1; // expected-error{{Objective-C type cannot be statically allocated}}
} }
@end @end
Super foo(Super parm1) { Super foo(Super parm1) { // expected-error{{Objective-C type cannot be passed by value}}
Super p1; // expected-error{{statically allocated Objective-C object 'p1'}} Super p1; // expected-error{{Objective-C type cannot be statically allocated}}
return p1; return p1;
} }

View File

@ -7,11 +7,15 @@
@end @end
@interface bar @interface bar
-(void) my_method:(foo) my_param; // expected-error {{can not use an object as parameter to a method}} -(void) my_method:(foo) my_param; // expected-error {{Objective-C type cannot be passed by value}}
- (foo)cccccc:(long)ddddd; // expected-error {{Objective-C type cannot be returned by value}}
@end @end
@implementation bar @implementation bar
-(void) my_method:(foo) my_param // expected-error {{can not use an object as parameter to a method}} -(void) my_method:(foo) my_param // expected-error {{Objective-C type cannot be passed by value}}
{
}
- (foo)cccccc:(long)ddddd // expected-error {{Objective-C type cannot be returned by value}}
{ {
} }
@end @end