]> granicus.if.org Git - clang/log
clang
12 years agoImplement C++11 [conv.prom]p4: an enumeration with a fixed underlying type has
Richard Smith [Thu, 13 Sep 2012 21:18:54 +0000 (21:18 +0000)]
Implement C++11 [conv.prom]p4: an enumeration with a fixed underlying type has
integral promotions to both its underlying type and to its underlying type's
promoted type. This matters now that boolean conversions aren't permitted in
converted constant expressions (a la DR1407): an enumerator with a fixed
underlying type of bool still can be.

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

12 years agoDon't perform template argument deduction against invalid templates;
Douglas Gregor [Thu, 13 Sep 2012 21:01:57 +0000 (21:01 +0000)]
Don't perform template argument deduction against invalid templates;
it's likely to lead to a crash later on. Fixes PR12933 /
<rdar://problem/11525335>.

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

12 years agoComment parsing: handle \deprecated command. It is a block command, but it
Dmitri Gribenko [Thu, 13 Sep 2012 20:36:01 +0000 (20:36 +0000)]
Comment parsing: handle \deprecated command.  It is a block command, but it
should be fine to use it without further explanations in the attached
paragraph, so the warning about empty paragraph was turned off for it.

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

12 years agoremove duplicate code.
Fariborz Jahanian [Thu, 13 Sep 2012 20:26:40 +0000 (20:26 +0000)]
remove duplicate code.

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

12 years agoPromote the warning about extra qualification on a declaration from a
Douglas Gregor [Thu, 13 Sep 2012 20:16:20 +0000 (20:16 +0000)]
Promote the warning about extra qualification on a declaration from a
warning to an error. C++ bans it, and both GCC and EDG diagnose it as
an error. Microsoft allows it, so we still warn in Microsoft
mode. Fixes <rdar://problem/11135644>.

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

12 years agoRemove speculative fix for C++ core issue 1407, since it was resolved as NAD.
Richard Smith [Thu, 13 Sep 2012 19:55:13 +0000 (19:55 +0000)]
Remove speculative fix for C++ core issue 1407, since it was resolved as NAD.

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

12 years agoFix grammar.
Ted Kremenek [Thu, 13 Sep 2012 19:48:51 +0000 (19:48 +0000)]
Fix grammar.

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

12 years agoRecover properly after a parse error in a static_assert declaration.
Richard Smith [Thu, 13 Sep 2012 19:12:50 +0000 (19:12 +0000)]
Recover properly after a parse error in a static_assert declaration.

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

12 years agoUse a "better" unicode character, to avoid buildbot breakage on bots which can print...
Richard Smith [Thu, 13 Sep 2012 19:10:51 +0000 (19:10 +0000)]
Use a "better" unicode character, to avoid buildbot breakage on bots which can print some unicode characters.

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

12 years agoMove back the stuff about missing ownership attribute warning
Fariborz Jahanian [Thu, 13 Sep 2012 18:53:14 +0000 (18:53 +0000)]
Move back the stuff about missing ownership attribute warning
to SemaDeclObjC and apply some simplification per John's
comment. // rdar://12280826

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

12 years agoMake TextDiagnostic more robust against SourceLocations which point into the
Richard Smith [Thu, 13 Sep 2012 18:37:50 +0000 (18:37 +0000)]
Make TextDiagnostic more robust against SourceLocations which point into the
middle of UTF-8 characters, and avoid walking to such positions when adjusting
column ranges for display. Fixes a couple of hangs when rendering diagnostics.

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

12 years agoWhen warning about unsafe uses of dispatch_once, specially handle the
Ted Kremenek [Thu, 13 Sep 2012 18:18:37 +0000 (18:18 +0000)]
When warning about unsafe uses of dispatch_once, specially handle the
crazy case where dispatch_once gets redefined as a macro that calls
_dispatch_once (which calls the real dispatch_once).  Users want to
see the warning in their own code.

Fixes <rdar://problem/11617767>

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

12 years agoMove no explicit ownership warning to SemaType.cpp.
Fariborz Jahanian [Thu, 13 Sep 2012 17:29:07 +0000 (17:29 +0000)]
Move no explicit ownership warning to SemaType.cpp.
// rdar://12280826

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

12 years agoAdd tests for r163778.
Ted Kremenek [Thu, 13 Sep 2012 17:25:51 +0000 (17:25 +0000)]
Add tests for r163778.

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

12 years agoThis patch introduces A15 as a target in Clang.
Silviu Baranga [Thu, 13 Sep 2012 15:06:00 +0000 (15:06 +0000)]
This patch introduces A15 as a target in Clang.

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

12 years agoASTMatchersMacros.h: Appease msvc.
NAKAMURA Takumi [Thu, 13 Sep 2012 14:28:23 +0000 (14:28 +0000)]
ASTMatchersMacros.h: Appease msvc.

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

12 years agoCreate initial support for matching and binding NestedNameSpecifier(Loc)s.
Daniel Jasper [Thu, 13 Sep 2012 13:11:25 +0000 (13:11 +0000)]
Create initial support for matching and binding NestedNameSpecifier(Loc)s.

Review: http://llvm-reviews.chandlerc.com/D39

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

12 years agoFix Doxygen misuse: refer to parameter names in paragraphs correctly (\arg is
Dmitri Gribenko [Thu, 13 Sep 2012 13:11:20 +0000 (13:11 +0000)]
Fix Doxygen misuse: refer to parameter names in paragraphs correctly (\arg is
not what most people want -- it starts a new paragraph).

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

12 years agoAdd missing accessor.
Manuel Klimek [Thu, 13 Sep 2012 12:44:47 +0000 (12:44 +0000)]
Add missing accessor.

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

12 years agoConditionally parse documentation comments in system headers by
Ted Kremenek [Thu, 13 Sep 2012 06:41:18 +0000 (06:41 +0000)]
Conditionally parse documentation comments in system headers by
passing -fretain-comments-from-system-headers.  By default, the
compiler no longer parses such documentation comments, as they
can result in a noticeable compile time/PCH slowdown.

Fixes <rdar://problem/11860820>.

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

12 years agoProperly link libpthread_p when using profiling on OpenBSD.
Eric Christopher [Thu, 13 Sep 2012 06:32:34 +0000 (06:32 +0000)]
Properly link libpthread_p when using profiling on OpenBSD.

Patch by Brad Smith.

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

12 years agoInitHeaderSearch.cpp: [mingw] Handle DOSish paths only on Win32 hosts.
NAKAMURA Takumi [Thu, 13 Sep 2012 05:53:23 +0000 (05:53 +0000)]
InitHeaderSearch.cpp: [mingw] Handle DOSish paths only on Win32 hosts.

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

12 years agoclang/lib/Analysis/ObjCNoReturn.cpp: Fix [-Wnewline-eof]
NAKAMURA Takumi [Thu, 13 Sep 2012 05:53:17 +0000 (05:53 +0000)]
clang/lib/Analysis/ObjCNoReturn.cpp: Fix [-Wnewline-eof]

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

12 years agoFormat strings: offer a fixit for Darwin's %D/%U/%O to ISO %d/%u/%o.
Jordan Rose [Thu, 13 Sep 2012 02:11:15 +0000 (02:11 +0000)]
Format strings: offer a fixit for Darwin's %D/%U/%O to ISO %d/%u/%o.

<rdar://problem/12061922>

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

12 years agoFormat strings: %D, %U, and %O are valid on Darwin (same as %d, %u, %o).
Jordan Rose [Thu, 13 Sep 2012 02:11:03 +0000 (02:11 +0000)]
Format strings: %D, %U, and %O are valid on Darwin (same as %d, %u, %o).

These will warn under -Wformat-non-iso, and will still be rejected
outright on other platforms.

<rdar://problem/12061922>

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

12 years ago[analyzer] Don't reimplement an existing function.
Anna Zaks [Thu, 13 Sep 2012 00:37:12 +0000 (00:37 +0000)]
[analyzer] Don't reimplement an existing function.

Thanks Jordan.

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

12 years agoTeach -Wuninitialized to recognize common "noreturn" idioms in
Ted Kremenek [Thu, 13 Sep 2012 00:21:35 +0000 (00:21 +0000)]
Teach -Wuninitialized to recognize common "noreturn" idioms in
Objective-C related to NSException.

Fixes <rdar://problem/12287498>

I debated whether or not this logic should be sunk into the CFG
itself.  It's not clear if we should, as different analyses may
wish to have different policies.  We can re-evaluate this in the
future.

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

12 years agoRefactor logic in ExprEngine for detecting 'noreturn' methods
Ted Kremenek [Thu, 13 Sep 2012 00:21:31 +0000 (00:21 +0000)]
Refactor logic in ExprEngine for detecting 'noreturn' methods
in NSException to a helper object in libAnalysis that can also
be used by Sema.  Not sure if the predicate name 'isImplicitNoReturn'
is the best one, but we can massage that later.

No functionality change.

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

12 years agoAdd a few FIXMEs.
Chad Rosier [Thu, 13 Sep 2012 00:20:37 +0000 (00:20 +0000)]
Add a few FIXMEs.

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

12 years ago[ms-inline asm] Handle the enumeration of input and output expressions in a
Chad Rosier [Thu, 13 Sep 2012 00:06:55 +0000 (00:06 +0000)]
[ms-inline asm]  Handle the enumeration of input and output expressions in a
more robust way to address a few FIXMEs.

The initial implementation, r163342, built the IR asm string and then tried to
patch things on the fly without enough context.  Specifically, it didn't skip
mnemonics nor did it track with assembly instruction an expression was related
to.  The new implementation patches the operands and then builds the final
IR string.

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

12 years agoReapply:
Eric Christopher [Wed, 12 Sep 2012 23:36:49 +0000 (23:36 +0000)]
Reapply:

    Make clang emit a flag for DW_AT_object_pointer for the artificial
    args where it should (implicit first arguments). FileCheck-ize a
    test as well and update tests to take into account the object
    pointer flag.

    rdar://9797999

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

12 years agoAdd two new functions to Qualifiers.
Richard Trieu [Wed, 12 Sep 2012 23:13:31 +0000 (23:13 +0000)]
Add two new functions to Qualifiers.

static Qualifiers removeCommonQualifiers(Qualifiers &L, Qualifiers &R)
Removes the common qualifiers from L and R and returns them in a new Qualifier.
This will be used in template diffing.

void removeQualifiers(Qualifiers Q)
Removes the qualifiers in Q from the current qualifier.
This replaces the current underlying implementation of operator- and
operator -= which only performed bit masking.

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

12 years agoWhitespace.
Chad Rosier [Wed, 12 Sep 2012 23:03:48 +0000 (23:03 +0000)]
Whitespace.

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

12 years ago[analyzer] Do not report use of undef on "return foo();" when the return type is...
Anna Zaks [Wed, 12 Sep 2012 22:57:40 +0000 (22:57 +0000)]
[analyzer] Do not report use of undef on "return foo();" when the return type is void.

Fixes a false positive found by analyzing LLVM code base.

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

12 years ago[analyzer] Fix another false positive in malloc realloc logic.
Anna Zaks [Wed, 12 Sep 2012 22:57:34 +0000 (22:57 +0000)]
[analyzer] Fix another false positive in malloc realloc logic.

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

12 years ago[analyzer] Teach UndefOrNullArgVisitor to track parent regions.
Anna Zaks [Wed, 12 Sep 2012 22:57:30 +0000 (22:57 +0000)]
[analyzer] Teach UndefOrNullArgVisitor to track parent regions.

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

12 years ago[analyzer] Fix another use of the address of a temporary, like r163402.
Jordan Rose [Wed, 12 Sep 2012 22:48:08 +0000 (22:48 +0000)]
[analyzer] Fix another use of the address of a temporary, like r163402.

Again, GCC is more aggressive about reusing temporary space than we are,
leading to Release build crashes for this undefined behavior.

PR13710 (though it may not be the only problem there)

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

12 years ago[analyzer] Re-add reinterpret_cast virtual call test case from r163644.
Jordan Rose [Wed, 12 Sep 2012 21:50:56 +0000 (21:50 +0000)]
[analyzer] Re-add reinterpret_cast virtual call test case from r163644.

We mostly just don't want to crash analyzing this test case; it's likely
the code found here will actually crash if compiled and run.

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

12 years ago[analyzer] Handle when the dynamic type is worse than the static type.
Jordan Rose [Wed, 12 Sep 2012 21:48:17 +0000 (21:48 +0000)]
[analyzer] Handle when the dynamic type is worse than the static type.

Currently we don't update the dynamic type of a C++ object when it is
cast. This can cause the situation above, where the static type of the
region is now known to be a subclass of the dynamic type.

Once we start updating DynamicTypeInfo in response to the various kinds
of casts in C++, we can re-add this assert to make sure we don't miss
any cases. This work is tracked by <rdar://problem/12287087>.

In -Asserts builds, we will simply not return any runtime definition
when our DynamicTypeInfo is known to be incorrect like this.

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

12 years agoRevert "[analyzer] Use the static type for a virtual call if the dynamic type is...
Jordan Rose [Wed, 12 Sep 2012 21:48:13 +0000 (21:48 +0000)]
Revert "[analyzer] Use the static type for a virtual call if the dynamic type is worse."

Using the static type may be inconsistent with later calls. We should just
report that there is no inlining definition available if the static type is
better than the dynamic type. See next commit.

This reverts r163644 / 19d5886d1704e24282c86217b09d5c6d35ba604d.

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

12 years agoobjective-C++ test for my previous patch.
Fariborz Jahanian [Wed, 12 Sep 2012 21:27:26 +0000 (21:27 +0000)]
objective-C++ test for my previous patch.
// rdar://12280826

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

12 years agoRename isA to isSameOrDerivedFrom.
Daniel Jasper [Wed, 12 Sep 2012 21:14:15 +0000 (21:14 +0000)]
Rename isA to isSameOrDerivedFrom.

There are two evils we can choose from:
- Name overlap between isA-matcher and llvm::isa<>()
- Bad name for what the isA-matcher currently does

After some discussion we have agreed to go with the latter evil.

Review: http://llvm-reviews.chandlerc.com/D40

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

12 years agoobjective-C arc: don't issue no explicit ownership warning when
Fariborz Jahanian [Wed, 12 Sep 2012 20:34:47 +0000 (20:34 +0000)]
objective-C arc: don't issue no explicit ownership warning when
__autoreleasing is explicitely added to param type.
// rdar://12280826

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

12 years agoFix test case for Release builds.
Chad Rosier [Wed, 12 Sep 2012 20:13:11 +0000 (20:13 +0000)]
Fix test case for Release builds.

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

12 years agoRevert "Make clang emit a flag for DW_AT_object_pointer for the artificial"
Eric Christopher [Wed, 12 Sep 2012 18:42:10 +0000 (18:42 +0000)]
Revert "Make clang emit a flag for DW_AT_object_pointer for the artificial"
this should be done on the subprogram, not the variable.

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

12 years ago[ms-inline asm] Add a test case.
Chad Rosier [Wed, 12 Sep 2012 18:34:34 +0000 (18:34 +0000)]
[ms-inline asm] Add a test case.

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

12 years ago[ms-inline asm] Test case for r163729.
Chad Rosier [Wed, 12 Sep 2012 18:25:06 +0000 (18:25 +0000)]
[ms-inline asm] Test case for r163729.

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

12 years ago[ms-inline asm] If we have a single asm operand that maps to multiple
Chad Rosier [Wed, 12 Sep 2012 18:14:25 +0000 (18:14 +0000)]
[ms-inline asm] If we have a single asm operand that maps to multiple
MCOperands then iterate over all of then when computing clobbers, inputs and
outputs.

On x86 the 1-to-many mapping is a memory operand that includes a BaseReg(reg),
MemScale(imm), MemIndexReg(reg), an Expr(MCExpr or imm) and a MemSegReg(reg).
Invalid register (Op.getReg() == 0) are not considered when computing clobber.

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

12 years agoComment parsing: recognize more Doxygen commands
Dmitri Gribenko [Wed, 12 Sep 2012 17:02:40 +0000 (17:02 +0000)]
Comment parsing: recognize more Doxygen commands

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

12 years agoFix a couple of Doxygen issues pointed out by -Wdocumentation.
Dmitri Gribenko [Wed, 12 Sep 2012 17:01:48 +0000 (17:01 +0000)]
Fix a couple of Doxygen issues pointed out by -Wdocumentation.

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

12 years agoRevert "objective-C: warn under a flag if missing argument"
Ted Kremenek [Wed, 12 Sep 2012 16:50:35 +0000 (16:50 +0000)]
Revert "objective-C: warn under a flag if missing argument"

We plan on discussing this more, but we shouldn't have it in the compiler
in an incomplete state.

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

12 years agoRevert "objective-C: warn if selector has nothing but bare"
Ted Kremenek [Wed, 12 Sep 2012 16:50:30 +0000 (16:50 +0000)]
Revert "objective-C: warn if selector has nothing but bare"

We plan on discussing this more.

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

12 years agoclang/test: [PR13820] Suppress LLP64-incompatible tests for ObjC with +Asserts.
NAKAMURA Takumi [Wed, 12 Sep 2012 14:26:42 +0000 (14:26 +0000)]
clang/test: [PR13820] Suppress LLP64-incompatible tests for ObjC with +Asserts.

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

12 years agoclang/test/CodeGen/2008-01-25-ZeroSizedAggregate.c: [PR8833] Add REQUIRES: LP64....
NAKAMURA Takumi [Wed, 12 Sep 2012 14:26:34 +0000 (14:26 +0000)]
clang/test/CodeGen/2008-01-25-ZeroSizedAggregate.c: [PR8833] Add REQUIRES: LP64. It fails with +Asserts for Win64.

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

12 years agoClaim --param ssp-buffer-size, even if the stack protector is not
Joerg Sonnenberger [Wed, 12 Sep 2012 13:51:14 +0000 (13:51 +0000)]
Claim --param ssp-buffer-size, even if the stack protector is not
active.

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

12 years agoclang/test/CodeGenObjC: [PR13820] Suppress LLP64-incompatible tests.
NAKAMURA Takumi [Wed, 12 Sep 2012 10:45:52 +0000 (10:45 +0000)]
clang/test/CodeGenObjC: [PR13820] Suppress LLP64-incompatible tests.

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

12 years agoclang/test/SemaCXX/dcl_ambig_res.cpp: [PR13819] It requires LP64 for now due to __SIZ...
NAKAMURA Takumi [Wed, 12 Sep 2012 10:45:46 +0000 (10:45 +0000)]
clang/test/SemaCXX/dcl_ambig_res.cpp: [PR13819] It requires LP64 for now due to __SIZE_TYPE__.

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

12 years agoclang/test: [PR8833] Introduce the feature "LP64" to suppress LLP64-incompatible...
NAKAMURA Takumi [Wed, 12 Sep 2012 10:45:40 +0000 (10:45 +0000)]
clang/test: [PR8833] Introduce the feature "LP64" to suppress LLP64-incompatible tests.

I think some of them could be rewritten to fit also LLP64.

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

12 years agoclang/test/PCH/missing-file.cpp: Try to suppress accidental false on Windows.
NAKAMURA Takumi [Wed, 12 Sep 2012 10:38:08 +0000 (10:38 +0000)]
clang/test/PCH/missing-file.cpp: Try to suppress accidental false on Windows.

%t.h might be touched by scanners as a hot file on Windows, to fail to remove %.h with single run.

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

12 years agoclang/test/lit.cfg: Fix a typo in comment.
NAKAMURA Takumi [Wed, 12 Sep 2012 10:38:03 +0000 (10:38 +0000)]
clang/test/lit.cfg: Fix a typo in comment.

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

12 years agoFix a test failure.
Evgeniy Stepanov [Wed, 12 Sep 2012 09:39:37 +0000 (09:39 +0000)]
Fix a test failure.

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

12 years agoMake -faddress-sanitizer on Android link to the new-style runtime.
Evgeniy Stepanov [Wed, 12 Sep 2012 09:09:08 +0000 (09:09 +0000)]
Make -faddress-sanitizer on Android link to the new-style runtime.

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

12 years agoConvert a few more getAs cases to castAs where we immediately call a member function.
Ted Kremenek [Wed, 12 Sep 2012 06:50:29 +0000 (06:50 +0000)]
Convert a few more getAs cases to castAs where we immediately call a member function.

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

12 years agoFix regression where "looping back to the head of" PathDiagnosticEvents
Ted Kremenek [Wed, 12 Sep 2012 06:22:18 +0000 (06:22 +0000)]
Fix regression where "looping back to the head of" PathDiagnosticEvents
were not emitted.

Fixes <rdar://problem/12280665>.

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

12 years agoTeach -Wuninitialized to recognize __attribute__((analyzer_noreturn))
Ted Kremenek [Wed, 12 Sep 2012 05:53:43 +0000 (05:53 +0000)]
Teach -Wuninitialized to recognize __attribute__((analyzer_noreturn))
for halting the propagation of uninitialized value tracking along
a path.  Unlike __attribute__((noreturn)), this attribute (which
is used by clients of the static analyzer) can be used to annotate
functions that essentially never return, but in rare cares may be
allowed to return for (special) debugging purposes.  This attribute
has been shown in reducing false positives in the static analyzer
by pruning false postives, and is equally applicable here.

Handling this attribute in the CFG itself is another option, but
this is not something all clients (e.g., possibly -Wunreachable-code)
would want to see.

Addresses <rdar://problem/12281583>.

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

12 years agoPost new checker build.
Ted Kremenek [Wed, 12 Sep 2012 05:11:29 +0000 (05:11 +0000)]
Post new checker build.

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

12 years agoAdjust some analyzer tests to place widely shared inputs inside of an
Chandler Carruth [Wed, 12 Sep 2012 01:11:10 +0000 (01:11 +0000)]
Adjust some analyzer tests to place widely shared inputs inside of an
'Inputs' subdirectory.

The general desire has been to have essentially all of the non-test
input files live in such directories, with some exceptions for obvious
and common patterns like 'foo.c' using 'foo.h'.

This came up because our distributed test runner couldn't find some of
the headers, for example with stl.cpp.

No functionality changed, just shuffling around here.

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

12 years agoFix up more "$t"s in this test that should be "%t"s.
Chandler Carruth [Wed, 12 Sep 2012 01:11:05 +0000 (01:11 +0000)]
Fix up more "$t"s in this test that should be "%t"s.

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

12 years agoPR13811: Add a FunctionParmPackExpr node to handle references to function
Richard Smith [Wed, 12 Sep 2012 00:56:43 +0000 (00:56 +0000)]
PR13811: Add a FunctionParmPackExpr node to handle references to function
parameter packs where the reference is not being expanded but the pack has
been. Previously, Clang would segfault in such cases.

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

12 years agoMake clang emit a flag for DW_AT_object_pointer for the artificial
Eric Christopher [Wed, 12 Sep 2012 00:27:32 +0000 (00:27 +0000)]
Make clang emit a flag for DW_AT_object_pointer for the artificial
args where it should (implicit first arguments). FileCheck-ize a
test as well and update tests to take into account the object
pointer flag.

rdar://9797999

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

12 years ago[ms-inline asm] isDef/NumDefs in this context only refer to register definitions...
Chad Rosier [Tue, 11 Sep 2012 23:53:48 +0000 (23:53 +0000)]
[ms-inline asm] isDef/NumDefs in this context only refer to register definitions, not memory definitions.

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

12 years ago[ms-inline asm] As of r163657 this check is unnecessary.
Chad Rosier [Tue, 11 Sep 2012 23:48:00 +0000 (23:48 +0000)]
[ms-inline asm] As of r163657 this check is unnecessary.

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

12 years ago[ms-inline asm] Don't consider tokens or immediates when computing clobbers, inputs...
Chad Rosier [Tue, 11 Sep 2012 23:13:15 +0000 (23:13 +0000)]
[ms-inline asm] Don't consider tokens or immediates when computing clobbers, inputs and outputs.

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

12 years agoThread-safety analysis: fix bug in expression matching code.
DeLesley Hutchins [Tue, 11 Sep 2012 23:04:49 +0000 (23:04 +0000)]
Thread-safety analysis: fix bug in expression matching code.

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

12 years agoobjective-C: warn if selector has nothing but bare
Fariborz Jahanian [Tue, 11 Sep 2012 21:27:45 +0000 (21:27 +0000)]
objective-C: warn if selector has nothing but bare
':' in its name. // rdar://8366823

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

12 years agoRevert "[analyzer] Disable STL inlining. Blocked by PR13724."
Jordan Rose [Tue, 11 Sep 2012 20:26:49 +0000 (20:26 +0000)]
Revert "[analyzer] Disable STL inlining. Blocked by PR13724."

While PR13724 is still an issue, it's not actually an issue in the STL.
We can keep this option around in case there turn out to be widespread
false positives due to poor modeling of the C++ standard library functions,
but for now we'd like to get more data.

This reverts r163633 / c6baadceec1d5148c20ee6c902a102233c547f62.

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

12 years agoComment parsing: handle non-builtin commands correctly. After semantic
Dmitri Gribenko [Tue, 11 Sep 2012 19:22:03 +0000 (19:22 +0000)]
Comment parsing: handle non-builtin commands correctly.  After semantic
analysis registers a command, it becomes a "known" command for the lexer, since
it has an ID.  Having this freedom of choice to register a command is a good
thing since BriefParser does not need this.

But the parser should still invoke the correct semantic analysis method
(actOnUnknownCommand) in this case.

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

12 years ago[analyzer] Use the static type for a virtual call if the dynamic type is worse.
Jordan Rose [Tue, 11 Sep 2012 18:47:13 +0000 (18:47 +0000)]
[analyzer] Use the static type for a virtual call if the dynamic type is worse.

reinterpret_cast does not provide any of the usual type information that
static_cast or dynamic_cast provide -- only the new type. This can get us
in a situation where the dynamic type info for an object is actually a
superclass of the static type, which does not match what CodeGen does at all.
In these cases, just fall back to the static type as the best possible type
for devirtualization.

Should fix the crashes on our internal buildbot.

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

12 years agoFix warning from r163642
DeLesley Hutchins [Tue, 11 Sep 2012 18:32:12 +0000 (18:32 +0000)]
Fix warning from r163642

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

12 years agoThread safety analysis: fix bug related to lock_returned attribute
DeLesley Hutchins [Tue, 11 Sep 2012 18:27:46 +0000 (18:27 +0000)]
Thread safety analysis: fix bug related to lock_returned attribute
on templates.

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

12 years agoobjective-C: warn under a flag if missing argument
Fariborz Jahanian [Tue, 11 Sep 2012 17:24:26 +0000 (17:24 +0000)]
objective-C: warn under a flag if missing argument
name results in unintended selector name.
// rdar://12263549

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

12 years ago[analyzer] Disable STL inlining. Blocked by PR13724.
Anna Zaks [Tue, 11 Sep 2012 17:15:39 +0000 (17:15 +0000)]
[analyzer] Disable STL inlining. Blocked by PR13724.

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

12 years agoFix namespace nesting and remove windows line endings.
Rafael Espindola [Tue, 11 Sep 2012 14:17:47 +0000 (14:17 +0000)]
Fix namespace nesting and remove windows line endings.

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

12 years agoJust revert r163605 for now. It broke the build and had some
Chandler Carruth [Tue, 11 Sep 2012 10:40:21 +0000 (10:40 +0000)]
Just revert r163605 for now. It broke the build and had some
questionable elements to the patch.

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

12 years agoSelect the correct, or, failing that, compatible, dialect when invoked as cc,
David Chisnall [Tue, 11 Sep 2012 09:58:54 +0000 (09:58 +0000)]
Select the correct, or, failing that, compatible, dialect when invoked as cc,
c89, c99, and so on.  No change to the default dialect when invoked as clang /
clang++.

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

12 years agoSwitch a SmallPtrSet/SmallVector pair over to SetVector.
Douglas Gregor [Tue, 11 Sep 2012 07:19:42 +0000 (07:19 +0000)]
Switch a SmallPtrSet/SmallVector pair over to SetVector.

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

12 years agoRemove unused macro definition
Douglas Gregor [Tue, 11 Sep 2012 06:33:46 +0000 (06:33 +0000)]
Remove unused macro definition

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

12 years agoFix typo in comment
Douglas Gregor [Tue, 11 Sep 2012 06:30:16 +0000 (06:30 +0000)]
Fix typo in comment

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

12 years agoRemove some redundancy from constant aggregate emission. No functionality change.
Richard Smith [Tue, 11 Sep 2012 05:51:06 +0000 (05:51 +0000)]
Remove some redundancy from constant aggregate emission. No functionality change.

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

12 years ago[libclang] Fix getting a cursor inside an angled #include directive.
Argyrios Kyrtzidis [Tue, 11 Sep 2012 02:17:21 +0000 (02:17 +0000)]
[libclang] Fix getting a cursor inside an angled #include directive.

Fixed by pointing the end location of the preprocessed entity for the #include
at the closing '>', instead of the start of '<'.

rdar://11113134

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

12 years agoUpdate comment and space.
Eric Christopher [Tue, 11 Sep 2012 01:36:56 +0000 (01:36 +0000)]
Update comment and space.

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

12 years agoThe type of the self and cmd variables should be artificial. (Note
Eric Christopher [Tue, 11 Sep 2012 01:36:54 +0000 (01:36 +0000)]
The type of the self and cmd variables should be artificial. (Note
that the types aren't artificial the args are, but this is currently
represented by an artificial type.)

Found by inspection.

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

12 years ago[ms-inline asm] Add $$ before numeric constants in the IR.
Chad Rosier [Tue, 11 Sep 2012 00:51:28 +0000 (00:51 +0000)]
[ms-inline asm] Add $$ before numeric constants in the IR.

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

12 years agoFix buffer overflow.
Eli Friedman [Tue, 11 Sep 2012 00:36:26 +0000 (00:36 +0000)]
Fix buffer overflow.

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

12 years ago[analyzer] Member function calls that use qualified names are non-virtual.
Jordan Rose [Tue, 11 Sep 2012 00:31:02 +0000 (00:31 +0000)]
[analyzer] Member function calls that use qualified names are non-virtual.

C++11 [expr.call]p1: ...If the selected function is non-virtual, or if the
  id-expression in the class member access expression is a qualified-id,
  that function is called. Otherwise, its final overrider in the dynamic type
  of the object expression is called.

<rdar://problem/12255556>

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

12 years ago[analyzer] Turn stl inlining back on.
Anna Zaks [Mon, 10 Sep 2012 23:59:02 +0000 (23:59 +0000)]
[analyzer] Turn stl inlining back on.

The one reported bug, which was exposed by stl inlining, is addressed in
r163558.

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

12 years ago[analyzer] Do not count calls to small functions when computing stack
Anna Zaks [Mon, 10 Sep 2012 23:35:11 +0000 (23:35 +0000)]
[analyzer] Do not count calls to small functions when computing stack
depth.

We only want to count how many substantial functions we inlined. This
is an improvement to r163558.

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

12 years ago[PCH] Add a null check to avoid crashing.
Argyrios Kyrtzidis [Mon, 10 Sep 2012 23:28:22 +0000 (23:28 +0000)]
[PCH] Add a null check to avoid crashing.

Unfortunately, no test case. rdar://11960120

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

12 years agoProvide fixed target triples to make test results consistent across ARM hosts.
David Blaikie [Mon, 10 Sep 2012 23:06:08 +0000 (23:06 +0000)]
Provide fixed target triples to make test results consistent across ARM hosts.

Patch by David Tweed, review by myself and John McCall.

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

12 years ago[libclang] Do index 'extern' declarations inside functions.
Argyrios Kyrtzidis [Mon, 10 Sep 2012 22:58:04 +0000 (22:58 +0000)]
[libclang] Do index 'extern' declarations inside functions.

rdar://12257073

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