Skip to content

Commit ec38cf7

Browse files
author
George Karpenkov
committedMar 29, 2018
[ast] Do not auto-initialize Objective-C for-loop variables in Objective-C++ in templatized code under ARC
The AST for the fragment ``` @interface I @EnD template <typename> void decode(I *p) { for (I *k in p) {} } void decode(I *p) { decode<int>(p); } ``` differs heavily when templatized and non-templatized: ``` |-FunctionTemplateDecl 0x7fbfe0863940 <line:4:1, line:7:1> line:5:6 decode | |-TemplateTypeParmDecl 0x7fbfe0863690 <line:4:11> col:11 typename depth 0 index 0 | |-FunctionDecl 0x7fbfe08638a0 <line:5:1, line:7:1> line:5:6 decode 'void (I *__strong)' | | |-ParmVarDecl 0x7fbfe08637a0 <col:13, col:16> col:16 referenced p 'I *__strong' | | `-CompoundStmt 0x7fbfe0863b88 <col:19, line:7:1> | |   `-ObjCForCollectionStmt 0x7fbfe0863b50 <line:6:3, col:20> | |     |-DeclStmt 0x7fbfe0863a50 <col:8, col:13> | |     | `-VarDecl 0x7fbfe08639f0 <col:8, col:11> col:11 k 'I *const __strong' | |     |-ImplicitCastExpr 0x7fbfe0863a90 <col:16> 'I *' <LValueToRValue> | |     | `-DeclRefExpr 0x7fbfe0863a68 <col:16> 'I *__strong' lvalue ParmVar 0x7fbfe08637a0 'p' 'I *__strong' | |     `-CompoundStmt 0x7fbfe0863b78 <col:19, col:20> | `-FunctionDecl 0x7fbfe0863f80 <line:5:1, line:7:1> line:5:6 used decode 'void (I *__strong)' |   |-TemplateArgument type 'int' |   |-ParmVarDecl 0x7fbfe0863ef8 <col:13, col:16> col:16 used p 'I *__strong' |   `-CompoundStmt 0x7fbfe0890cf0 <col:19, line:7:1> |     `-ObjCForCollectionStmt 0x7fbfe0890cc8 <line:6:3, col:20> |       |-DeclStmt 0x7fbfe0890c70 <col:8, col:13> |       | `-VarDecl 0x7fbfe0890c00 <col:8, col:11> col:11 k 'I *__strong' callinit |       |   `-ImplicitValueInitExpr 0x7fbfe0890c60 <<invalid sloc>> 'I *__strong' |       |-ImplicitCastExpr 0x7fbfe0890cb0 <col:16> 'I *' <LValueToRValue> |       | `-DeclRefExpr 0x7fbfe0890c88 <col:16> 'I *__strong' lvalue ParmVar 0x7fbfe0863ef8 'p' 'I *__strong' |       `-CompoundStmt 0x7fbfe0863b78 <col:19, col:20> ``` Note how in the instantiated version ImplicitValueInitExpr unexpectedly appears. While objects are auto-initialized under ARC, it does not make sense to have an initializer for a for-loop variable, and it makes even less sense to have such a different AST for instantiated and non-instantiated version. Digging deeper, I have found that there are two separate Sema* files for dealing with templates and for dealing with non-templatized code. In a non-templatized version, an initialization was performed only for variables which are not loop variables for an Objective-C loop and not variables for a C++ for-in loop: ```   if (FRI && (Tok.is(tok::colon) || isTokIdentifier_in())) {     bool IsForRangeLoop = false;     if (TryConsumeToken(tok::colon, FRI->ColonLoc)) {       IsForRangeLoop = true;       if (Tok.is(tok::l_brace))         FRI->RangeExpr = ParseBraceInitializer();       else         FRI->RangeExpr = ParseExpression();     }     Decl *ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);     if (IsForRangeLoop)       Actions.ActOnCXXForRangeDecl(ThisDecl);     Actions.FinalizeDeclaration(ThisDecl);     D.complete(ThisDecl);     return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, ThisDecl);   }   SmallVector<Decl *, 8> DeclsInGroup;   Decl *FirstDecl = ParseDeclarationAfterDeclaratorAndAttributes(       D, ParsedTemplateInfo(), FRI); ``` However the code in SemaTemplateInstantiateDecl was inconsistent, guarding only against C++ for-in loops. rdar://38391075 Differential Revision: https://reviews.llvm.org/D44989 llvm-svn: 328749
1 parent 3588fd4 commit ec38cf7

File tree

6 files changed

+39
-2
lines changed

6 files changed

+39
-2
lines changed
 

‎clang/include/clang/AST/Decl.h

+13
Original file line numberDiff line numberDiff line change
@@ -937,6 +937,9 @@ class VarDecl : public DeclaratorDecl, public Redeclarable<VarDecl> {
937937
/// for-range statement.
938938
unsigned CXXForRangeDecl : 1;
939939

940+
/// Whether this variable is the for-in loop declaration in Objective-C.
941+
unsigned ObjCForDecl : 1;
942+
940943
/// Whether this variable is an ARC pseudo-__strong
941944
/// variable; see isARCPseudoStrong() for details.
942945
unsigned ARCPseudoStrong : 1;
@@ -1334,6 +1337,16 @@ class VarDecl : public DeclaratorDecl, public Redeclarable<VarDecl> {
13341337
NonParmVarDeclBits.CXXForRangeDecl = FRD;
13351338
}
13361339

1340+
/// \brief Determine whether this variable is a for-loop declaration for a
1341+
/// for-in statement in Objective-C.
1342+
bool isObjCForDecl() const {
1343+
return NonParmVarDeclBits.ObjCForDecl;
1344+
}
1345+
1346+
void setObjCForDecl(bool FRD) {
1347+
NonParmVarDeclBits.ObjCForDecl = FRD;
1348+
}
1349+
13371350
/// \brief Determine whether this variable is an ARC pseudo-__strong
13381351
/// variable. A pseudo-__strong variable has a __strong-qualified
13391352
/// type but does not actually retain the object written into it.

‎clang/lib/Parse/ParseDecl.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -2027,8 +2027,13 @@ Parser::DeclGroupPtrTy Parser::ParseDeclGroup(ParsingDeclSpec &DS,
20272027
}
20282028

20292029
Decl *ThisDecl = Actions.ActOnDeclarator(getCurScope(), D);
2030-
if (IsForRangeLoop)
2030+
if (IsForRangeLoop) {
20312031
Actions.ActOnCXXForRangeDecl(ThisDecl);
2032+
} else {
2033+
// Obj-C for loop
2034+
if (auto *VD = dyn_cast_or_null<VarDecl>(ThisDecl))
2035+
VD->setObjCForDecl(true);
2036+
}
20322037
Actions.FinalizeDeclaration(ThisDecl);
20332038
D.complete(ThisDecl);
20342039
return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, ThisDecl);

‎clang/lib/Sema/SemaTemplateInstantiateDecl.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -4083,6 +4083,7 @@ void Sema::BuildVariableInstantiation(
40834083
NewVar->setTSCSpec(OldVar->getTSCSpec());
40844084
NewVar->setInitStyle(OldVar->getInitStyle());
40854085
NewVar->setCXXForRangeDecl(OldVar->isCXXForRangeDecl());
4086+
NewVar->setObjCForDecl(OldVar->isObjCForDecl());
40864087
NewVar->setConstexpr(OldVar->isConstexpr());
40874088
NewVar->setInitCapture(OldVar->isInitCapture());
40884089
NewVar->setPreviousDeclInSameBlockScope(
@@ -4215,7 +4216,7 @@ void Sema::InstantiateVariableInitializer(
42154216
}
42164217

42174218
// We'll add an initializer to a for-range declaration later.
4218-
if (Var->isCXXForRangeDecl())
4219+
if (Var->isCXXForRangeDecl() || Var->isObjCForDecl())
42194220
return;
42204221

42214222
ActOnUninitializedDecl(Var);

‎clang/lib/Serialization/ASTReaderDecl.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1279,6 +1279,7 @@ ASTDeclReader::RedeclarableResult ASTDeclReader::VisitVarDeclImpl(VarDecl *VD) {
12791279
VD->NonParmVarDeclBits.ExceptionVar = Record.readInt();
12801280
VD->NonParmVarDeclBits.NRVOVariable = Record.readInt();
12811281
VD->NonParmVarDeclBits.CXXForRangeDecl = Record.readInt();
1282+
VD->NonParmVarDeclBits.ObjCForDecl = Record.readInt();
12821283
VD->NonParmVarDeclBits.ARCPseudoStrong = Record.readInt();
12831284
VD->NonParmVarDeclBits.IsInline = Record.readInt();
12841285
VD->NonParmVarDeclBits.IsInlineSpecified = Record.readInt();

‎clang/lib/Serialization/ASTWriterDecl.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -920,6 +920,7 @@ void ASTDeclWriter::VisitVarDecl(VarDecl *D) {
920920
Record.push_back(D->isExceptionVariable());
921921
Record.push_back(D->isNRVOVariable());
922922
Record.push_back(D->isCXXForRangeDecl());
923+
Record.push_back(D->isObjCForDecl());
923924
Record.push_back(D->isARCPseudoStrong());
924925
Record.push_back(D->isInline());
925926
Record.push_back(D->isInlineSpecified());
@@ -2031,6 +2032,7 @@ void ASTWriter::WriteDeclAbbrevs() {
20312032
Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isExceptionVariable
20322033
Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isNRVOVariable
20332034
Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isCXXForRangeDecl
2035+
Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isObjCForDecl
20342036
Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isARCPseudoStrong
20352037
Abv->Add(BitCodeAbbrevOp(0)); // isInline
20362038
Abv->Add(BitCodeAbbrevOp(0)); // isInlineSpecified
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// RUN: %clang_cc1 -fsyntax-only -fobjc-arc -Wno-objc-root-class -std=c++11 -ast-dump %s | FileCheck %s
2+
3+
// CHECK-NOT: ImplicitValueInitExpr
4+
5+
@interface I
6+
@end
7+
8+
template <typename T>
9+
void decode(I *p) {
10+
for (I *k in p) {}
11+
}
12+
13+
void decode(I *p) {
14+
decode<int>(p);
15+
}

0 commit comments

Comments
 (0)
Please sign in to comment.