]> granicus.if.org Git - clang/log
clang
14 years agoTip of the day: save before commit.
Benjamin Kramer [Tue, 20 Apr 2010 11:55:38 +0000 (11:55 +0000)]
Tip of the day: save before commit.

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

14 years agoFix -Wcast-qual warnings.
Benjamin Kramer [Tue, 20 Apr 2010 11:50:39 +0000 (11:50 +0000)]
Fix -Wcast-qual warnings.

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

14 years agoIntroduce a limit on the depth of the template instantiation backtrace
Douglas Gregor [Tue, 20 Apr 2010 07:18:24 +0000 (07:18 +0000)]
Introduce a limit on the depth of the template instantiation backtrace
we will print with each error that occurs during template
instantiation. When the backtrace is longer than that, we will print
N/2 of the innermost backtrace entries and N/2 of the outermost
backtrace entries, then skip the middle entries with a note such as:

  note: suppressed 2 template instantiation contexts; use
  -ftemplate-backtrace-limit=N to change the number of template
  instantiation entries shown

This should eliminate some excessively long backtraces that aren't
providing any value.

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

14 years agoAdd test cases.
Zhongxing Xu [Tue, 20 Apr 2010 05:48:57 +0000 (05:48 +0000)]
Add test cases.

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

14 years agodon't slap noalias attribute on stret result arguments.
Chris Lattner [Tue, 20 Apr 2010 05:44:43 +0000 (05:44 +0000)]
don't slap noalias attribute on stret result arguments.
This mirror's Dan's patch for llvm-gcc in r97989, and
fixes the miscompilation in PR6525.  There is some contention
over whether this is the right thing to do, but it is the
conservative answer and demonstrably fixes a miscompilation.

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

14 years agoReplace code with a method call. No functionality change.
Zhongxing Xu [Tue, 20 Apr 2010 05:40:40 +0000 (05:40 +0000)]
Replace code with a method call. No functionality change.

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

14 years agoPass the nearest virtual base decl to InitializeVTablePointers. No functionality...
Anders Carlsson [Tue, 20 Apr 2010 05:22:15 +0000 (05:22 +0000)]
Pass the nearest virtual base decl to InitializeVTablePointers. No functionality change right now.

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

14 years agoreapply john's patch, he broke mainline again by changing the test.
Chris Lattner [Tue, 20 Apr 2010 05:19:10 +0000 (05:19 +0000)]
reapply john's patch, he broke mainline again by changing the test.

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

14 years agoAssert that the path from the derived to the base class in CodeGenFunction::GetAddres...
Anders Carlsson [Tue, 20 Apr 2010 05:07:22 +0000 (05:07 +0000)]
Assert that the path from the derived to the base class in CodeGenFunction::GetAddressOfBaseClass is not ambiguous.

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

14 years agoAltivec vector literal initializer count mismatch error removed.
John Thompson [Tue, 20 Apr 2010 05:01:46 +0000 (05:01 +0000)]
Altivec vector literal initializer count mismatch error removed.

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

14 years agoUse GetState() to get the possible cleaned state.
Zhongxing Xu [Tue, 20 Apr 2010 04:53:09 +0000 (04:53 +0000)]
Use GetState() to get the possible cleaned state.

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

14 years agogrr, lit only hates me, not the rest of the world.
Chris Lattner [Tue, 20 Apr 2010 04:33:06 +0000 (04:33 +0000)]
grr, lit only hates me, not the rest of the world.

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

14 years agorevert r101863, whcih is causing Sema/altivec-init.c to fail on a ton
Chris Lattner [Tue, 20 Apr 2010 04:31:55 +0000 (04:31 +0000)]
revert r101863, whcih is causing Sema/altivec-init.c to fail on a ton
of buildbots with:

error: 'error' diagnostics expected but not seen:
  Line 9: too few elements in vector initialization (expected 8 elements, have 2)
1 warning and 1 error generated.

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

14 years agoAltivec vector literal initializer count mismatch error removed.
John Thompson [Tue, 20 Apr 2010 03:58:33 +0000 (03:58 +0000)]
Altivec vector literal initializer count mismatch error removed.

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

14 years agoImprove handling of CXXNewExpr.
Zhongxing Xu [Tue, 20 Apr 2010 03:37:34 +0000 (03:37 +0000)]
Improve handling of CXXNewExpr.

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

14 years agoRestore r101841 without modification. Also mark 'operator delete' as used for
John McCall [Tue, 20 Apr 2010 02:18:25 +0000 (02:18 +0000)]
Restore r101841 without modification.  Also mark 'operator delete' as used for
actual delete expressions, not just new expressions.

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

14 years agoRevert r101841 and follow-up.
John McCall [Tue, 20 Apr 2010 01:42:53 +0000 (01:42 +0000)]
Revert r101841 and follow-up.

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

14 years agoadd __builtin_[r]index. Perhaps all LIBBUILTIN's should get
Chris Lattner [Tue, 20 Apr 2010 01:31:15 +0000 (01:31 +0000)]
add __builtin_[r]index.  Perhaps all LIBBUILTIN's should get
these or something?

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

14 years agoUse __SIZE_TYPE__ as suggested by dgregor.
John McCall [Tue, 20 Apr 2010 01:26:56 +0000 (01:26 +0000)]
Use __SIZE_TYPE__ as suggested by dgregor.

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

14 years agoDon't bother looking for (or diagnosing problems with) the 'operator delete'
John McCall [Tue, 20 Apr 2010 00:22:43 +0000 (00:22 +0000)]
Don't bother looking for (or diagnosing problems with) the 'operator delete'
associated with a new expression if -fno-exceptions is set.

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

14 years agoDo not diagnose unused-parameter errors in template instantiations. We
Douglas Gregor [Mon, 19 Apr 2010 23:56:20 +0000 (23:56 +0000)]
Do not diagnose unused-parameter errors in template instantiations. We
will already have done so when the template is declared.

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

14 years agoKeep track of the actual storage specifier written on a variable or
Douglas Gregor [Mon, 19 Apr 2010 22:54:31 +0000 (22:54 +0000)]
Keep track of the actual storage specifier written on a variable or
function declaration, since it may end up being changed (e.g.,
"extern" can become "static" if a prior declaration was static). Patch
by Enea Zaffanella and Paolo Bolzoni.

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

14 years agoOnly suppress the "extern variable has an initializer" warning when the extern entity...
Douglas Gregor [Mon, 19 Apr 2010 22:34:40 +0000 (22:34 +0000)]
Only suppress the "extern variable has an initializer" warning when the extern entity being initialized is const.

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

14 years agoDisable the "'extern' variable has an initializer" warning in C++,
Douglas Gregor [Mon, 19 Apr 2010 21:31:25 +0000 (21:31 +0000)]
Disable the "'extern' variable has an initializer" warning in C++,
since it makes sense there to have const extern variables. Fixes
PR6495.

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

14 years agoAST: Dump ASTRecordLayout objects when they are created with -fdump-record-layouts.
Daniel Dunbar [Mon, 19 Apr 2010 20:44:53 +0000 (20:44 +0000)]
AST: Dump ASTRecordLayout objects when they are created with -fdump-record-layouts.

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

14 years agoIRgen: Kill unused function and move the type match assert to after record dumping.
Daniel Dunbar [Mon, 19 Apr 2010 20:44:47 +0000 (20:44 +0000)]
IRgen: Kill unused function and move the type match assert to after record dumping.

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

14 years agoadd a PPCallback handler for a skipped #include, patch by
Chris Lattner [Mon, 19 Apr 2010 20:44:31 +0000 (20:44 +0000)]
add a PPCallback handler for a skipped #include, patch by
Zhanyong Wan!

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

14 years agoWhen normal name lookup to disambiguiate an Objective-C message send
Douglas Gregor [Mon, 19 Apr 2010 20:09:36 +0000 (20:09 +0000)]
When normal name lookup to disambiguiate an Objective-C message send
fails to find anything,  perform ivar lookup and, if we find one,
consider this an instance message.

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

14 years agoMore tests for Objective-C-related name lookup weirdness. Yes, it's
Douglas Gregor [Mon, 19 Apr 2010 19:10:40 +0000 (19:10 +0000)]
More tests for Objective-C-related name lookup weirdness. Yes, it's
weird; yes, it's what GCC does. Almost.

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

14 years agoAdd a testcase for PR6501 (too many/too few arguments to a function call).
Eric Christopher [Mon, 19 Apr 2010 18:39:43 +0000 (18:39 +0000)]
Add a testcase for PR6501 (too many/too few arguments to a function call).

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

14 years agoCheck for darwin befoer cheking for version.
Fariborz Jahanian [Mon, 19 Apr 2010 18:38:31 +0000 (18:38 +0000)]
Check for darwin befoer cheking for version.
(related to radar 7866951).

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

14 years agoMake this test darwin10 specific.
Fariborz Jahanian [Mon, 19 Apr 2010 18:27:05 +0000 (18:27 +0000)]
Make this test darwin10 specific.

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

14 years agoTemporarily XFAIL this test on windows.
Eric Christopher [Mon, 19 Apr 2010 18:26:40 +0000 (18:26 +0000)]
Temporarily XFAIL this test on windows.

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

14 years agoRemove the argument number from the constant integer diagnostic.
Eric Christopher [Mon, 19 Apr 2010 18:23:02 +0000 (18:23 +0000)]
Remove the argument number from the constant integer diagnostic.
Update all of the testcases accordingly.

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

14 years agoSome renaming of methods, fixes typo
Fariborz Jahanian [Mon, 19 Apr 2010 18:15:02 +0000 (18:15 +0000)]
Some renaming of methods, fixes typo
(related to PR6769).

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

14 years agoWhen searching for code-completion and typo-correction candidates,
Douglas Gregor [Mon, 19 Apr 2010 18:02:19 +0000 (18:02 +0000)]
When searching for code-completion and typo-correction candidates,
look from an Objective-C class or category to its implementation, to
pick up synthesized ivars. Fixes a problem reported by David
Chisnall.

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

14 years agoForce clang to produce legacy api for messaging
Fariborz Jahanian [Mon, 19 Apr 2010 17:53:30 +0000 (17:53 +0000)]
Force clang to produce legacy api for messaging
in for pre-snowleoprd (NeXt runtime). Fixes
radar 7866951

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

14 years agoAdd comment explaning the use of c99 inline in c++.
Rafael Espindola [Mon, 19 Apr 2010 16:58:20 +0000 (16:58 +0000)]
Add comment explaning the use of c99 inline in c++.

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

14 years agoFix -Wcast-qual warnings.
Dan Gohman [Mon, 19 Apr 2010 16:39:44 +0000 (16:39 +0000)]
Fix -Wcast-qual warnings.

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

14 years agoMove all C++ expression evaluation logic into its own file.
Zhongxing Xu [Mon, 19 Apr 2010 12:51:02 +0000 (12:51 +0000)]
Move all C++ expression evaluation logic into its own file.

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

14 years agoAnalyzer: add support for CXXNewExpr.
Zhongxing Xu [Mon, 19 Apr 2010 11:47:28 +0000 (11:47 +0000)]
Analyzer: add support for CXXNewExpr.

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

14 years agoDon't just emit ivar metadata - emit CORRECT ivar metadata. (GNU runtime)
David Chisnall [Mon, 19 Apr 2010 01:37:25 +0000 (01:37 +0000)]
Don't just emit ivar metadata - emit CORRECT ivar metadata. (GNU runtime)

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

14 years agoFix emitting ivar metadata for synthesized ivars and some 64-bit fixes. (GNU runtime)
David Chisnall [Mon, 19 Apr 2010 00:45:34 +0000 (00:45 +0000)]
Fix emitting ivar metadata for synthesized ivars and some 64-bit fixes. (GNU runtime)

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

14 years agoIf a method is virtual and the class key function is in another file, emit the method...
Rafael Espindola [Mon, 19 Apr 2010 00:44:22 +0000 (00:44 +0000)]
If a method is virtual and the class key function is in another file, emit the method as available_externally.
Fixes PR6747

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

14 years agoLocal static variables must be available module-wise
Fariborz Jahanian [Sun, 18 Apr 2010 21:01:23 +0000 (21:01 +0000)]
Local static variables must be available module-wise
as they are accessible in static methods in a class
local to the same function. Fixes PR6769.

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

14 years agorecommit r101568 to fix PR6766
Nuno Lopes [Sun, 18 Apr 2010 19:06:43 +0000 (19:06 +0000)]
recommit r101568 to fix PR6766
as a side-effect, remove two FIXMEs now fixed

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

14 years agoMake sure that we don't visit redeclarations of nested classes while
Douglas Gregor [Sun, 18 Apr 2010 18:11:38 +0000 (18:11 +0000)]
Make sure that we don't visit redeclarations of nested classes while
instantiating class members as part of an explicit
instantiation. Addresses a compilation problem in
Boost.Serialization.

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

14 years agoC++ [namespace.memdef]p3 only applies when the friend is not named via
Douglas Gregor [Sun, 18 Apr 2010 17:37:40 +0000 (17:37 +0000)]
C++ [namespace.memdef]p3 only applies when the friend is not named via
a qualified name. We weren't checking for an empty
nested-name-specifier when dealing with friend class templates
(although we were checking in the other places where we deal with this
paragraph). Fixes a Boost.Serialization showstopper.

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

14 years agotests: Don't force triple in x86-builtin-palignr test, this test should be
Daniel Dunbar [Sun, 18 Apr 2010 15:30:18 +0000 (15:30 +0000)]
tests: Don't force triple in x86-builtin-palignr test, this test should be
portable.

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

14 years agoBail out early to avoid comparing the internals of two conversion sequences of
Benjamin Kramer [Sun, 18 Apr 2010 12:05:54 +0000 (12:05 +0000)]
Bail out early to avoid comparing the internals of two conversion sequences of
different kinds (aka garbage). This happens if we're comparing a standard
conversion sequence to an ambiguous one which have the same KindRank.

Found by valgrind.

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

14 years agoWhen performing reference initialization for the purposes of overload
Douglas Gregor [Sun, 18 Apr 2010 09:22:00 +0000 (09:22 +0000)]
When performing reference initialization for the purposes of overload
resolution ([over.ics.ref]), we take some shortcuts required by the
standard that effectively permit binding of a const volatile reference
to an rvalue. We have to treat lightly here to avoid infinite
recursion.

Fixes PR6177.

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

14 years agoBinding a reference to an rvalue is a direct binding in C++0x but not
Douglas Gregor [Sun, 18 Apr 2010 08:46:23 +0000 (08:46 +0000)]
Binding a reference to an rvalue is a direct binding in C++0x but not
in C++03.

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

14 years agoFix the access checking of function and function template argument types,
Chandler Carruth [Sun, 18 Apr 2010 08:23:21 +0000 (08:23 +0000)]
Fix the access checking of function and function template argument types,
return types, and default arguments. This fixes PR6855 along with several
similar cases where we rejected valid code.

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

14 years agoWhen checking the copy constructor for the optional copy during a
Douglas Gregor [Sun, 18 Apr 2010 07:57:34 +0000 (07:57 +0000)]
When checking the copy constructor for the optional copy during a
reference binding to an rvalue of reference-compatible type, check
parameters after the first for complete parameter types and build any
required default function arguments. We're effectively simulating the
type-checking for a call without building the call itself.

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

14 years agoIn C++98/03, when binding a reference to an rvalue of
Douglas Gregor [Sun, 18 Apr 2010 07:40:54 +0000 (07:40 +0000)]
In C++98/03, when binding a reference to an rvalue of
reference-compatible type, the implementation is permitted to make a
copy of the rvalue (or many such copies, even). However, even though
we don't make that copy, we are required to check for the presence of
a suitable copy constructor. With this change, we do.

Note that in C++0x we are not allowed to make these copies, so we test
both dialects separately.

Also note the FIXME in one of the C++03 tests, where we are not
instantiating default function arguments for the copy constructor we
pick (but do not call). The fix is obvious; eliminating the infinite
recursion it causes is not. Will address that next.

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

14 years agoAdd testcase that I forgot for r101667 for gnu-keywords.
Chandler Carruth [Sun, 18 Apr 2010 06:12:13 +0000 (06:12 +0000)]
Add testcase that I forgot for r101667 for gnu-keywords.

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

14 years agoAllow the 'ibaction' attribute to be attached to method declarations (and not issue...
Ted Kremenek [Sun, 18 Apr 2010 04:59:38 +0000 (04:59 +0000)]
Allow the 'ibaction' attribute to be attached to method declarations (and not issue a warning).

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

14 years agoDo not consider explicit constructors when performing a copy to a
Douglas Gregor [Sun, 18 Apr 2010 02:16:12 +0000 (02:16 +0000)]
Do not consider explicit constructors when performing a copy to a
temporary object. This is blindingly obvious from reading C++
[over.match.ctor]p1, but somehow I'd missed it and it took DR152 to
educate me. Adjust one test that was relying on this non-standard
behavior.

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

14 years agoSimplify wide bit-field layout in CGRecordLayoutBuilder, and also fix a bug where...
Anders Carlsson [Sat, 17 Apr 2010 22:54:57 +0000 (22:54 +0000)]
Simplify wide bit-field layout in CGRecordLayoutBuilder, and also fix a bug where assigning to a bit-field member would overwrite other parts of the struct.

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

14 years agoImprove our handling of user-defined conversions as part of overload
Douglas Gregor [Sat, 17 Apr 2010 22:01:05 +0000 (22:01 +0000)]
Improve our handling of user-defined conversions as part of overload
resolution. There are two sources of problems involving user-defined
conversions that this change eliminates, along with providing simpler
interfaces for checking implicit conversions:

  - It eliminates a case of infinite recursion found in Boost.

  - It eliminates the search for the constructor needed to copy a temporary
    generated by an implicit conversion from overload
    resolution. Overload resolution assumes that, if it gets a value
    of the parameter's class type (or a derived class thereof), there
    is a way to copy if... even if there isn't. We now model this
    properly.

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

14 years agoFix an assert when assigning a boolean value to a bitfield of type _Bool.
Anders Carlsson [Sat, 17 Apr 2010 21:52:22 +0000 (21:52 +0000)]
Fix an assert when assigning a boolean value to a bitfield of type _Bool.

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

14 years agoUnnamed bit-fields in a union should be laid out with a type that doesn't affect...
Anders Carlsson [Sat, 17 Apr 2010 21:04:52 +0000 (21:04 +0000)]
Unnamed bit-fields in a union should be laid out with a type that doesn't affect alignment.

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

14 years agoFactor union field layout code out into a separate function. No functionality change.
Anders Carlsson [Sat, 17 Apr 2010 20:49:27 +0000 (20:49 +0000)]
Factor union field layout code out into a separate function. No functionality change.

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

14 years agoIf a wide bit-field is inside a union its offset should always be 0.
Anders Carlsson [Sat, 17 Apr 2010 20:21:41 +0000 (20:21 +0000)]
If a wide bit-field is inside a union its offset should always be 0.

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

14 years agoAdd support for '-fgnu-keywords' and '-fasm' to Clang's driver. They are not
Chandler Carruth [Sat, 17 Apr 2010 20:17:31 +0000 (20:17 +0000)]
Add support for '-fgnu-keywords' and '-fasm' to Clang's driver. They are not
implemented precisely the same as GCC, but the distinction GCC makes isn't
useful to represent. This allows parsing code which uses GCC-specific keywords
('asm', etc.) without parsing in a fully GNU mode.

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

14 years agoVtable -> VTable renames across the board.
Anders Carlsson [Sat, 17 Apr 2010 20:15:18 +0000 (20:15 +0000)]
Vtable -> VTable renames across the board.

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

14 years agoPrevent accidental in-source builds with CMake, and detect when there are
Chandler Carruth [Sat, 17 Apr 2010 20:12:02 +0000 (20:12 +0000)]
Prevent accidental in-source builds with CMake, and detect when there are
generated files from a previous in-source builds.

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

14 years agofix integrated assembler with i386 objc code.
Chris Lattner [Sat, 17 Apr 2010 18:26:20 +0000 (18:26 +0000)]
fix integrated assembler with i386 objc code.

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

14 years agoFix a bug where we would sometimes incorrectly mark an vtable function as unused.
Anders Carlsson [Sat, 17 Apr 2010 17:24:33 +0000 (17:24 +0000)]
Fix a bug where we would sometimes incorrectly mark an vtable function as unused.

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

14 years agoAdd printName to DeclarationName which prints the human-readable name on a
Benjamin Kramer [Sat, 17 Apr 2010 09:56:45 +0000 (09:56 +0000)]
Add printName to DeclarationName which prints the human-readable name on a
raw_ostream. Use it in getAsString and NamedDecl's raw_ostream operator.

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

14 years agoAdd raw_ostream operators to NamedDecl for convenience. Switch over all users of...
Benjamin Kramer [Sat, 17 Apr 2010 09:33:03 +0000 (09:33 +0000)]
Add raw_ostream operators to NamedDecl for convenience. Switch over all users of getNameAsString on a stream.

The next step is to print the name directly into the stream, avoiding a temporary std::string copy.

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

14 years agorevert r101568, which miscompiles this testcase, distilled from ldecod:
Chris Lattner [Sat, 17 Apr 2010 06:53:44 +0000 (06:53 +0000)]
revert r101568, which miscompiles this testcase, distilled from ldecod:

void exit_picture()
{
  char yuv_types[4][6]= {"4:0:0","4:2:0","4:2:2","4:4:4"};
  foo(yuv_types);
}

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

14 years agoDriver: Add missing claim() for -mllvm options.
Daniel Dunbar [Sat, 17 Apr 2010 06:10:00 +0000 (06:10 +0000)]
Driver: Add missing claim() for -mllvm options.

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

14 years agoNew test to verify that we see constant integers here.
Eric Christopher [Sat, 17 Apr 2010 02:36:08 +0000 (02:36 +0000)]
New test to verify that we see constant integers here.

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

14 years agoConsolidate most of the integer constant expression builtin requirement
Eric Christopher [Sat, 17 Apr 2010 02:26:23 +0000 (02:26 +0000)]
Consolidate most of the integer constant expression builtin requirement
checking into a single function and use that throughout. Remove some
now unnecessary diagnostics and update tests with now more accurate
diagnostics.

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

14 years agoWrap 'data' key in quotes.
Ted Kremenek [Sat, 17 Apr 2010 00:37:35 +0000 (00:37 +0000)]
Wrap 'data' key in quotes.

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

14 years agoMake script actually work.
Ted Kremenek [Sat, 17 Apr 2010 00:33:24 +0000 (00:33 +0000)]
Make script actually work.

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

14 years agoLog code completion data in json format.
Ted Kremenek [Sat, 17 Apr 2010 00:21:44 +0000 (00:21 +0000)]
Log code completion data in json format.

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

14 years agoSend code completion data in json format.
Ted Kremenek [Sat, 17 Apr 2010 00:21:42 +0000 (00:21 +0000)]
Send code completion data in json format.

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

14 years agoRemove unneeded assertion and don't return a null CXString.
Ted Kremenek [Sat, 17 Apr 2010 00:21:38 +0000 (00:21 +0000)]
Remove unneeded assertion and don't return a null CXString.

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

14 years agoemit warn_char_constant_too_large at most once per literal, fixing PR6852
Chris Lattner [Fri, 16 Apr 2010 23:44:05 +0000 (23:44 +0000)]
emit warn_char_constant_too_large at most once per literal, fixing PR6852

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

14 years agomake our existing "switch on bool" warning work for C. Since
Chris Lattner [Fri, 16 Apr 2010 23:34:13 +0000 (23:34 +0000)]
make our existing "switch on bool" warning work for C.  Since
the result of comparisons are 'int' in C, it doesn't work to
test just the result type of the expression.

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

14 years agoIf a non-noreturn virtual member function is guaranteed not to return,
Douglas Gregor [Fri, 16 Apr 2010 23:28:44 +0000 (23:28 +0000)]
If a non-noreturn virtual member function is guaranteed not to return,
do *not* suggest that the function could be attribute 'noreturn';
overridden functions may end up returning.

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

14 years agoSwitch Sema::FindCompositePointerType() over to InitializationSequence.
Douglas Gregor [Fri, 16 Apr 2010 23:20:25 +0000 (23:20 +0000)]
Switch Sema::FindCompositePointerType() over to InitializationSequence.

This is the last of the uses of TryImplicitConversion outside of
overload resolution and InitializationSequence itself.

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

14 years agofix PR6766: codegen of var initialized with wide char
Nuno Lopes [Fri, 16 Apr 2010 23:19:41 +0000 (23:19 +0000)]
fix PR6766: codegen of var initialized with wide char

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

14 years agoMove Sema::PerformImplicitConversion over to where Sema::TryImplicitConversion is...
Douglas Gregor [Fri, 16 Apr 2010 22:27:05 +0000 (22:27 +0000)]
Move Sema::PerformImplicitConversion over to where Sema::TryImplicitConversion is, for my own sanity. No functionality change

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

14 years agoMake Sema::BuildCXXCastArgument static, since it now only has one caller. No function...
Douglas Gregor [Fri, 16 Apr 2010 22:17:36 +0000 (22:17 +0000)]
Make Sema::BuildCXXCastArgument static, since it now only has one caller. No functionality change

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

14 years agoCollapse the three separate initialization paths in
Douglas Gregor [Fri, 16 Apr 2010 22:09:46 +0000 (22:09 +0000)]
Collapse the three separate initialization paths in
TryStaticImplicitCast (for references, class types, and everything
else, respectively) into a single invocation of
InitializationSequence.

One of the paths (for class types) was the only client of
Sema::TryInitializationByConstructor, which I have eliminated. This
also simplified the interface for much of the cast-checking logic,
eliminating yet more code.

I've kept the representation of C++ functional casts with <> 1
arguments the same, despite the fact that I hate it. That fix will
come soon. To satisfy my paranoia, I've bootstrapped + tested Clang
with these changes.

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

14 years agoRework USR generation for symbols with no linkage. Many of the USRs are now shortened,
Ted Kremenek [Fri, 16 Apr 2010 21:31:52 +0000 (21:31 +0000)]
Rework USR generation for symbols with no linkage.  Many of the USRs are now shortened,
and we now include the file name that declares the symbol with no linkage in the USR.
USRs for such symbols are generated only in restructed cases, e.g., anonymous enum declarations,
typedefs, etc.

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

14 years agoignore Output folder
Nuno Lopes [Fri, 16 Apr 2010 21:28:45 +0000 (21:28 +0000)]
ignore Output folder

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

14 years agoignore Output folder
Nuno Lopes [Fri, 16 Apr 2010 21:28:30 +0000 (21:28 +0000)]
ignore Output folder

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

14 years agoadd another test for the undef patch just for to have peace of mind :)
Nuno Lopes [Fri, 16 Apr 2010 21:19:39 +0000 (21:19 +0000)]
add another test for the undef patch just for to have peace of mind :)
this follows from C99 6.7.8p10: if it is a union, the first named member is initialized

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

14 years agofix a bogus assertion exposed by a recent change: packing the
Chris Lattner [Fri, 16 Apr 2010 21:02:32 +0000 (21:02 +0000)]
fix a bogus assertion exposed by a recent change: packing the
struct may cause it to shrink more than one byte.  Before
my recent changes we compiled the new test into:

%0 = type { [6 x i8] }
@x = global %0 { [6 x i8] undef }, align 2        ; <%0*> [#uses=0]

which is obviously bogus.  Now we compile it into:

%0 = type <{ i32, i8, i8 }>
@x = global %0 zeroinitializer, align 2           ; <%0*> [#uses=0]

Where the last byte only is tail padding.

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

14 years agoemit padding as undef values, take 2
Nuno Lopes [Fri, 16 Apr 2010 20:56:35 +0000 (20:56 +0000)]
emit padding as undef values, take 2
merge also a few tests I had here for this feature, and FileCheck'ize one file

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

14 years agoSwitch the checking of implicit casts for static_cast, C-style, and
Douglas Gregor [Fri, 16 Apr 2010 19:30:02 +0000 (19:30 +0000)]
Switch the checking of implicit casts for static_cast, C-style, and
functional casts over to InitializationSequence, eliminating a caller
of Sema::TryImplicitConversion. We also get access and ambiguity
checking "for free".

More cleanups to come in this routine.

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

14 years agoAdd a write(raw_ostream&) method to RewriteBuffer. This uses an inefficient
Nick Lewycky [Fri, 16 Apr 2010 18:49:45 +0000 (18:49 +0000)]
Add a write(raw_ostream&) method to RewriteBuffer. This uses an inefficient
implementation today but is the right place if we want to make it faster some
day.

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

14 years agoallow mapping fatal errors to errors.
Chris Lattner [Fri, 16 Apr 2010 18:39:52 +0000 (18:39 +0000)]
allow mapping fatal errors to errors.

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

14 years agoKill ForceRValue once and for all
Douglas Gregor [Fri, 16 Apr 2010 18:00:29 +0000 (18:00 +0000)]
Kill ForceRValue once and for all

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

14 years agoStatic analyzer: Don't crash when casting a symbolic region address to a float. ...
Ted Kremenek [Fri, 16 Apr 2010 17:54:33 +0000 (17:54 +0000)]
Static analyzer: Don't crash when casting a symbolic region address to a float.  Fixes PR 6854.

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

14 years agoEliminate the ForceRValue parameter from TryCopyInitialization.
Douglas Gregor [Fri, 16 Apr 2010 17:53:55 +0000 (17:53 +0000)]
Eliminate the ForceRValue parameter from TryCopyInitialization.

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