John McCall
826ca5630e
Every anonymous namespace is different. Caught by clang++.
...
llvm-svn: 91481
2009-12-16 00:15:28 +00:00
John McCall
323c30c5f4
Explicit template instantiations must happen in the template's immediately
...
enclosing namespace. Caught by clang++.
llvm-svn: 91480
2009-12-16 00:13:24 +00:00
Bill Wendling
2d5967d005
Helpful comment added. Some code cleanup. No functional change.
...
llvm-svn: 91479
2009-12-16 00:08:36 +00:00
Bill Wendling
3766491eee
Initialize uninitialized variables.
...
llvm-svn: 91477
2009-12-16 00:01:27 +00:00
Bill Wendling
776ef4dd32
Initialize uninitialized variables.
...
llvm-svn: 91475
2009-12-16 00:00:18 +00:00
Fariborz Jahanian
e8d28904b0
Diagnose attempting to assign to a sub-structure of an ivar
...
using objective-c property. (fixes radar 7449707)
llvm-svn: 91474
2009-12-15 23:59:41 +00:00
Ted Kremenek
9158fb748c
Remove ValueManager::getRegionValueSymbolValOrUnknown(). It was just extra veneer on top of getRegionValueSymbolVal().
...
llvm-svn: 91471
2009-12-15 23:23:27 +00:00
Jeffrey Yasskin
e0d8e14e11
Change indirect-globals to use a dedicated allocIndirectGV. This lets us
...
remove start/finishGVStub and the BufferState helper class from the
MachineCodeEmitter interface. It has the side-effect of not setting the
indirect global writable and then executable on ARM, but that shouldn't be
necessary.
llvm-svn: 91464
2009-12-15 22:42:46 +00:00
Bill Wendling
098a38b5ce
Some command lines don't like numbers with leading zeros. Remove them.
...
llvm-svn: 91463
2009-12-15 22:42:19 +00:00
John McCall
e9f92a017c
Link up member-class redeclarations during template instantiation.
...
This test courtesy of LLVM.
llvm-svn: 91462
2009-12-15 22:29:06 +00:00
Daniel Dunbar
5618e98f33
Update tests to use %clang instead of 'clang', and forcibly disable use of '
...
clang ' or ' clang -cc1 ' or ' clang-cc ' in test lines (by substituting them to
garbage).
llvm-svn: 91460
2009-12-15 22:01:24 +00:00
Bob Wilson
e44756d7c2
Reapply 91184 with fixes and an addition to the testcase to cover the problem
...
found last time. Instead of trying to modify the IR while iterating over it,
I've change it to keep a list of WeakVH references to dead instructions, and
then delete those instructions later. I also added some special case code to
detect and handle the situation when both operands of a memcpy intrinsic are
referencing the same alloca.
llvm-svn: 91459
2009-12-15 22:00:51 +00:00
Daniel Dunbar
c6d3c5ef76
lit: Improve error when gtest discovery fails.
...
llvm-svn: 91458
2009-12-15 22:00:37 +00:00
Fariborz Jahanian
2b9fc83db5
Fixes a code gen bug related to accessing a now
...
non-existing 'isa' field of a non-existing struct type
all related to legacy type definition for 'id' which we have
dropped in clang in favor of a built-in type.
(fixes radar 7470820).
llvm-svn: 91455
2009-12-15 21:34:52 +00:00
Anders Carlsson
6e997b2993
ShouldDestroyTemporaries? I don't think so.
...
llvm-svn: 91450
2009-12-15 20:51:39 +00:00
Chris Lattner
1316249ad2
enable reuse of MacroArgs objects. This is a small (2.5%) win
...
on PR5610 (2.185 -> 2.130s). The big issue is that this is making
insanely huge macro argument lists with over a million tokens in it.
The reason that mallco and free are so expensive is that we are
actually going to the kernel to get it, and switching to a bump
pointer allocator won't change this in an interesting way.
llvm-svn: 91449
2009-12-15 20:48:12 +00:00
Dan Gohman
c87c16b030
Revert 90628, which was incorrect.
...
llvm-svn: 91448
2009-12-15 20:21:44 +00:00
Daniel Dunbar
8fbe78f6fc
Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.
...
- This is designed to make it obvious that %clang_cc1 is a "test variable"
which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it
can be useful to redefine what gets run as 'clang -cc1' (for example, to set
a default target).
llvm-svn: 91446
2009-12-15 20:14:24 +00:00
Chris Lattner
a3aef788ec
Fix GetConstantStringInfo to not look into MDString (it works on
...
real data, not metadata) and fix DbgInfoPrinter to not abuse
GetConstantStringInfo.
llvm-svn: 91444
2009-12-15 19:34:20 +00:00
Jim Grosbach
38c4f4b5d1
whitespace
...
llvm-svn: 91442
2009-12-15 19:28:13 +00:00
Devang Patel
1f4690c624
Add support to emit debug info for C++ namespaces.
...
llvm-svn: 91440
2009-12-15 19:16:48 +00:00
Anders Carlsson
714d0969b3
If a ParmVarDecl's default argument is a CXXExprWithTemporaries, return the underlying expr instead. Add getNumDefaultArgTemporaries and getDefaultArgTemporary which returns the temporaries a default arg creates.
...
llvm-svn: 91439
2009-12-15 19:16:31 +00:00
Chris Lattner
26ab363361
optimize strstr, PR5783
...
llvm-svn: 91438
2009-12-15 19:14:40 +00:00
Nate Begeman
ac8183a830
Support OpenCL 1.1 odd-length vector component accessors.
...
For hi/odd of an odd-length vector, the last component is undefined. Since
we shuffle with an undef vector, no CodeGen needs to change to support this.
llvm-svn: 91437
2009-12-15 18:13:04 +00:00
Mike Stump
4ec1237106
Add testcase for recent checkin.
...
Patch by Chip Davis.
llvm-svn: 91436
2009-12-15 18:02:45 +00:00
Fariborz Jahanian
d1a2d5719a
Implement conditional block invocation rewrite
...
and some clean up and a block rewriter test.
llvm-svn: 91435
2009-12-15 17:30:20 +00:00
Johnny Chen
c28e629c2d
Added encoding bits for the Thumb ISA. Initial checkin.
...
llvm-svn: 91434
2009-12-15 17:24:14 +00:00
Douglas Gregor
906db8a546
Fix some diagnostic-related FIXMEs, from Nicola Gigante
...
llvm-svn: 91433
2009-12-15 16:44:32 +00:00
Dan Gohman
265ce318b8
Delete an unused function.
...
llvm-svn: 91432
2009-12-15 16:30:09 +00:00
Douglas Gregor
dce7d0e8d9
Elaborated types are specifier types, based on a patch from Cornelius
...
llvm-svn: 91431
2009-12-15 16:28:32 +00:00
Zhongxing Xu
765f3e4f35
Add comments.
...
llvm-svn: 91430
2009-12-15 09:32:42 +00:00
Zhongxing Xu
950978a44b
Remove displayProgress parameter.
...
llvm-svn: 91429
2009-12-15 09:09:49 +00:00
Chris Lattner
24aba42d04
add some other xforms that should be done as part of PR5783
...
llvm-svn: 91428
2009-12-15 09:05:13 +00:00
Chris Lattner
4179fa0357
a few improvements:
...
1. Use std::equal instead of reinventing it.
2. don't run dtors in destroy_range if element is pod-like.
3. Use isPodLike to decide between memcpy/uninitialized_copy
instead of is_class. isPodLike is more generous in some cases.
llvm-svn: 91427
2009-12-15 08:34:01 +00:00
Chris Lattner
6087a3e76b
hoist the begin/end/capacity members and a few trivial methods
...
up into the non-templated SmallVectorBase class.
llvm-svn: 91426
2009-12-15 08:29:22 +00:00
Chris Lattner
62e04783c0
improve isPodLike to know that all non-class types are pod.
...
llvm-svn: 91425
2009-12-15 07:40:44 +00:00
Chris Lattner
13b3928d62
move isPodLike<clang::QualType> out to Type.h. We don't
...
want some clients of QualType to think it's a pod and some to
not know it is.
llvm-svn: 91424
2009-12-15 07:30:12 +00:00
Chris Lattner
9c45e03664
Lang verified that SlotIndex is "pod like" even though it isn't a pod.
...
llvm-svn: 91423
2009-12-15 07:27:58 +00:00
Chris Lattner
2f3da9b205
update to match LLVM API change:
...
Remove isPod() from DenseMapInfo, splitting it out to its own
isPodLike type trait. This is a generally useful type trait for
more than just DenseMap, and we really care about whether something
acts like a pod, not whether it really is a pod.
llvm-svn: 91422
2009-12-15 07:26:51 +00:00
Chris Lattner
45d040bd85
Remove isPod() from DenseMapInfo, splitting it out to its own
...
isPodLike type trait. This is a generally useful type trait for
more than just DenseMap, and we really care about whether something
acts like a pod, not whether it really is a pod.
llvm-svn: 91421
2009-12-15 07:26:43 +00:00
Mikhail Glushenkov
66a664870b
Convert llvmc tests to FileCheck.
...
llvm-svn: 91420
2009-12-15 07:21:14 +00:00
Mikhail Glushenkov
62b65ecf18
Support hook invocation from 'append_cmd'.
...
llvm-svn: 91419
2009-12-15 07:20:50 +00:00
Evan Cheng
b3032962ef
Fix an encoding bug.
...
llvm-svn: 91417
2009-12-15 06:49:02 +00:00
Chris Lattner
a867a58a26
add an ALWAYS_INLINE macro, which does the obvious thing.
...
llvm-svn: 91416
2009-12-15 06:14:33 +00:00
Daniel Dunbar
f6da2951b6
Add -W[no-]variadic-macros support.
...
llvm-svn: 91415
2009-12-15 05:29:09 +00:00
Daniel Dunbar
3031aea9cd
Forward -isysroot to clang -cc1.
...
llvm-svn: 91414
2009-12-15 04:55:58 +00:00
Daniel Dunbar
95d40a6701
Fix a COVTCTII (crash-on-valid-that-clang-thinks-is-invalid, duh),
...
note_previous_decl was used where note_previous_declaration was intended. Better
names or PR5785 might be nice.
llvm-svn: 91413
2009-12-15 04:24:24 +00:00
Ted Kremenek
29f3808667
Until we can make the dead stores checker smarter, dont' emit dead store warnings for C++ objects (whose constructors/destructors have possible side-effects).
...
llvm-svn: 91412
2009-12-15 04:12:12 +00:00
Eli Friedman
2151725325
Fix a small bug in ComputeMethodVtableIndices.
...
llvm-svn: 91411
2009-12-15 03:31:17 +00:00
Kenneth Uildriks
792f0913ee
For fastcc on x86, let ECX be used as a return register after EAX and EDX
...
llvm-svn: 91410
2009-12-15 03:27:52 +00:00