]> granicus.if.org Git - clang/log
clang
14 years agoRemove a FIXME that is unlikely to be fixed (streaming code generation).
Daniel Dunbar [Thu, 29 Apr 2010 16:29:09 +0000 (16:29 +0000)]
Remove a FIXME that is unlikely to be fixed (streaming code generation).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102623 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoFrontend: Tie backend verification passes to CodeGenOptions::VerifyModule,
Daniel Dunbar [Thu, 29 Apr 2010 16:29:06 +0000 (16:29 +0000)]
Frontend: Tie backend verification passes to CodeGenOptions::VerifyModule,
instead of NDEBUG.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102622 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoBump Clang version number.
Ted Kremenek [Thu, 29 Apr 2010 15:30:51 +0000 (15:30 +0000)]
Bump Clang version number.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102614 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoWhen performing partial ordering of class template partial
Douglas Gregor [Thu, 29 Apr 2010 06:31:36 +0000 (06:31 +0000)]
When performing partial ordering of class template partial
specializations, substitute the deduced template arguments and check
the resulting substitution before concluding that template argument
deduction succeeds. This marvelous little fix makes a bunch of
Boost.Spirit tests start working.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102601 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoFor template argument deduction from class template partial
Douglas Gregor [Thu, 29 Apr 2010 06:21:43 +0000 (06:21 +0000)]
For template argument deduction from class template partial
specializations, separate out the deduction part from the checking and
substitution of the deduced arguments.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102600 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoA not equal for an unordered relation should return true as specified in IEEE-754...
Mon P Wang [Thu, 29 Apr 2010 05:53:29 +0000 (05:53 +0000)]
A not equal for an unordered relation should return true as specified in IEEE-754, e.g.,
NAN != NAN ? 1 : 0 should return 1.  Also fix the case for complex.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102598 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoIt turns out that we *can* end up having to display template argument
Douglas Gregor [Thu, 29 Apr 2010 04:55:13 +0000 (04:55 +0000)]
It turns out that we *can* end up having to display template argument
bindings when the template argument is still an expression; it happens
while checking the template arguments of a class template partial
specializations. Fixes PR6964.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102595 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoAdd '__has_feature' support for weak ObjC classes.
Ted Kremenek [Thu, 29 Apr 2010 02:06:46 +0000 (02:06 +0000)]
Add '__has_feature' support for weak ObjC classes.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102588 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoSort '__has_feature' cases. No functionality change.
Ted Kremenek [Thu, 29 Apr 2010 02:06:42 +0000 (02:06 +0000)]
Sort '__has_feature' cases.  No functionality change.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102587 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoTest case for r102578.
John McCall [Thu, 29 Apr 2010 01:20:45 +0000 (01:20 +0000)]
Test case for r102578.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102580 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoAccess-check during template argument deduction from the context of the
John McCall [Thu, 29 Apr 2010 01:18:58 +0000 (01:18 +0000)]
Access-check during template argument deduction from the context of the
template decl itself, not its context.  Testcase to follow;  fixes selfhost.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102578 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoFix CFG crasher involving statement expressions reported in PR 6938.
Ted Kremenek [Thu, 29 Apr 2010 01:10:26 +0000 (01:10 +0000)]
Fix CFG crasher involving statement expressions reported in PR 6938.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102576 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoProperly switch into the declaring scope of a template when performing
John McCall [Thu, 29 Apr 2010 00:35:03 +0000 (00:35 +0000)]
Properly switch into the declaring scope of a template when performing
template argument deduction or (more importantly) the final substitution
required by such deduction.  Makes access control magically work in these
cases.

Fixes PR6967.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102572 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoTeach __builtin_offsetof to compute the offsets of members of base
Douglas Gregor [Thu, 29 Apr 2010 00:18:15 +0000 (00:18 +0000)]
Teach __builtin_offsetof to compute the offsets of members of base
classes, since we only warn (not error) on offsetof() for non-POD
types. We store the base path within the OffsetOfExpr itself, then
evaluate the offsets within the constant evaluator.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102571 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agobuild: Add CLANG_NO_RUNTIME build variable, which disables building clang
Daniel Dunbar [Wed, 28 Apr 2010 23:36:26 +0000 (23:36 +0000)]
build: Add CLANG_NO_RUNTIME build variable, which disables building clang
runtime library stuff, even if compiler-rt is available.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102560 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoDriver: Add support for -fobjc-abi-version=.
Daniel Dunbar [Wed, 28 Apr 2010 23:25:24 +0000 (23:25 +0000)]
Driver: Add support for -fobjc-abi-version=.
 - <rdar://problem/7919678>

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102559 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoEnsure that cv-qualifiers are correctly removed for post-inc/decrements
Sean Hunt [Wed, 28 Apr 2010 23:02:27 +0000 (23:02 +0000)]
Ensure that cv-qualifiers are correctly removed for post-inc/decrements
as well as pre- and post-inc/decrements in C (not that I think it
matters for any C code).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102552 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoFix template instantiation for __builtin_offfsetof expressions that refer to members...
Douglas Gregor [Wed, 28 Apr 2010 22:43:14 +0000 (22:43 +0000)]
Fix template instantiation for __builtin_offfsetof expressions that refer to members of anonymous structs/unions

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102551 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoA bit more neon work, adds work (but the ABI is wrong), types mostly stamped out.
Nate Begeman [Wed, 28 Apr 2010 22:37:01 +0000 (22:37 +0000)]
A bit more neon work, adds work (but the ABI is wrong), types mostly stamped out.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102549 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoDiagnose __builtin_offsetof expressions that refer to bit-fields
Douglas Gregor [Wed, 28 Apr 2010 22:36:06 +0000 (22:36 +0000)]
Diagnose __builtin_offsetof expressions that refer to bit-fields

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102548 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoSupport for construct/destruct of ivar array
Fariborz Jahanian [Wed, 28 Apr 2010 22:30:33 +0000 (22:30 +0000)]
Support for construct/destruct of ivar array
of c++ objects (NeXt runtime).
radar 7900343.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102546 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoCompletely reimplement __builtin_offsetof, based on a patch by Roberto
Douglas Gregor [Wed, 28 Apr 2010 22:16:22 +0000 (22:16 +0000)]
Completely reimplement __builtin_offsetof, based on a patch by Roberto
Amadini.

This change introduces a new expression node type, OffsetOfExpr, that
describes __builtin_offsetof. Previously, __builtin_offsetof was
implemented using a unary operator whose subexpression involved
various synthesized array-subscript and member-reference expressions,
which was ugly and made it very hard to instantiate as a
template. OffsetOfExpr represents the AST more faithfully, with proper
type source information and a more compact representation.

OffsetOfExpr also has support for dependent __builtin_offsetof
expressions; it can be value-dependent, but will never be
type-dependent (like sizeof or alignof). This commit introduces
template instantiation for __builtin_offsetof as well.

There are two major caveats to this patch:

  1) CodeGen cannot handle the case where __builtin_offsetof is not a
  constant expression, so it produces an error. So, to avoid
  regressing in C, we retain the old UnaryOperator-based
  __builtin_offsetof implementation in C while using the shiny new
  OffsetOfExpr implementation in C++. The old implementation can go
  away once we have proper CodeGen support for this case, which we
  expect won't cause much trouble in C++.

  2) __builtin_offsetof doesn't work well with non-POD class types,
  particularly when the designated field is found within a base
  class. I will address this in a subsequent patch.

Fixes PR5880 and a bunch of assertions when building Boost.Python
tests.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102542 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoIRGen for initialization/destruction of
Fariborz Jahanian [Wed, 28 Apr 2010 21:28:56 +0000 (21:28 +0000)]
IRGen for initialization/destruction of
ivar class objects (NeXt runtime).
(radar 7900343).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102533 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoadd regex support for -verify mode. You can now do things like
Chris Lattner [Wed, 28 Apr 2010 20:02:30 +0000 (20:02 +0000)]
add regex support for -verify mode.  You can now do things like
expected-error-re {{someregex}}

Patch by mike-m!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102516 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoChanged signature of GenerateMessageSend() function to pass the ObjCInterfaceDecl...
David Chisnall [Wed, 28 Apr 2010 19:33:36 +0000 (19:33 +0000)]
Changed signature of GenerateMessageSend() function to pass the ObjCInterfaceDecl for class messages and removed the boolean IsClassMessage argument, which wasn't used anywhere.

Emitted some metadata on message sends to allow a later pass to do some speculative inlining of class methods (GNU runtime).  Speculative inlining of instance methods requires type feedback to be useful (work in progress), but for class methods it works quite nicely.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102514 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoStub out NEON support, more to come.
Nate Begeman [Wed, 28 Apr 2010 18:37:32 +0000 (18:37 +0000)]
Stub out NEON support, more to come.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102512 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoRevert "Fix for PR6953: per gcc, regparm and noreturn affect the compatibility of...
Daniel Dunbar [Wed, 28 Apr 2010 16:20:58 +0000 (16:20 +0000)]
Revert "Fix for PR6953: per gcc, regparm and noreturn affect the compatibility of", it is breaking the builds of quite a few projects (emacs, dovecot, gnutar, bison).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102501 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoMore of Sema to implement initialization of
Fariborz Jahanian [Wed, 28 Apr 2010 16:11:27 +0000 (16:11 +0000)]
More of Sema to implement initialization of
ivar of c++ object types.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102500 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoRemove unused function.
Benjamin Kramer [Wed, 28 Apr 2010 15:54:45 +0000 (15:54 +0000)]
Remove unused function.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102499 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoReduce string trashing in getQualifiedNameAsString.
Benjamin Kramer [Wed, 28 Apr 2010 14:33:51 +0000 (14:33 +0000)]
Reduce string trashing in getQualifiedNameAsString.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102498 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoEmit the correct symbol name for the class (GNU runtime).
David Chisnall [Wed, 28 Apr 2010 14:29:56 +0000 (14:29 +0000)]
Emit the correct symbol name for the class (GNU runtime).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102497 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoWritten storage class for declarations inside linkage specifications without braces...
Abramo Bagnara [Wed, 28 Apr 2010 13:11:54 +0000 (13:11 +0000)]
Written storage class for declarations inside linkage specifications without braces is none.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102496 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoWhen the qualifier of a id-expression is non-dependent but not
Douglas Gregor [Wed, 28 Apr 2010 07:04:26 +0000 (07:04 +0000)]
When the qualifier of a id-expression is non-dependent but not
complete, return an error rather than falling back to building a
dependent declaration reference, since we might not be in a dependent
context. Fixes a fiendish crash-on-invalid in Boost.FunctionTypes that
I wasn't able to reduce to anything useful.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102491 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoImprove name mangling for dependent template names (e.g., typename
Douglas Gregor [Wed, 28 Apr 2010 05:58:56 +0000 (05:58 +0000)]
Improve name mangling for dependent template names (e.g., typename
T::template apply<U>), handling a few cases where we previously failed
and performing substitutions on such dependent names. Fixes a crash in
Boost.PropertyTree.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102490 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoWhen instantiating a function template specialization following
Douglas Gregor [Wed, 28 Apr 2010 04:52:24 +0000 (04:52 +0000)]
When instantiating a function template specialization following
template argument deduction, use the lexical declaration context as
the owner for friend function templates. Fixes 2 failures in
Boost.Graph.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102489 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoProperly pass the address of a lazily-generated function declaration with
John McCall [Wed, 28 Apr 2010 00:00:30 +0000 (00:00 +0000)]
Properly pass the address of a lazily-generated function declaration with
incomplete type.  Fixes PR6911.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102473 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoIt's okay to refer to non-type template parameters anywhere they are
Douglas Gregor [Tue, 27 Apr 2010 21:10:04 +0000 (21:10 +0000)]
It's okay to refer to non-type template parameters anywhere they are
visible. Fixes the remaining two failures in Boost.ScopeExit.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102466 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoRemoved spaces at end of line. (Test commit.)
Abramo Bagnara [Tue, 27 Apr 2010 21:08:25 +0000 (21:08 +0000)]
Removed spaces at end of line. (Test commit.)

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102465 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoFix for PR6953: per gcc, regparm and noreturn affect the compatibility of
Eli Friedman [Tue, 27 Apr 2010 21:07:06 +0000 (21:07 +0000)]
Fix for PR6953: per gcc, regparm and noreturn affect the compatibility of
function types.

This could potentially have unexpected side-effects, so look here if there are
new regressions.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102464 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoWhen explicitly building a temporary object (CXXTemporaryObjectExpr),
Douglas Gregor [Tue, 27 Apr 2010 20:36:09 +0000 (20:36 +0000)]
When explicitly building a temporary object (CXXTemporaryObjectExpr),
keep track of whether we need to zero-initialize storage prior to
calling its constructor. Previously, we were only tracking this when
implicitly constructing the object (a CXXConstructExpr).

Fixes Boost's value-initialization tests, which means that the
Boost.Config library now passes all of its tests.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102461 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoFixed message send to void (broken by my last commit - GNU runtime).
David Chisnall [Tue, 27 Apr 2010 20:33:30 +0000 (20:33 +0000)]
Fixed message send to void (broken by my last commit - GNU runtime).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102459 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoDiagnose the use of abstract types as array element types. Previously,
Douglas Gregor [Tue, 27 Apr 2010 19:38:14 +0000 (19:38 +0000)]
Diagnose the use of abstract types as array element types. Previously,
we were relying on checking for abstract class types when an array
type was actually used to declare a variable, parameter, etc. However,
we need to check when the construct the array for, e.g., SFINAE
purposes (see DR337). Fixes problems with Boost's is_abstract type
trait.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102452 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoDuring template instantiation, set the naming class of
Douglas Gregor [Tue, 27 Apr 2010 18:19:34 +0000 (18:19 +0000)]
During template instantiation, set the naming class of
UnresolvedLookupExpr and UnresolvedMemberExpr by substituting the
naming class we computed when building the expression in the
template...

... which we didn't always do correctly. Teach
UnresolvedMemberExpr::getNamingClass() all about the new
representation of injected-class-names in templates, so that it can
return a naming class that is the current instantiation.

Also, when decomposing a template-id into its template name and its
arguments, be sure to set the naming class on the LookupResult
structure.

Fixes PR6947 the right way.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102448 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoMore simplifications.
Benjamin Kramer [Tue, 27 Apr 2010 17:47:25 +0000 (17:47 +0000)]
More simplifications.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102447 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoMove CollectIvarsToConstructOrDestruct to Sema
Fariborz Jahanian [Tue, 27 Apr 2010 17:18:58 +0000 (17:18 +0000)]
Move CollectIvarsToConstructOrDestruct to Sema
from AST, consider ivar array of objects
(per Doug's comment).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102446 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoSimplify some code. No change in functionality.
Benjamin Kramer [Tue, 27 Apr 2010 17:12:11 +0000 (17:12 +0000)]
Simplify some code. No change in functionality.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102445 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoWhen checking the redeclaration context of a typedef that refers to a
Douglas Gregor [Tue, 27 Apr 2010 16:26:47 +0000 (16:26 +0000)]
When checking the redeclaration context of a typedef that refers to a
tag of the same name, compare the lookup contexts rather than the
actual contexts. Fixes PR6923.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102437 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoDon't look into incomplete types when trying to warn about unused
Douglas Gregor [Tue, 27 Apr 2010 16:20:13 +0000 (16:20 +0000)]
Don't look into incomplete types when trying to warn about unused
variables. Fixes PR6948.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102436 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoCMake: Fix DESTDIR-related installation problem on Windows, from the
Douglas Gregor [Tue, 27 Apr 2010 16:14:06 +0000 (16:14 +0000)]
CMake: Fix DESTDIR-related installation problem on Windows, from the
mysterious Elrood on IRC.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102435 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoWhen instantiating UnresolvedLookupExpr and UnresolvedMemberExpr
Douglas Gregor [Tue, 27 Apr 2010 16:10:10 +0000 (16:10 +0000)]
When instantiating UnresolvedLookupExpr and UnresolvedMemberExpr
expressions, be sure to set the naming class of the LookupResult
structure. Fixes PR6947.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102434 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoSimplify.
Daniel Dunbar [Tue, 27 Apr 2010 15:35:03 +0000 (15:35 +0000)]
Simplify.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102432 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoAdd Driver support for -fno-constant-cfstrings.
Daniel Dunbar [Tue, 27 Apr 2010 15:34:57 +0000 (15:34 +0000)]
Add Driver support for -fno-constant-cfstrings.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102431 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoEnsure return from a message to nil is always 0 (GNU runtime).
David Chisnall [Tue, 27 Apr 2010 15:08:48 +0000 (15:08 +0000)]
Ensure return from a message to nil is always 0 (GNU runtime).

This works around stack corruption / crashes resulting from PR6944, and also
works around people who expect 'what works on my machine' to work everywhere
(GCC crashes in a number of cases on SPARC that should now work correctly with
clang).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102430 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoFix comments.
Daniel Dunbar [Tue, 27 Apr 2010 14:51:07 +0000 (14:51 +0000)]
Fix comments.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102429 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoWrap a couple of long lines. (Test commit.)
Enea Zaffanella [Tue, 27 Apr 2010 07:38:32 +0000 (07:38 +0000)]
Wrap a couple of long lines. (Test commit.)

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102420 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoImprove the diagnostic you get when making a qualified member access
John McCall [Tue, 27 Apr 2010 01:43:38 +0000 (01:43 +0000)]
Improve the diagnostic you get when making a qualified member access
with a qualifier referencing a different type.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102409 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoMake the InjectedClassNameType the canonical type of the current instantiation
John McCall [Tue, 27 Apr 2010 00:57:59 +0000 (00:57 +0000)]
Make the InjectedClassNameType the canonical type of the current instantiation
of a class template or class template partial specialization.  That is to
say, in
  template <class T> class A { ... };
or
  template <class T> class B<const T*> { ... };
make 'A<T>' and 'B<const T*>' sugar for the corresponding InjectedClassNameType
when written inside the appropriate context.  This allows us to track the
current instantiation appropriately even inside AST routines.  It also allows
us to compute a DeclContext for a type much more efficiently, at some extra
cost every time we write a template specialization (which can be optimized,
but I've left it simple in this patch).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102407 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoNew method to construct/destruct ivars that have non-trivial default
Fariborz Jahanian [Mon, 26 Apr 2010 23:51:25 +0000 (23:51 +0000)]
New method to construct/destruct ivars that have non-trivial default
constructors or destructors, not used yet.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102403 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoEnable debug info for local variables at -O1+.
Devang Patel [Mon, 26 Apr 2010 23:28:46 +0000 (23:28 +0000)]
Enable debug info for local variables at -O1+.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102398 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoImprove source-location information in a C++ typeid (type) expression
Douglas Gregor [Mon, 26 Apr 2010 22:37:10 +0000 (22:37 +0000)]
Improve source-location information in a C++ typeid (type) expression
by using TypeSourceInfo, cleaning up the representation
somewhat. Teach getTypeOperand() to strip references and
cv-qualifiers, providing the semantic view of the type without
requiring any extra storage (the unmodified type remains within the
TypeSourceInfo). This fixes a bug found by Boost's call_traits test.

Finally, clean up semantic analysis, by splitting the ActOnCXXTypeid
routine into ActOnCXXTypeId (the parser action) and two BuildCXXTypeId
functions, which perform the semantic analysis for typeid(type) and
typeid(expression), respectively. We now perform less work at template
instantiation time (we don't look for std::type_info again) and can
give better diagnostics.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102393 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agofix PR6936: don't generate line marker directives when preprocessing
Chris Lattner [Mon, 26 Apr 2010 22:08:10 +0000 (22:08 +0000)]
fix PR6936: don't generate line marker directives when preprocessing
.S files.  "# 123" is passed through as-is, not treated as a line
marker in this mode.  No testcase, because it would be nasty and isn't
worth it.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102391 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoDiagnose declaration of reference typed ivars.
Fariborz Jahanian [Mon, 26 Apr 2010 22:07:03 +0000 (22:07 +0000)]
Diagnose declaration of reference typed ivars.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102390 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agowordsmith an objc warning, rdar://7900756
Chris Lattner [Mon, 26 Apr 2010 21:44:01 +0000 (21:44 +0000)]
wordsmith an objc warning, rdar://7900756

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102388 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoIntroduce Type::isStructureOrClassType(), which does the obvious
Douglas Gregor [Mon, 26 Apr 2010 21:31:17 +0000 (21:31 +0000)]
Introduce Type::isStructureOrClassType(), which does the obvious
thing. Audit all uses of Type::isStructure(), changing those calls to
isStructureOrClassType() as needed (which is alsmost
everywhere). Fixes the remaining failure in Boost.Utility/Swap.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102386 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoCleanup error recovery for a missing '-'|'+'
Fariborz Jahanian [Mon, 26 Apr 2010 21:18:08 +0000 (21:18 +0000)]
Cleanup error recovery for a missing '-'|'+'
on a method declaration (radar 7822196).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102383 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoImplement template instantiation for implicit property references in
Douglas Gregor [Mon, 26 Apr 2010 21:04:54 +0000 (21:04 +0000)]
Implement template instantiation for implicit property references in
Objective-C++. This is the last bit of (non-blocks-related) template
instantiation logic for Objective-C++. Yay!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102382 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoImplement template instantiation for ObjCPropertyRefExpr.
Douglas Gregor [Mon, 26 Apr 2010 20:47:02 +0000 (20:47 +0000)]
Implement template instantiation for ObjCPropertyRefExpr.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102379 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoemit dtors with the right calling convention in -fno-use-cxa-atexit
Chris Lattner [Mon, 26 Apr 2010 20:35:54 +0000 (20:35 +0000)]
emit dtors with the right calling convention in -fno-use-cxa-atexit
mode.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102377 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoImplement template instantiation for value-dependent Objective-C ivar
Douglas Gregor [Mon, 26 Apr 2010 20:11:03 +0000 (20:11 +0000)]
Implement template instantiation for value-dependent Objective-C ivar
references and isa expressions. Also, test template instantiation of
unresolved member references to Objective-C ivar references and isa
expressions.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102374 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoremove alignment specifier on this. CAn't this test be removed yet? :)
Chris Lattner [Mon, 26 Apr 2010 19:47:56 +0000 (19:47 +0000)]
remove alignment specifier on this.  CAn't this test be removed yet? :)

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102369 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoTest case for NeXt's -fno-constant-cfstrings option.
Fariborz Jahanian [Mon, 26 Apr 2010 17:59:24 +0000 (17:59 +0000)]
Test case for NeXt's -fno-constant-cfstrings option.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102357 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoImplement template instantiation for Objective-C @catch
Douglas Gregor [Mon, 26 Apr 2010 17:57:08 +0000 (17:57 +0000)]
Implement template instantiation for Objective-C @catch
statements. This is the last of the Objective-C statements.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102356 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoRefactor Objective-C @catch parameter checking by detangling it from
Douglas Gregor [Mon, 26 Apr 2010 17:32:49 +0000 (17:32 +0000)]
Refactor Objective-C @catch parameter checking by detangling it from
function-parameter checking and splitting it into the normal
ActOn*/Build* pair in Sema. We now use VarDecl to represent the @catch
parameter rather than the ill-fitting ParmVarDecl.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102347 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoMake the static type of the exception variable in an Objective-C
Douglas Gregor [Mon, 26 Apr 2010 16:46:50 +0000 (16:46 +0000)]
Make the static type of the exception variable in an Objective-C
@catch a VarDecl. The dynamic type is still a ParmVarDecl, but that
will change soon. No effective functionality change.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102341 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoEnsure that we have completed a type before attempting initialization
Douglas Gregor [Mon, 26 Apr 2010 14:36:57 +0000 (14:36 +0000)]
Ensure that we have completed a type before attempting initialization
on that type. Fixes several problems in Boost.Interprocess.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102339 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agotests: Force a triple.
Daniel Dunbar [Mon, 26 Apr 2010 10:58:19 +0000 (10:58 +0000)]
tests: Force a triple.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102332 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoWhen name lookup finds a single declaration that was imported via a
Douglas Gregor [Sun, 25 Apr 2010 21:15:30 +0000 (21:15 +0000)]
When name lookup finds a single declaration that was imported via a
using declaration, look at its underlying declaration to determine the
lookup result kind (e.g., overloaded, unresolved). Fixes at least one
issue in Boost.Bimap.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102317 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoImprove the diagnostic when we find something we did not expect in a
Douglas Gregor [Sun, 25 Apr 2010 20:55:08 +0000 (20:55 +0000)]
Improve the diagnostic when we find something we did not expect in a
member expression (p-> or x.), by showing the type we looked into and
what we did actually find.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102315 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoIRgen/NeXT: Fix several alignment issues with Objective-C metadata symbols:
Daniel Dunbar [Sun, 25 Apr 2010 20:39:32 +0000 (20:39 +0000)]
IRgen/NeXT: Fix several alignment issues with Objective-C metadata symbols:
 - Fix some places that had the alignment hard coded.
 - Use ABI type alignment, not preferred type alignment -- neither of this is exactly right, as we really want the C type alignment as required by the runtime, but the ABI alignment is a more correct choice.

This should be equivalent for x86_64, but fixes the alignment for ARM.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102314 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agotests: Convert test to FileCheck.
Daniel Dunbar [Sun, 25 Apr 2010 20:39:19 +0000 (20:39 +0000)]
tests: Convert test to FileCheck.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102313 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoIRgen/NeXT: Reuse EmitImageInfo for both fragile and non-fragile ABI. This fixes...
Daniel Dunbar [Sun, 25 Apr 2010 20:39:01 +0000 (20:39 +0000)]
IRgen/NeXT: Reuse EmitImageInfo for both fragile and non-fragile ABI. This fixes Clang to correctly emit the "CorrectedSynthesize" bit when using the non-fragile ABI.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102312 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoWhen performing name lookup for an operator name, be sure to look
Douglas Gregor [Sun, 25 Apr 2010 20:25:43 +0000 (20:25 +0000)]
When performing name lookup for an operator name, be sure to look
through using declarations. Fixes ~18 tests in Boost.Fusion.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102311 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoexclude cmake build directories from being installed
Chris Lattner [Sun, 25 Apr 2010 04:59:35 +0000 (04:59 +0000)]
exclude cmake build directories from being installed
with "make install".  Patch by Michael Forney!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102299 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoLand another cleanup patch.
Anders Carlsson [Sun, 25 Apr 2010 01:03:12 +0000 (01:03 +0000)]
Land another cleanup patch.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102293 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoLand this test.
Anders Carlsson [Sun, 25 Apr 2010 01:00:05 +0000 (01:00 +0000)]
Land this test.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102292 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoTweak test for destruction of copied temporary objects
Douglas Gregor [Sun, 25 Apr 2010 00:56:07 +0000 (00:56 +0000)]
Tweak test for destruction of copied temporary objects

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102291 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoWhen copying a temporary object to initialize an entity for which the
Douglas Gregor [Sun, 25 Apr 2010 00:55:24 +0000 (00:55 +0000)]
When copying a temporary object to initialize an entity for which the
temporary needs to be bound, bind the copy object. Otherwise, we won't
end up calling the destructor for the copy. Fixes Boost.Optional.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102290 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoRevert enough of my patches to fix self-host again :(
Anders Carlsson [Sun, 25 Apr 2010 00:52:09 +0000 (00:52 +0000)]
Revert enough of my patches to fix self-host again :(

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102289 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoWhen we create a temporary of class type that we don't immediately
Douglas Gregor [Sat, 24 Apr 2010 23:45:46 +0000 (23:45 +0000)]
When we create a temporary of class type that we don't immediately
bind, check accessibility of the destructor and mark the declaration
as referenced. Fixes a bunch of Boost.Regex failures.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102287 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoCleanup SynthesizeCXXCopyConstructor.
Anders Carlsson [Sat, 24 Apr 2010 23:11:18 +0000 (23:11 +0000)]
Cleanup SynthesizeCXXCopyConstructor.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102286 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoClean up SynthesizeCXXCopyAssignment a little.
Anders Carlsson [Sat, 24 Apr 2010 23:09:21 +0000 (23:09 +0000)]
Clean up SynthesizeCXXCopyAssignment a little.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102285 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoRenameGetAddressOfBaseOfCompleteClass to GetAddressOfDirectBaseInCompleteClass to...
Anders Carlsson [Sat, 24 Apr 2010 23:01:49 +0000 (23:01 +0000)]
RenameGetAddressOfBaseOfCompleteClass to GetAddressOfDirectBaseInCompleteClass to reflect that it only handles direct bases.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102284 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoAdd an explicit UsuallyTinyPtrVector that takes a single element.
Anders Carlsson [Sat, 24 Apr 2010 22:54:32 +0000 (22:54 +0000)]
Add an explicit UsuallyTinyPtrVector that takes a single element.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102283 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoMore cleanup.
Anders Carlsson [Sat, 24 Apr 2010 22:43:39 +0000 (22:43 +0000)]
More cleanup.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102282 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoSimplify EmitClassMemberwiseCopy now that it's only used for fields.
Anders Carlsson [Sat, 24 Apr 2010 22:36:50 +0000 (22:36 +0000)]
Simplify EmitClassMemberwiseCopy now that it's only used for fields.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102281 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoSwitch this to new API.
Nick Lewycky [Sat, 24 Apr 2010 22:31:36 +0000 (22:31 +0000)]
Switch this to new API.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102280 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoDefineImplicitCopyConstructor now uses SetBaseOrMemberInitializers to create implicit...
Anders Carlsson [Sat, 24 Apr 2010 22:25:18 +0000 (22:25 +0000)]
DefineImplicitCopyConstructor now uses SetBaseOrMemberInitializers to create implicit base initializers. (Member initializers are still handled by CodeGenFunction::SynthesizeCXXCopyConstructor for now).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102279 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoWhen building implicit base initializers, add a derived-to-base cast that points...
Anders Carlsson [Sat, 24 Apr 2010 22:02:54 +0000 (22:02 +0000)]
When building implicit base initializers, add a derived-to-base cast that points to the exact base specifier.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102277 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoRename GetAddressOfBaseClass to OldGetAddressOfBaseClass.
Anders Carlsson [Sat, 24 Apr 2010 21:51:08 +0000 (21:51 +0000)]
Rename GetAddressOfBaseClass to OldGetAddressOfBaseClass.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102275 91177308-0d34-0410-b5e6-96231b3b80d8

14 years agoGet rid of the old GetNonVirtualBaseClassOffset and change all call sites to use...
Anders Carlsson [Sat, 24 Apr 2010 21:27:51 +0000 (21:27 +0000)]
Get rid of the old GetNonVirtualBaseClassOffset and change all call sites to use the new version.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102274 91177308-0d34-0410-b5e6-96231b3b80d8