Mikhail Glushenkov
6027992ea9
Merge llvm-rst.css and llvm.css.
...
llvm-svn: 60984
2008-12-13 17:50:58 +00:00
Sebastian Redl
c675baba92
Some utilities for using the smart pointers in Actions, especially Sema. Convert a few functions.
...
llvm-svn: 60983
2008-12-13 16:23:55 +00:00
Sebastian Redl
cb6e2c6156
Convert remaining expression parsers to smart pointers. Now on to the Action connection.
...
llvm-svn: 60982
2008-12-13 15:32:12 +00:00
Sebastian Redl
19ed30be38
stdlib.h is the wrong header for printf, and introduces test-breaking definitions of inlines on Linux
...
llvm-svn: 60981
2008-12-13 15:31:28 +00:00
Cedric Venet
c41deefec7
Add /Za to all MSVC build of a clang libraries.
...
This allow to use the new move emulation for smart pointer by disabling language extension.
llvm-svn: 60979
2008-12-13 11:00:04 +00:00
Cedric Venet
13b3e7f217
Add explicit this-> for some member function in templated base class.
...
These call are probably dependent but VS with /Za don't seems to think so. We need to help him.
llvm-svn: 60978
2008-12-13 10:55:13 +00:00
Bill Wendling
293b9181e5
Temporarily revert r60973. It's inexplicably causing a failure when self-hosting LLVM:
...
llvm[2]: Linking Release executable opt (without symbols)
...
Undefined symbols:
"llvm::APFloat::IEEEsingle", referenced from:
__ZN4llvm7APFloat10IEEEsingleE$non_lazy_ptr in libLLVMCore.a(Constants.o)
__ZN4llvm7APFloat10IEEEsingleE$non_lazy_ptr in libLLVMCore.a(AsmWriter.o)
__ZN4llvm7APFloat10IEEEsingleE$non_lazy_ptr in libLLVMCore.a(ConstantFold.o)
"llvm::APFloat::IEEEdouble", referenced from:
__ZN4llvm7APFloat10IEEEdoubleE$non_lazy_ptr in libLLVMCore.a(Constants.o)
__ZN4llvm7APFloat10IEEEdoubleE$non_lazy_ptr in libLLVMCore.a(AsmWriter.o)
__ZN4llvm7APFloat10IEEEdoubleE$non_lazy_ptr in libLLVMCore.a(ConstantFold.o)
ld: symbol(s) not found
This is in release mode. To replicate, compile llvm and llvm-gcc in optimized
mode. Then build llvm, in optimized mode, with the newly created compiler.
llvm-svn: 60977
2008-12-13 09:28:44 +00:00
Torok Edwin
040688f1b2
Fix getFieldAs() to use the parameter instead of 6.
...
Add missing DIType constructor, needed by DIVariable::getType().
llvm-svn: 60976
2008-12-13 08:25:29 +00:00
Mon P Wang
472cd640fa
Remove assertion to allow promotion of a truncating store operand
...
llvm-svn: 60975
2008-12-13 08:16:43 +00:00
Mon P Wang
f95bd2078d
Added basic support for expanding VSETCC
...
llvm-svn: 60974
2008-12-13 08:15:14 +00:00
Chris Lattner
1e29f7c97d
make RLE preserve the name of the load that it replaces. This is just
...
a pretification of the IR.
llvm-svn: 60973
2008-12-13 07:22:47 +00:00
Duncan Sands
b6f09933c0
On big-endian machines it is wrong to do a full
...
width register load followed by a truncating
store for the copy, since the load will not place
the value in the lower bits. Probably partial
loads/stores can never happen here, but fix it
anyway.
llvm-svn: 60972
2008-12-13 07:18:38 +00:00
Misha Brukman
234b44add2
Fix spelling.
...
llvm-svn: 60971
2008-12-13 05:21:37 +00:00
Mikhail Glushenkov
afebaf96f9
Some more documentation tweaks.
...
llvm-svn: 60970
2008-12-13 03:11:37 +00:00
Mikhail Glushenkov
c0363fcba6
More cosmetic tweaks for llvmc docs.
...
llvm-svn: 60969
2008-12-13 02:28:58 +00:00
Devang Patel
146324f99c
Re-enable test.
...
llvm-svn: 60968
2008-12-12 22:42:35 +00:00
Ted Kremenek
877556f4b9
PTH: Added minor 'sibling jumping' optimization for iterating over the side table used for fast preprocessor block skipping. This has a minor performance improvement when preprocessing Cocoa.h, but can have some wins in pathologic cases.
...
llvm-svn: 60966
2008-12-12 22:05:38 +00:00
Devang Patel
42828e8168
Do not print empty DW_AT_comp_dir.
...
llvm-svn: 60965
2008-12-12 21:57:54 +00:00
Duncan Sands
8f352fe100
When expanding unaligned loads and stores do not make
...
use of illegal integer types: instead, use a stack slot
and copying via integer registers. The existing code
is still used if the bitconvert is to a legal integer
type.
This fires on the PPC testcases 2007-09-08-unaligned.ll
and vec_misaligned.ll. It looks like equivalent code
is generated with these changes, just permuted, but
it's hard to tell.
With these changes, nothing in LegalizeDAG produces
illegal integer types anymore. This is a prerequisite
for removing the LegalizeDAG type legalization code.
While there I noticed that the existing code doesn't
handle trunc store of f64 to f32: it turns this into
an i64 store, which represents a 4 byte stack smash.
I added a FIXME about this. Hopefully someone more
motivated than I am will take care of it.
llvm-svn: 60964
2008-12-12 21:47:02 +00:00
Bill Wendling
c4499feb1a
- Use patterns instead of creating completely new instruction matching patterns,
...
which are identical to the original patterns.
- Change the multiply with overflow so that we distinguish between signed and
unsigned multiplication. Currently, unsigned multiplication with overflow
isn't working!
llvm-svn: 60963
2008-12-12 21:15:41 +00:00
Steve Naroff
3b0da664bd
Fix <rdar://problem/6435837> clang ObjC rewriter: use Block_release instead of Block_destroy.
...
llvm-svn: 60962
2008-12-12 21:05:34 +00:00
Chris Lattner
6bf1db148c
fix a buggy fall through that caused a crash-on-invalid. rdar://6248081
...
llvm-svn: 60961
2008-12-12 19:20:14 +00:00
Daniel Dunbar
a4daf203fe
Add test case for using mmintrin (and making sure that inlining is
...
working with and without debug info).
llvm-svn: 60960
2008-12-12 19:12:02 +00:00
Devang Patel
5784ead8c7
XFAIL these tests for now.
...
llvm-svn: 60959
2008-12-12 19:08:08 +00:00
Evan Cheng
3270a1dec3
Fix add/sub expansion: don't create ADD / SUB with two results (seems like everyone is doing this these days :-). Patch by Daniel M Gessel!
...
llvm-svn: 60958
2008-12-12 18:49:09 +00:00
Daniel Dunbar
7b127324ce
Force i[0-9]86 to i386 when using LLVM_HOSTTRIPLE.
...
Only use major part of OS version when on darwin and modifying OS part
of target triple.
llvm-svn: 60957
2008-12-12 18:34:35 +00:00
Ted Kremenek
56572ab9e9
Added PTH optimization to not process entire blocks of tokens that appear in skipped preprocessor blocks. This improves PTH speed by 6%. The code for this optimization itself is not very optimized, and will get cleaned up.
...
llvm-svn: 60956
2008-12-12 18:34:08 +00:00
Ted Kremenek
ee87e0bd31
Enhance PTH preprocessor-condition-block side table to track #elseinformation as well.
...
llvm-svn: 60955
2008-12-12 18:31:09 +00:00
Chris Lattner
04397358ec
Implement the final (hopefully) wrinkle to i-c-e + builtin_constant_p
...
processing: it allows arbitrary foldable constants as the operand of ?: when
builtin_constant_p is the condition.
llvm-svn: 60954
2008-12-12 18:00:51 +00:00
Nick Lewycky
729bf137a8
Revert my re-instated reverted commit, fixes the bootstrap build on x86-64 linux.
...
llvm-svn: 60951
2008-12-12 17:09:07 +00:00
Douglas Gregor
4287b37389
Enable out-of-line definitions of C++ constructors and destructors
...
llvm-svn: 60947
2008-12-12 08:25:50 +00:00
Duncan Sands
e4bcb8e2dd
When using a 4 byte jump table on a 64 bit machine,
...
do an extending load of the 4 bytes rather than a
potentially illegal (type) i32 load followed by a
sign extend.
llvm-svn: 60945
2008-12-12 08:13:38 +00:00
Duncan Sands
dd6f3dbd05
Don't make use of an illegal type (i64) when
...
lowering f64 function arguments.
llvm-svn: 60944
2008-12-12 08:05:40 +00:00
Anders Carlsson
30032889ae
Implement allocation and sizeof VLAs. This is very basic for now.
...
llvm-svn: 60943
2008-12-12 07:38:43 +00:00
Chris Lattner
e141a9e225
rdar://6060752 - don't warn about trigraphs in bcpl-style comments
...
llvm-svn: 60942
2008-12-12 07:34:39 +00:00
Chris Lattner
ee99aa63ca
fix breakage I introduced in r60938
...
llvm-svn: 60941
2008-12-12 07:33:52 +00:00
Douglas Gregor
b9d2380204
Add test of enumerator types
...
llvm-svn: 60940
2008-12-12 07:27:10 +00:00
Anders Carlsson
ccbe9200f9
Add map of VLA types and their sizes
...
llvm-svn: 60939
2008-12-12 07:19:02 +00:00
Chris Lattner
dcba4a7713
silence warning in release-asserts mode about unused variable, also
...
move comment into assert message.
llvm-svn: 60938
2008-12-12 07:16:09 +00:00
Chris Lattner
89770575cd
fix thought-o
...
llvm-svn: 60937
2008-12-12 07:14:34 +00:00
Chris Lattner
4bf85ffe83
merge these testcases into one file.
...
llvm-svn: 60936
2008-12-12 07:01:24 +00:00
Chris Lattner
d260aa03b5
add a fixme.
...
llvm-svn: 60935
2008-12-12 06:57:03 +00:00
Chris Lattner
85b25bc344
implement rdar://6091492 - ?: with __builtin_constant_p as the operand is an i-c-e.
...
llvm-svn: 60934
2008-12-12 06:55:44 +00:00
Chris Lattner
10da53c60c
use smarter error recovery for do/while.
...
llvm-svn: 60933
2008-12-12 06:35:28 +00:00
Chris Lattner
c0081db332
apply the new error recovery smarts we have for if's to while's and switch's.
...
llvm-svn: 60932
2008-12-12 06:31:07 +00:00
Chris Lattner
fce12fdf6f
rename recovery-3 to recovery.c
...
llvm-svn: 60931
2008-12-12 06:21:41 +00:00
Chris Lattner
5b3ddc8ef9
merge recovery-1 into recovery-3.
...
llvm-svn: 60930
2008-12-12 06:21:18 +00:00
Chris Lattner
bc2d77cdf2
merge recovery-2.c into recovery-3.c.
...
Substantially improve error recovery after broken if conditions by
parsing the full if when we have a semantic error instead of using
parser recovery techniques to recover from a semantic error.
This fixes rdar://6094870 - spurious error after invalid 'if' condition
llvm-svn: 60929
2008-12-12 06:19:11 +00:00
Chris Lattner
d8980509b3
minor refactoring of ParseParenExpression
...
llvm-svn: 60928
2008-12-12 06:00:12 +00:00
Chris Lattner
dca17ceb19
add expected diag
...
llvm-svn: 60927
2008-12-12 05:59:56 +00:00