- Oct 14, 2010
-
-
Argyrios Kyrtzidis authored
Store in PCH the key function of C++ class to avoid deserializing the complete declaration context in order to compute it. Progress for rdar://7260160. llvm-svn: 116508
-
Argyrios Kyrtzidis authored
instead of deserializing the complete declaration context of the record. Iterating over the fields of a record is very common (e.g to determine the layout), unfortunately we needlessly deserialize every declaration that the declaration context of the record contains; this can be bad for large C++ classes that contain a lot of methods. Fix this by allow deserialization of just the fields when we want to iterate over them. Progress for rdar://7260160. llvm-svn: 116507
-
Argyrios Kyrtzidis authored
llvm-svn: 116506
-
Argyrios Kyrtzidis authored
and emits an error if a declaration with this name is deserialized from PCH. This is for testing, to make sure that we don't deserialize stuff needlessly. llvm-svn: 116505
-
Argyrios Kyrtzidis authored
Don't add the injected class name to the redeclarations chain; the chain should contain actual redeclarations, not implicits. As a bonus, now we don't deserialize it unless we need it. llvm-svn: 116504
-
Argyrios Kyrtzidis authored
Introduce command line option -dump-deserialized-decls which is used to print the PCH decls that got deserialized, for testing purposes. llvm-svn: 116503
-
David Chisnall authored
llvm-svn: 116493
-
Fariborz Jahanian authored
'super' as receiver of property or a setter/getter methods. //rdar: //8525788 llvm-svn: 116483
-
Anton Yartsev authored
llvm-svn: 116478
-
Zhongxing Xu authored
llvm-svn: 116473
-
John McCall authored
ObjCObjectType into Type. llvm-svn: 116472
-
John McCall authored
llvm-svn: 116470
-
John McCall authored
not a decl. llvm-svn: 116469
-
John McCall authored
llvm-svn: 116468
-
Chris Lattner authored
by Martin Vejnar! llvm-svn: 116460
-
Chris Lattner authored
into APInt. llvm-svn: 116453
-
Douglas Gregor authored
in a base class. Fixes PR8168. llvm-svn: 116448
-
Douglas Gregor authored
members. Provide a hard error when the qualification doesn't match the current class type, or a warning + Fix-it if it does match the current class type. Fixes PR8159. llvm-svn: 116445
-
- Oct 13, 2010
-
-
David Chisnall authored
Don't claim that things that are Objective-C keywords if preceded by an @ are keywords unless they are preceded by an @. For example, don't claim that end is a keyword in: unsigned end; llvm-svn: 116439
-
Douglas Gregor authored
llvm-svn: 116436
-
Douglas Gregor authored
that the class type into which the pointer points be complete, even though the standard requires it. GCC/EDG do not require a complete type here, so we're calling this a problem with the standard. Fixes PR8328. llvm-svn: 116429
-
Douglas Gregor authored
llvm-svn: 116423
-
Douglas Gregor authored
llvm-svn: 116422
-
Douglas Gregor authored
control of -Wconversion, and ignore them by default. llvm-svn: 116415
-
Douglas Gregor authored
unnamed or local types within that type. This bit is cached along with the linkage of a type, so that it can be recomputed (e.g., when we see that a typedef has given a name to an anonymous declaration). Use this bit when checking C++03 [temp.arg.type]p2, so that we don't walk template argument types repeatedly. llvm-svn: 116413
-
Douglas Gregor authored
SFINAE context, where we weren't getting the right diagnostic argument count. I blame DiagnosticBuilder's weirdness. Fixes PR8372. llvm-svn: 116411
-
Douglas Gregor authored
rather than walking the type's structure every time we request this information. Performance optimization; no functionality change. llvm-svn: 116409
-
Fariborz Jahanian authored
llvm-svn: 116408
-
Rafael Espindola authored
llvm-mc. llvm-svn: 116405
-
John McCall authored
declaration, because we'll need it later. Hopefully fixed self-host. llvm-svn: 116399
-
John McCall authored
Fixes a crash and diagnoses the error condition of an unqualified friend which doesn't resolve to something. I'm still not certain how this is useful. llvm-svn: 116393
-
Argyrios Kyrtzidis authored
Embrace C++ ABI 5.2.6 and consider that template instantiations don't have key functions (same as GCC). llvm-svn: 116391
-
Douglas Gregor authored
actually walk the template argument type to find any unnamed/local types within it. Fixes PR6784. llvm-svn: 116382
-
Douglas Gregor authored
that are suppressed during template argument deduction. This change queues diagnostics computed during template argument deduction. Then, if the resulting function template specialization or partial specialization is chosen by overload resolution or partial ordering (respectively), we will emit the queued diagnostics at that point. This addresses most of PR6784. However, the check for unnamed/local template arguments (which existed before this change) is still only skin-deep, and needs to be extended to look deeper into types. It must be improved to finish PR6784. llvm-svn: 116373
-
Devang Patel authored
This is tested by anon-union.exp. llvm-svn: 116372
-
Devang Patel authored
This is tested by anon-union.exp in gdb testsuite. llvm-svn: 116371
-
John McCall authored
of templated-scope friends by marking them invalid and white-listing all accesses until such time as we implement them. Fixes a crash, this time without a broken test case. llvm-svn: 116364
-
- Oct 12, 2010
-
-
Eli Friedman authored
llvm-svn: 116336
-
John McCall authored
deduction and the final substitution, but not while substituting the explicit template arguments. Fixes rdar://problem/8537391 llvm-svn: 116332
-
Douglas Gregor authored
argument deduction, make sure to check the correctness of deduced template type arguments (which we had previously skipped) along with other kinds of template arguments. This fixes part of PR6784, but we're still swallowing the extension warning about unnamed/local template arguments. llvm-svn: 116327
-