/*Packed=*/false);
}
+static uint64_t getFieldOffset(const FieldDecl *FD, CodeGenModule &CGM) {
+ const CGRecordLayout &RL = CGM.getTypes().getCGRecordLayout(FD->getParent());
+ const llvm::StructType *ClassLTy = RL.getLLVMType();
+
+ unsigned FieldNo = RL.getLLVMFieldNo(FD);
+ return
+ CGM.getTargetData().getStructLayout(ClassLTy)->getElementOffset(FieldNo);
+}
+
llvm::Constant *ItaniumCXXABI::EmitMemberPointer(const FieldDecl *FD) {
// Itanium C++ ABI 2.3:
// A pointer to data member is an offset from the base address of
// the class object containing it, represented as a ptrdiff_t
- const CGRecordLayout &RL = CGM.getTypes().getCGRecordLayout(FD->getParent());
- const llvm::StructType *ClassLTy = RL.getLLVMType();
+ const RecordDecl *parent = FD->getParent();
+ if (!parent->isAnonymousStructOrUnion())
+ return llvm::ConstantInt::get(getPtrDiffTy(), getFieldOffset(FD, CGM));
- unsigned FieldNo = RL.getLLVMFieldNo(FD);
- uint64_t Offset =
- CGM.getTargetData().getStructLayout(ClassLTy)->getElementOffset(FieldNo);
+ // Handle a field injected from an anonymous struct or union.
+
+ assert(FD->getDeclName() && "Requested pointer to member with no name!");
+
+ // Find the record which the field was injected into.
+ while (parent->isAnonymousStructOrUnion())
+ parent = cast<RecordDecl>(parent->getParent());
+
+ RecordDecl::lookup_const_result lookup = parent->lookup(FD->getDeclName());
+ assert(lookup.first != lookup.second && "Didn't find the field!");
+ const IndirectFieldDecl *indirectFD = cast<IndirectFieldDecl>(*lookup.first);
+
+ uint64_t Offset = 0;
+ for (IndirectFieldDecl::chain_iterator
+ I= indirectFD->chain_begin(), E= indirectFD->chain_end(); I!=E; ++I) {
+ Offset += getFieldOffset(cast<FieldDecl>(*I), CGM);
+ }
return llvm::ConstantInt::get(getPtrDiffTy(), Offset);
}
ExprResult
Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc,
+ const CXXScopeSpec &SS,
IndirectFieldDecl *IndirectField,
Expr *BaseObjectExpr,
SourceLocation OpLoc) {
BaseQuals = Qualifiers::fromCVRMask(MD->getTypeQualifiers());
}
- if (!BaseObjectExpr)
- return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use)
- << IndirectField->getDeclName());
+ if (!BaseObjectExpr) {
+ // The field is referenced for a pointer-to-member expression, e.g:
+ //
+ // struct S {
+ // union {
+ // char c;
+ // };
+ // };
+ // char S::*foo = &S::c;
+ //
+ FieldDecl *field = IndirectField->getAnonField();
+ DeclarationNameInfo NameInfo(field->getDeclName(), Loc);
+ return BuildDeclRefExpr(field, field->getType().getNonReferenceType(),
+ VK_LValue, NameInfo, &SS);
+ }
}
// Build the implicit member references to the field of the
for (; FI != FEnd; FI++) {
FieldDecl *Field = cast<FieldDecl>(*FI);
- // FIXME: the first access can be qualified
- CXXScopeSpec SS;
-
// FIXME: these are somewhat meaningless
DeclarationNameInfo MemberNameInfo(Field->getDeclName(), Loc);
DeclAccessPair FoundDecl = DeclAccessPair::make(Field, Field->getAccess());
// FIXME: This needs to happen post-isImplicitMemberReference?
// FIXME: template-ids inside anonymous structs?
if (IndirectFieldDecl *FD = R.getAsSingle<IndirectFieldDecl>())
- return BuildAnonymousStructUnionMemberReference(Loc, FD);
+ return BuildAnonymousStructUnionMemberReference(Loc, SS, FD);
// If this is known to be an instance access, go ahead and build a
// Handle anonymous.
if (IndirectFieldDecl *FD = dyn_cast<IndirectFieldDecl>(VD))
- return BuildAnonymousStructUnionMemberReference(Loc, FD);
+ return BuildAnonymousStructUnionMemberReference(Loc, SS, FD);
ExprValueKind VK = getValueKindForDecl(Context, VD);
if (IndirectFieldDecl *FD = dyn_cast<IndirectFieldDecl>(MemberDecl))
// We may have found a field within an anonymous union or struct
// (C++ [class.union]).
- return BuildAnonymousStructUnionMemberReference(MemberLoc, FD,
+ return BuildAnonymousStructUnionMemberReference(MemberLoc, SS, FD,
BaseExpr, OpLoc);
if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) {
return QualType();
}
+ while (cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion())
+ Ctx = Ctx->getParent();
return S.Context.getMemberPointerType(op->getType(),
S.Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr());
}