- Mar 05, 2010
-
-
Duncan Sands authored
llvm-svn: 97796
-
Chris Lattner authored
compares, noticed by inspection. llvm-svn: 97795
-
Chris Lattner authored
in a very specific use pattern embodied in the carefully reduced testcase. llvm-svn: 97794
-
Eric Christopher authored
No functionality change. llvm-svn: 97793
-
Jeffrey Yasskin authored
llvm-svn: 97792
-
Chris Lattner authored
node which has a flag. That flag in turn was used by an already-selected adde which turned into an ADC32ri8 which used a selected load which was chained to the load we folded. This flag use caused us to form a cycle. Fix this by not ignoring chains in IsLegalToFold even in cases where the isel thinks it can. llvm-svn: 97791
-
Chris Lattner authored
llvm-svn: 97790
-
Chris Lattner authored
llvm-svn: 97789
-
Jeffrey Yasskin authored
llvm-svn: 97788
-
Mikhail Glushenkov authored
As in 'llvmc -O2 -O2 test.c'. llvm-svn: 97787
-
Mikhail Glushenkov authored
Allows us to find executables that are in the same directory. llvm-svn: 97786
-
Zhongxing Xu authored
information in ExplodedNode. llvm-svn: 97785
-
Evan Cheng authored
llvm-svn: 97782
-
Dan Gohman authored
llvm-svn: 97781
-
Chris Lattner authored
llvm-svn: 97780
-
Dan Gohman authored
llvm-svn: 97779
-
Dan Gohman authored
rounding correctly. This implementation is a generalization of the x86_64 code in compiler-rt. This fixes rdar://7683708. llvm-svn: 97778
-
Fariborz Jahanian authored
test case. llvm-svn: 97777
-
Johnny Chen authored
llvm-svn: 97776
-
Blaine Garst authored
add support for a 1<<29 bit in the block flags field to mark blocks using alternate struct return ABI llvm-svn: 97775
-
Evan Cheng authored
Add missing break for Intrinsic::objectsize case. It was falling through to the following Intrinsic::bswap code. I have no idea why it wasn't breaking stuff. llvm-svn: 97774
-
Rafael Espindola authored
This fixes bootstrap on ELF systems :-) llvm-svn: 97773
-
Chris Lattner authored
llvm-svn: 97772
-
Chris Lattner authored
Don't build any of the dynamic library stuff on cygwin/mingw. llvm-svn: 97771
-
Chris Lattner authored
llvm-svn: 97770
-
Chris Lattner authored
llvm-svn: 97769
-
Bill Wendling authored
llvm-svn: 97768
-
Douglas Gregor authored
trigger access control or one of the many assertions we have for valid access specifiers. llvm-svn: 97767
-
Bill Wendling authored
This code: float floatingPointComparison(float x, float y) { double product = (double)x * y; if (product == 0.0) return product; return product - 1.0; } produces this: _floatingPointComparison: 0000000000000000 cvtss2sd %xmm1,%xmm1 0000000000000004 cvtss2sd %xmm0,%xmm0 0000000000000008 mulsd %xmm1,%xmm0 000000000000000c pxor %xmm1,%xmm1 0000000000000010 ucomisd %xmm1,%xmm0 0000000000000014 jne 0x00000004 0000000000000016 jp 0x00000002 0000000000000018 jmp 0x00000008 000000000000001a addsd 0x00000006(%rip),%xmm0 0000000000000022 cvtsd2ss %xmm0,%xmm0 0000000000000026 ret The "jne/jp/jmp" sequence can be reduced to this instead: _floatingPointComparison: 0000000000000000 cvtss2sd %xmm1,%xmm1 0000000000000004 cvtss2sd %xmm0,%xmm0 0000000000000008 mulsd %xmm1,%xmm0 000000000000000c pxor %xmm1,%xmm1 0000000000000010 ucomisd %xmm1,%xmm0 0000000000000014 jp 0x00000002 0000000000000016 je 0x00000008 0000000000000018 addsd 0x00000006(%rip),%xmm0 0000000000000020 cvtsd2ss %xmm0,%xmm0 0000000000000024 ret for a savings of 2 bytes. This xform can happen when we recognize that jne and jp jump to the same "true" MBB, the unconditional jump would jump to the "false" MBB, and the "true" branch is the fall-through MBB. llvm-svn: 97766
-
Dale Johannesen authored
llvm-svn: 97765
-
Devang Patel authored
llvm-svn: 97764
-
Jeffrey Yasskin authored
llvm-svn: 97763
-
Fariborz Jahanian authored
llvm-svn: 97762
-
Fariborz Jahanian authored
llvm-svn: 97761
-
- Mar 04, 2010
-
-
Johnny Chen authored
of either sxtb16 or uxtb16, and the unified syntax does not specify ".w". llvm-svn: 97760
-
Jeffrey Yasskin authored
positive where pointers would be leaked on llvm_shutdown. llvm-svn: 97759
-
Jim Grosbach authored
as nounwind are marked with a -1 call-site value. This is necessary to, for example, correctly process exceptions thrown from within an "unexpected" execption handler (see SingleSource/Regression/C++/EH/expection_spec_test.cpp). llvm-svn: 97757
-
Fariborz Jahanian authored
llvm-svn: 97756
-
Bob Wilson authored
frame pointer. llvm-svn: 97755
-
Fariborz Jahanian authored
on a block API struct definition. llvm-svn: 97754
-