return getTagDeclType(CFConstantStringTypeDecl);
}
+
+void ASTContext::setBuiltinVaListType(QualType T)
+{
+ assert(BuiltinVaListType.isNull() && "__builtin_va_list type already set!");
+
+ BuiltinVaListType = T;
+}
+
case 'F':
Type = Context.getCFConstantStringType();
break;
+ case 'V':
+ Type = Context.getBuiltinVaListType();
+ break;
}
Done = false;
Scope *S) {
Builtin::ID BID = (Builtin::ID)bid;
- QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context);
+ if (BID == Builtin::BI__builtin_va_start &&
+ Context.getBuiltinVaListType().isNull()) {
+ IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list");
+ ScopedDecl *VaDecl = LookupScopedDecl(VaIdent, Decl::IDNS_Ordinary,
+ SourceLocation(), TUScope);
+ TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl);
+ Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef));
+ }
+
+ QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context);
FunctionDecl *New = new FunctionDecl(SourceLocation(), II, R,
FunctionDecl::Extern, false, 0);
llvm::FoldingSet<ObjcQualifiedInterfaceType> ObjcQualifiedInterfaceTypes;
llvm::DenseMap<const RecordDecl*, const RecordLayout*> RecordLayoutInfo;
RecordDecl *CFConstantStringTypeDecl;
+
+ /// BuiltinVaListType - built-in va list type.
+ /// This is initially null and set by Sema::LazilyCreateBuiltin when
+ /// a builtin that takes a valist is encountered.
+ QualType BuiltinVaListType;
public:
SourceManager &SourceMgr;
// getCFConstantStringType - Return the type used for constant CFStrings.
QualType getCFConstantStringType();
+ void setBuiltinVaListType(QualType T);
+ QualType getBuiltinVaListType() const { return BuiltinVaListType; }
+
//===--------------------------------------------------------------------===//
// Type Sizing and Analysis
//===--------------------------------------------------------------------===//
// f -> float
// d -> double
// F -> constant CFString
+// V -> __builtin_va_list
// . -> "...". This may only occur at the end of the function list.
//
// Types maybe prefixed with the following modifiers:
BUILTIN(__builtin_constant_p, "UsUs", "nc")
BUILTIN(__builtin_classify_type, "i.", "nc")
BUILTIN(__builtin___CFStringMakeConstantString, "FC*cC*", "nc")
+BUILTIN(__builtin_va_start, "vV.", "nc")
#undef BUILTIN