]> granicus.if.org Git - clang/log
clang
14 years agoTweak zero-field width in scanf format string diagnostic.
Ted Kremenek [Fri, 16 Jul 2010 18:27:56 +0000 (18:27 +0000)]
Tweak zero-field width in scanf format string diagnostic.

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

14 years agoFirst baby steps towards PCHReader being able to keep track of multiple PCH files...
Sebastian Redl [Fri, 16 Jul 2010 17:50:48 +0000 (17:50 +0000)]
First baby steps towards PCHReader being able to keep track of multiple PCH files. WIP

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

14 years agoMake this destructor virtual to placate GCC's warnings.
Chandler Carruth [Fri, 16 Jul 2010 17:27:32 +0000 (17:27 +0000)]
Make this destructor virtual to placate GCC's warnings.

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

14 years agoFix up some of the visiting for array types -- we weren't good about
Craig Silverstein [Fri, 16 Jul 2010 17:06:12 +0000 (17:06 +0000)]
Fix up some of the visiting for array types -- we weren't good about
getting array indices before -- and for some of the builtin operators:
sizeof, offsetof, unaryops like __is_enum.

Also fix the function visitor to visit exception types in function
parameters.

Reviewed by wan and chandlerc.

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

14 years agoInitialize a couple of fields inherited for our private use.
John McCall [Fri, 16 Jul 2010 17:02:45 +0000 (17:02 +0000)]
Initialize a couple of fields inherited for our private use.

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

14 years agoWhen performing template name lookup for a dependent member access
Douglas Gregor [Fri, 16 Jul 2010 16:54:17 +0000 (16:54 +0000)]
When performing template name lookup for a dependent member access
expression such as the "foo" in "this->blah.foo<1, 2>", and we can't
look into the type of "this->blah" (e.g., because it is dependent),
look into the local scope of a template of the same name. Fixes
<rdar://problem/8198511>.

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

14 years agoAdd a little more data to chained PCHs. WIP
Sebastian Redl [Fri, 16 Jul 2010 16:36:56 +0000 (16:36 +0000)]
Add a little more data to chained PCHs. WIP

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

14 years agoRevert Microsoft-specific override of the "typedef requires a name"
Douglas Gregor [Fri, 16 Jul 2010 15:40:40 +0000 (15:40 +0000)]
Revert Microsoft-specific override of the "typedef requires a name"
diagnostic. Instead, put it and the "declaration does not declare
anything" warning into -Wmissing-declarations.

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

14 years agoSuppress the "typedef requires a name" warning in Microsoft-extensions mode
Douglas Gregor [Fri, 16 Jul 2010 15:18:19 +0000 (15:18 +0000)]
Suppress the "typedef requires a name" warning in Microsoft-extensions mode

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

14 years agoTreat template parameters as part of the declaration-specifiers for the
John McCall [Fri, 16 Jul 2010 08:13:16 +0000 (08:13 +0000)]
Treat template parameters as part of the declaration-specifiers for the
purpose of access control.  Fixes PR7644.

I can't actually find anything directly justifying this, but it seems obvious.

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

14 years agoMake this grossness default to the error it should always be.
Chandler Carruth [Fri, 16 Jul 2010 05:46:45 +0000 (05:46 +0000)]
Make this grossness default to the error it should always be.

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

14 years agoSema: Fix a bug with #pragma options align=reset, reset against an empty stack
Daniel Dunbar [Fri, 16 Jul 2010 04:54:16 +0000 (04:54 +0000)]
Sema: Fix a bug with #pragma options align=reset, reset against an empty stack
is well defined, it resets to the default alignment.

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

14 years agoButcher a perfectly reasonable diagnostic to pacify old versions of SWIG.
Chandler Carruth [Fri, 16 Jul 2010 04:32:28 +0000 (04:32 +0000)]
Butcher a perfectly reasonable diagnostic to pacify old versions of SWIG.

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

14 years agoAdd initial test cases for scanf format string checking.
Ted Kremenek [Fri, 16 Jul 2010 02:11:34 +0000 (02:11 +0000)]
Add initial test cases for scanf format string checking.

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

14 years agoAdd the main scanf-parsing logic that I meant to include in my previous commit.
Ted Kremenek [Fri, 16 Jul 2010 02:11:31 +0000 (02:11 +0000)]
Add the main scanf-parsing logic that I meant to include in my previous commit.

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

14 years agoAdd missing header file.
Ted Kremenek [Fri, 16 Jul 2010 02:11:26 +0000 (02:11 +0000)]
Add missing header file.

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

14 years agoAdd most of the boilerplate support for scanf format string checking. This includes
Ted Kremenek [Fri, 16 Jul 2010 02:11:22 +0000 (02:11 +0000)]
Add most of the boilerplate support for scanf format string checking.  This includes
handling the parsing of scanf format strings and hooking the checking into Sema.
Most of this checking logic piggybacks on what was already there for checking printf format
strings, but the checking logic has been refactored to support both.

What is left to be done is to support argument type checking in format strings and of course
fix the usual tail of bugs that will follow.

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

14 years agoAdd builtin definition for scanf, including extending the builtin encoding to
Ted Kremenek [Fri, 16 Jul 2010 02:11:15 +0000 (02:11 +0000)]
Add builtin definition for scanf, including extending the builtin encoding to
represent builtins that have the "scanf" attribution (via the format attribute) just
like we do with printf functions.  Follow-up work is needed to add similar support
for fscanf et al.

This is to support format-string checking for scanf functions.

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

14 years agoFix for PR3800: make sure not to evaluate the expression for a read-write
Eli Friedman [Fri, 16 Jul 2010 00:55:21 +0000 (00:55 +0000)]
Fix for PR3800: make sure not to evaluate the expression for a read-write
asm operand twice.

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

14 years agoBuiltins/ARM: __clear_cache doesn't seem to have a consistent prototype, declare
Daniel Dunbar [Fri, 16 Jul 2010 00:31:23 +0000 (00:31 +0000)]
Builtins/ARM: __clear_cache doesn't seem to have a consistent prototype, declare
the builtin as void __clear_cache(...) to workaround this, which appears to
match what GCC does.

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

14 years agoIRgen: Support user defined attributes on block runtime functions.
Daniel Dunbar [Fri, 16 Jul 2010 00:00:19 +0000 (00:00 +0000)]
IRgen: Support user defined attributes on block runtime functions.
 - This issue here is that /usr/include/Blocks.h wants to define some of the
   block runtime globals as weak, depending on the target. This doesn't work in
   Clang because we aren't using the AST decl for these globals.

 - The fix is a pretty gross hack which just watches all the decls for the
   specific blocks globals we need to know about; if we see one we use it,
   otherwise we use the hand coded type.

   In time, I would like to clean this up by changing IRgen to ask Sema/AST for
   the decl, which would then be lazily loaded from the builtin table if
   necessary. This could be used in a whole host of places in IRgen and would
   get rid of a lot of grotty hand coding of LLVM IR; however, we need some
   extra Sema support for this as well as support for builtin global variables.

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

14 years agoIRgen: Move blocks runtime interfaces to CodeGenModule.
Daniel Dunbar [Fri, 16 Jul 2010 00:00:15 +0000 (00:00 +0000)]
IRgen: Move blocks runtime interfaces to CodeGenModule.

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

14 years agoSuppress !+Asserts warning.
Daniel Dunbar [Fri, 16 Jul 2010 00:00:11 +0000 (00:00 +0000)]
Suppress !+Asserts warning.

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

14 years agoWhen deferring the emission of declarations with initializers in C++, remember
John McCall [Thu, 15 Jul 2010 23:40:35 +0000 (23:40 +0000)]
When deferring the emission of declarations with initializers in C++, remember
the order they appeared in the translation unit.  If they get emitted, put them
in their proper order.  Fixes rdar://problem/7458115

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

14 years agoSet "optimization is ON" and supply other optional parameters. This helps codegenerat...
Devang Patel [Thu, 15 Jul 2010 23:09:46 +0000 (23:09 +0000)]
Set "optimization is ON" and supply other optional parameters. This helps codegenerator preserve info in case the symbol is deleted.

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

14 years agoImprove test case. Thanks Eli
Douglas Gregor [Thu, 15 Jul 2010 23:04:05 +0000 (23:04 +0000)]
Improve test case. Thanks Eli

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

14 years agoDon't suppress the emission of available_externally functions marked
Douglas Gregor [Thu, 15 Jul 2010 22:58:18 +0000 (22:58 +0000)]
Don't suppress the emission of available_externally functions marked
with always_inline attribute. Thanks to Howard for the tip.

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

14 years agoMark implementation generated methods as artificial.
Devang Patel [Thu, 15 Jul 2010 22:57:00 +0000 (22:57 +0000)]
Mark implementation generated methods as artificial.
Tested by namespace.exp and virtfunc.exp from gdb testsuite.

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

14 years agoAfter some discussion, the ABI list settled on a much more sensible mangling
John McCall [Thu, 15 Jul 2010 21:53:03 +0000 (21:53 +0000)]
After some discussion, the ABI list settled on a much more sensible mangling
for string literals.

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

14 years agoWhen we're performing tentative parsing to determine whether the
Douglas Gregor [Thu, 15 Jul 2010 21:05:01 +0000 (21:05 +0000)]
When we're performing tentative parsing to determine whether the
parser is looking at a declaration or an expression, use a '=' to
conclude that we are parsing a declaration.

This is wrong. However, our previous approach of finding a comma after
the '=' is also wrong, because the ',' could be part of a
template-argument-list. So, for now we're going to use the same wrong
heuristic as GCC and Visual C++, because less real-world code is
likely to be broken this way. I've opened PR7655 to keep track of our
wrongness; note also the XFAIL'd test.

Fixes <rdar://problem/8193163>.

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

14 years agobuild/Darwin: Add missing Info.plist template.
Daniel Dunbar [Thu, 15 Jul 2010 20:26:56 +0000 (20:26 +0000)]
build/Darwin: Add missing Info.plist template.

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

14 years agobuild/Darwin: Enable version information for clang executable.
Daniel Dunbar [Thu, 15 Jul 2010 19:33:44 +0000 (19:33 +0000)]
build/Darwin: Enable version information for clang executable.

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

14 years agoReinstate the scalar-cast-to-const-reference improvements, this time
Douglas Gregor [Thu, 15 Jul 2010 18:58:16 +0000 (18:58 +0000)]
Reinstate the scalar-cast-to-const-reference improvements, this time
with the proper spelling of "non-class prvalue". Silly me, I think
class rvalues were xvalues rather than prvalues!

Hah hah hah.

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

14 years agoMake the "unused result" warning a warning about run-time behavior, so
Douglas Gregor [Thu, 15 Jul 2010 18:47:04 +0000 (18:47 +0000)]
Make the "unused result" warning a warning about run-time behavior, so
that we don't warn when there isn't going to be any computation anyway.

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

14 years agoRevert r108431 and r108433 (the cast-to-const-reference fixes), which
Douglas Gregor [Thu, 15 Jul 2010 18:41:54 +0000 (18:41 +0000)]
Revert r108431 and r108433 (the cast-to-const-reference fixes), which
broke nightlytest.

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

14 years agoAdd test case for PR5290; this bug was fixed with the non-class rvalue
Douglas Gregor [Thu, 15 Jul 2010 18:35:15 +0000 (18:35 +0000)]
Add test case for PR5290; this bug was fixed with the non-class rvalue
de-cv-qualification fixes.

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

14 years agoRevert 108220 and subsequent patch.
Devang Patel [Thu, 15 Jul 2010 18:16:09 +0000 (18:16 +0000)]
Revert 108220 and subsequent patch.
This is not required (I am not 100% sure why) but method.exp from gdb testsuite flagged regression due to this patch.

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

14 years agoSpell isPRValue() properly.
Douglas Gregor [Thu, 15 Jul 2010 18:12:28 +0000 (18:12 +0000)]
Spell isPRValue() properly.

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

14 years agoTeach CodeGenFunction::EmitCastLValue() to handle casts to an lvalue
Douglas Gregor [Thu, 15 Jul 2010 18:04:13 +0000 (18:04 +0000)]
Teach CodeGenFunction::EmitCastLValue() to handle casts to an lvalue
that involve binding a reference to a pure rvalue temporary (e.g., not
a class temporary), by creating a new temporary and copying the result
there. Fixes PR6024.

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

14 years agoCK_BitCast is not an lvalue bitcast any longer
Douglas Gregor [Thu, 15 Jul 2010 16:39:55 +0000 (16:39 +0000)]
CK_BitCast is not an lvalue bitcast any longer

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

14 years agoDriver/Darwin: Resolve deployment target defaulting to be more predictable;
Daniel Dunbar [Thu, 15 Jul 2010 16:18:06 +0000 (16:18 +0000)]
Driver/Darwin: Resolve deployment target defaulting to be more predictable;
assume we are targetting OS X unless an explicit option is given.

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

14 years agoDriver/Darwin: Allow -m{ios,macosx}-version-min= to be passed with -Xarch.
Daniel Dunbar [Thu, 15 Jul 2010 15:26:14 +0000 (15:26 +0000)]
Driver/Darwin: Allow -m{ios,macosx}-version-min= to be passed with -Xarch.
 - This should be safe, because the driver itself shouldn't need to make
   decisions that depend on the deployment target.

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

14 years agoCodeGen: Tweak ABI handling for Minix, patch by Kees van Reeuwijk!
Daniel Dunbar [Thu, 15 Jul 2010 15:02:28 +0000 (15:02 +0000)]
CodeGen: Tweak ABI handling for Minix, patch by Kees van Reeuwijk!

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

14 years agosee comment.
Chris Lattner [Thu, 15 Jul 2010 05:22:46 +0000 (05:22 +0000)]
see comment.

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

14 years agoDriver: Support 'clang -x ir ...'.
Daniel Dunbar [Thu, 15 Jul 2010 00:49:21 +0000 (00:49 +0000)]
Driver: Support 'clang -x ir ...'.

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

14 years agorestrict the && -> & warning to cover a case daniel noted.
Chris Lattner [Thu, 15 Jul 2010 00:26:43 +0000 (00:26 +0000)]
restrict the && -> & warning to cover a case daniel noted.
Don't warn about "logically bool" expressions on the RHS,
even if they fold to a constant.

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

14 years agoAdd a callback interface that allows interested parties to get notified whenever...
Sebastian Redl [Wed, 14 Jul 2010 23:45:08 +0000 (23:45 +0000)]
Add a callback interface that allows interested parties to get notified whenever PCHReader deserializes a type or decl (and possibly other things in the future). Have PCHWriter implement these callbacks as noops and register to receive them if we're chaining PCHs. This will allow PCHWriter to track the IDs of these things, which it needs to write the dependent files. WIP

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

14 years agoCodeGen/ObjC/NeXT: Fix Obj-C message send to match llvm-gcc when choosing
Daniel Dunbar [Wed, 14 Jul 2010 23:39:36 +0000 (23:39 +0000)]
CodeGen/ObjC/NeXT: Fix Obj-C message send to match llvm-gcc when choosing
whether to use objc_msgSend_fpret; the choice is target dependent, not Obj-C ABI
dependent.
 - <rdar://problem/8139758> arm objc _objc_msgSend_fpret bug

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

14 years agoThere is another implementation of PCHReaderListener around. Update it to the new...
Sebastian Redl [Wed, 14 Jul 2010 23:29:55 +0000 (23:29 +0000)]
There is another implementation of PCHReaderListener around. Update it to the new interface.

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

14 years agoWhen determining whether an overload set with explicit template
Douglas Gregor [Wed, 14 Jul 2010 23:20:53 +0000 (23:20 +0000)]
When determining whether an overload set with explicit template
arguments only resolves to a single specialization, make sure to look
through using declarations. Fixes PR7641.

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

14 years agoPass StringRefs by value.
Benjamin Kramer [Wed, 14 Jul 2010 23:19:41 +0000 (23:19 +0000)]
Pass StringRefs by value.

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

14 years agoWhen there are extra or missing template parameter lists in a template
Douglas Gregor [Wed, 14 Jul 2010 23:14:12 +0000 (23:14 +0000)]
When there are extra or missing template parameter lists in a template
definition, we're likely going to end up breaking the invariants of
the template system, e.g., that the depths of template parameter lists
match up with the nesting template of the template. So, make sure we
mark such ill-formed declarations as invalid or don't even build them
at all.

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

14 years agoAdd lvalue-bitcast support for complex numbers.
Douglas Gregor [Wed, 14 Jul 2010 21:35:45 +0000 (21:35 +0000)]
Add lvalue-bitcast support for complex numbers.

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

14 years agoIncrease the max PCH level for declarations to 7. Add a FromPCH flag to types.
Sebastian Redl [Wed, 14 Jul 2010 20:26:45 +0000 (20:26 +0000)]
Increase the max PCH level for declarations to 7. Add a FromPCH flag to types.

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

14 years agoDriver: When re'execing clang, use path to the main executable instead of
Daniel Dunbar [Wed, 14 Jul 2010 18:46:27 +0000 (18:46 +0000)]
Driver: When re'execing clang, use path to the main executable instead of
looking up Clang in the normal search paths (which may end up finding the wrong
clang).

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

14 years agoDriver: Remove some unused arguments.
Daniel Dunbar [Wed, 14 Jul 2010 18:46:23 +0000 (18:46 +0000)]
Driver: Remove some unused arguments.

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

14 years agoDon't error when doing default property synthesis
Fariborz Jahanian [Wed, 14 Jul 2010 18:11:52 +0000 (18:11 +0000)]
Don't error when doing default property synthesis
and some are already synthesized by user declaration.

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

14 years agoMake PCHReader cope with PCH files containing more than one predefines buffer.
Sebastian Redl [Wed, 14 Jul 2010 17:49:11 +0000 (17:49 +0000)]
Make PCHReader cope with PCH files containing more than one predefines buffer.

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

14 years agoOnly filter out names reserved for the implementation (e.g., __blah or
Douglas Gregor [Wed, 14 Jul 2010 17:44:04 +0000 (17:44 +0000)]
Only filter out names reserved for the implementation (e.g., __blah or
_Foo) from code-completion results when they come from a system
header.

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

14 years agoConsider obective-c pointer arguments as valid sentinel args
Fariborz Jahanian [Wed, 14 Jul 2010 16:37:51 +0000 (16:37 +0000)]
Consider obective-c pointer arguments as valid sentinel args
as well. Fixes radar 7975788.

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

14 years agoFix the mangling of template template arguments, which do not always
John McCall [Wed, 14 Jul 2010 06:43:17 +0000 (06:43 +0000)]
Fix the mangling of template template arguments, which do not always
follow <name>;  instead they follow <type>, which has <name> as a subset.

Fixes PR7446.

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

14 years agoWire up '-Wignored-qualifiers' to the warning on 'const' in 'const int f()'.
Chandler Carruth [Wed, 14 Jul 2010 06:36:18 +0000 (06:36 +0000)]
Wire up '-Wignored-qualifiers' to the warning on 'const' in 'const int f()'.
This flag and warning match GCC semantics. Also, move it to -Wextra as this is
a largely cosmetic issue and doesn't seem to mask problems. Subsequent fixes to
the tests which no longer by default emit the warning. Added explicit test
cases for both C and C++ behavior with the warning turned on.

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

14 years agoAdd test case that was causing an infinite loop when reading PCH files. The test...
Douglas Gregor [Wed, 14 Jul 2010 04:45:33 +0000 (04:45 +0000)]
Add test case that was causing an infinite loop when reading PCH files. The test works with ToT Clang already

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

14 years agoRemove a few mangling FIXMEs:
John McCall [Wed, 14 Jul 2010 04:38:21 +0000 (04:38 +0000)]
Remove a few mangling FIXMEs:
 - TSTs whose template is a template template parameter already work
 - we don't provide an imaginary type, so we can't mangle one
 - we don't need a generic FIXME for vendor type qualifiers

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

14 years agoImplement the standard mangling for array-subscript expressions, and implement
John McCall [Wed, 14 Jul 2010 04:20:34 +0000 (04:20 +0000)]
Implement the standard mangling for array-subscript expressions, and implement
the current proposals from David Vandervoorde for new, delete, throw, typeid,
imaginary literals, string literals, and null literals.

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

14 years agoFix typo in test program
Douglas Gregor [Wed, 14 Jul 2010 00:09:17 +0000 (00:09 +0000)]
Fix typo in test program

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

14 years agoDriver/Darwin: Pass -pie/-no_pie to the linker when -fpie/-fno-pie and friends
Daniel Dunbar [Tue, 13 Jul 2010 23:31:40 +0000 (23:31 +0000)]
Driver/Darwin: Pass -pie/-no_pie to the linker when -fpie/-fno-pie and friends
are explicitly given.

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

14 years agoAdd missing testcases for lvalue bitcasts
Douglas Gregor [Tue, 13 Jul 2010 23:27:15 +0000 (23:27 +0000)]
Add missing testcases for lvalue bitcasts

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

14 years agoWork around an obnoxious GCC warning by changing semantics in a hopefully-
John McCall [Tue, 13 Jul 2010 23:19:49 +0000 (23:19 +0000)]
Work around an obnoxious GCC warning by changing semantics in a hopefully-
harmless way.

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

14 years agoIntroduce a new cast kind for an "lvalue bitcast", which handles
Douglas Gregor [Tue, 13 Jul 2010 23:17:26 +0000 (23:17 +0000)]
Introduce a new cast kind for an "lvalue bitcast", which handles
reinterpret_casts (possibly indirectly via C-style/functional casts)
on values, e.g.,

  int i;
  reinterpret_cast<short&>(i);

The IR generated for this is essentially the same as for

  *reinterpret_cast<short*>(&i).

Fixes PR6437, PR7593, and PR7344.

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

14 years agoAdd __builtin_snprintf.
Nick Lewycky [Tue, 13 Jul 2010 22:35:05 +0000 (22:35 +0000)]
Add __builtin_snprintf.

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

14 years agoSwitch the __cxa_rethrow cleanup to be lazy.
John McCall [Tue, 13 Jul 2010 22:24:23 +0000 (22:24 +0000)]
Switch the __cxa_rethrow cleanup to be lazy.

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

14 years agoAllow for the possibility that __cxa_end_catch might throw for a catch-all block
John McCall [Tue, 13 Jul 2010 22:12:14 +0000 (22:12 +0000)]
Allow for the possibility that __cxa_end_catch might throw for a catch-all block
or a catch of a record type by value or reference.  Also convert this to a
lazy cleanup.

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

14 years agoCheck on property attributes which are declared
Fariborz Jahanian [Tue, 13 Jul 2010 22:04:56 +0000 (22:04 +0000)]
Check on property attributes which are declared
in class extensions (radar 8171968).

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

14 years agoSwitch the __cxa_free_exception cleanup to be lazy.
John McCall [Tue, 13 Jul 2010 21:17:51 +0000 (21:17 +0000)]
Switch the __cxa_free_exception cleanup to be lazy.

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

14 years agoSet DeclContext of ParamVarDecl only. No need
Fariborz Jahanian [Tue, 13 Jul 2010 21:05:02 +0000 (21:05 +0000)]
Set DeclContext of ParamVarDecl only. No need
to set that of VarDecl for block variables
(they are already set). Per Doug's comment.

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

14 years agoTeach IR generation how to lazily emit cleanups. This has a lot of advantages,
John McCall [Tue, 13 Jul 2010 20:32:21 +0000 (20:32 +0000)]
Teach IR generation how to lazily emit cleanups.  This has a lot of advantages,
mostly in avoiding unnecessary work at compile time but also in producing more
sensible block orderings.

Move the destructor cleanups for local variables over to use lazy cleanups.
Eventually all cleanups will do this;  for now we have some awkward code
duplication.

Tell IR generation just to never produce landing pads in -fno-exceptions.
This is a much more comprehensive solution to a problem which previously was
half-solved by checks in most cleanup-generation spots.

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

14 years agoAdd two small utility functions to PCHReader that the writer will use. WIP.
Sebastian Redl [Tue, 13 Jul 2010 20:12:07 +0000 (20:12 +0000)]
Add two small utility functions to PCHReader that the writer will use. WIP.

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

14 years agoMore block instantiation stuff. Set variable/param DeclContext
Fariborz Jahanian [Tue, 13 Jul 2010 20:05:58 +0000 (20:05 +0000)]
More block instantiation stuff. Set variable/param DeclContext
to block context when first instantiating them.

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

14 years agoAdd a warning to catch a bug recently caught by code review, like this:
Chris Lattner [Tue, 13 Jul 2010 19:41:32 +0000 (19:41 +0000)]
Add a warning to catch a bug recently caught by code review, like this:
t2.c:2:12: warning: use of logical && with constant operand; switch to bitwise &
      or remove constant [-Wlogical-bitwise-confusion]
  return x && 4;
           ^  ~

wording improvement suggestions are welcome.

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

14 years ago80 column issues.
Chris Lattner [Tue, 13 Jul 2010 19:22:31 +0000 (19:22 +0000)]
80 column issues.

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

14 years agoWhenever we're creating an expression that is typically an rvalue
Douglas Gregor [Tue, 13 Jul 2010 18:40:04 +0000 (18:40 +0000)]
Whenever we're creating an expression that is typically an rvalue
(e.g., a call, cast, etc.), immediately adjust the expression's type
to strip cv-qualifiers off of all non-class types (in C++) or all
types (in C). This effectively extends my previous fix for PR7463,
which was restricted to calls, to other kinds of expressions within
similar characteristics. I've audited every use of
getNonReferenceType() in the code base, switching to the newly-renamed
getNonLValueExprType() where necessary.

Big thanks to Eli for pointing out just how incomplete my original fix
for PR7463 actually was. We've been handling cv-qualifiers on rvalues
wrong for a very, very long time. Fixes PR7463.

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

14 years agoSilence Doug's favorite GCC warning.
Chandler Carruth [Tue, 13 Jul 2010 17:07:17 +0000 (17:07 +0000)]
Silence Doug's favorite GCC warning.

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

14 years agoAdd volatile qualifiers for "this".
Devang Patel [Tue, 13 Jul 2010 16:23:13 +0000 (16:23 +0000)]
Add volatile qualifiers for "this".

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

14 years agoProperly add to 32
Douglas Gregor [Tue, 13 Jul 2010 15:57:00 +0000 (15:57 +0000)]
Properly add to 32

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

14 years agoDowngrade the "when type is in parentheses, array cannot have dynamic
Douglas Gregor [Tue, 13 Jul 2010 15:54:32 +0000 (15:54 +0000)]
Downgrade the "when type is in parentheses, array cannot have dynamic
size" error for code like

  new (int [size])

to a warning, add a Fix-It to remove the parentheses, and make this
diagnostic work properly when it occurs in a template
instantiation. <rdar://problem/8018245>.

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

14 years agoModify the pragma handlers to accept and use StringRefs instead of IdentifierInfos.
Argyrios Kyrtzidis [Tue, 13 Jul 2010 09:07:17 +0000 (09:07 +0000)]
Modify the pragma handlers to accept and use StringRefs instead of IdentifierInfos.

When loading the PCH, IdentifierInfos that are associated with pragmas cause declarations that use these identifiers to be deserialized (e.g. the "clang" pragma causes the "clang" namespace to be loaded).
We can avoid this if we just use StringRefs for the pragmas.

As a bonus, since we don't have to create and pass IdentifierInfos, the pragma interfaces get a bit more simplified.

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

14 years agoImprove diagnostics for the "type qualifier on return type has no
Douglas Gregor [Tue, 13 Jul 2010 08:50:30 +0000 (08:50 +0000)]
Improve diagnostics for the "type qualifier on return type has no
effect warning" by printing the qualifiers we saw and correctly
pluralizing the message, e.g.,

test/SemaCXX/conditional-expr.cpp:295:3: warning: 'const volatile' type
      qualifiers on return type have no effect
  const volatile Enum g2() {
  ^~~~~ ~~~~~~~~

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

14 years agoWhen computing the canonical profile of a DeclRefExpr or MemberExpr,
Douglas Gregor [Tue, 13 Jul 2010 08:37:11 +0000 (08:37 +0000)]
When computing the canonical profile of a DeclRefExpr or MemberExpr,
don't include the nested-name-specifier or template arguments: they
were only relevant when resolving the declaration. Fixes PR7460.

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

14 years agoWhen forming a function call or message send expression, be sure to
Douglas Gregor [Tue, 13 Jul 2010 08:18:22 +0000 (08:18 +0000)]
When forming a function call or message send expression, be sure to
strip cv-qualifiers from the expression's type when the language calls
for it: in C, that's all the time, while C++ only does it for
non-class types.

Centralized the computation of the call expression type in
QualType::getCallResultType() and some helper functions in other nodes
(FunctionDecl, ObjCMethodDecl, FunctionType), and updated all relevant
callers of getResultType() to getCallResultType().

Fixes PR7598 and PR7463, along with a bunch of getResultType() call
sites that weren't stripping references off the result type (nothing
stripped cv-qualifiers properly before this change).

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

14 years agoDiagnose typedef of an operator name. Fixes PR7462
Douglas Gregor [Tue, 13 Jul 2010 06:37:01 +0000 (06:37 +0000)]
Diagnose typedef of an operator name. Fixes PR7462

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

14 years agoCheck in this -Wconversion C++ test case that's been sitting on my machine
John McCall [Tue, 13 Jul 2010 06:26:23 +0000 (06:26 +0000)]
Check in this -Wconversion C++ test case that's been sitting on my machine
for awhile.

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

14 years agoComplain when an unnamed enumeration has no enumerations (in
Douglas Gregor [Tue, 13 Jul 2010 06:24:26 +0000 (06:24 +0000)]
Complain when an unnamed enumeration has no enumerations (in
C++). Fixes PR7466.

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

14 years agoReinstate the optimization suppressing available_externally functions
Douglas Gregor [Tue, 13 Jul 2010 06:02:28 +0000 (06:02 +0000)]
Reinstate the optimization suppressing available_externally functions
at -O0. The only change from the previous patch is that we don't try
to generate virtual method thunks for an available_externally
function.

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

14 years agoconst qualify debug info for "this" for const methods.
Devang Patel [Tue, 13 Jul 2010 00:24:30 +0000 (00:24 +0000)]
const qualify debug info for "this" for const methods.

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

14 years agoInstantiate attributes when first building an instantiated
Fariborz Jahanian [Tue, 13 Jul 2010 00:16:40 +0000 (00:16 +0000)]
Instantiate attributes when first building an instantiated
VarDecl.

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

14 years agoProvide a special diagnostic for attempts to explicitly specialize
Douglas Gregor [Tue, 13 Jul 2010 00:10:04 +0000 (00:10 +0000)]
Provide a special diagnostic for attempts to explicitly specialize
class templates within class scope (which is ill-formed), and recover
by dropping the explicit specialization entirely. Fixes the infinite
loop in PR7622.

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

14 years agoFix a documentation paste-o and eliminate a useless function parameter, both found...
Douglas Gregor [Mon, 12 Jul 2010 23:48:14 +0000 (23:48 +0000)]
Fix a documentation paste-o and eliminate a useless function parameter, both found by Sebastian

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

14 years agoWe should not be recursing over the shadow definitions in UsingDecl --
Craig Silverstein [Mon, 12 Jul 2010 23:30:43 +0000 (23:30 +0000)]
We should not be recursing over the shadow definitions in UsingDecl --
they're not something the user typed (at least, not here).

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

14 years agoProduce an error on encountering a pointer or reference to a qualified function type...
Sebastian Redl [Mon, 12 Jul 2010 23:11:43 +0000 (23:11 +0000)]
Produce an error on encountering a pointer or reference to a qualified function type. Fixes PR7470.

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