- Feb 07, 2013
-
-
Meador Inge authored
PR15138 was opened because of a segfault in the Bitcode writer. The actual issue ended up being a bug in APInt where calls to APInt::getActiveWords returns a bogus value when the APInt value is 0. This patch fixes the problem by ensuring that getActiveWords returns 1 for 0 valued APInts. llvm-svn: 174641
-
Chad Rosier authored
llvm-svn: 174640
-
Michael J. Spencer authored
llvm-svn: 174639
-
rdar://problem/13107151Enrico Granata authored
SBValueList was backed by a ValueObjectList. This caused us to lose track of the additional metadata in the ValueImpl that backs SBValue. This checkin fixes that by backing SBValueList with ValueListImpl (that essentially wraps a vector<SBValue>). llvm-svn: 174638
-
Marshall Clow authored
llvm-svn: 174637
-
Marshall Clow authored
llvm-svn: 174636
-
Dmitry Vyukov authored
llvm-svn: 174635
-
Tom Stellard authored
Patch by: Michel Dänzer Signed-off-by:
Michel Dänzer <michel.daenzer@amd.com> Reviewed-by:
Tom Stellard <thomas.stellard@amd.com> llvm-svn: 174634
-
Tom Stellard authored
Handle vectors of 1 to 16 integers. Change the intrinsic names to prevent the wrong one from being selected at runtime due to the overloading. Patch By: Michel Dänzer Signed-off-by:
Michel Dänzer <michel.daenzer@amd.com> Reviewed-by:
Tom Stellard <thomas.stellard@amd.com> llvm-svn: 174633
-
Tom Stellard authored
v1i32, v2i32, v8i32 and v16i32. Only add VGPR register classes for integer vector types, to avoid attempts copying from VGPR to SGPR registers, which is not possible. Patch By: Michel Dänzer Signed-off-by:
Michel Dänzer <michel.daenzer@amd.com> Reviewed-by:
Tom Stellard <thomas.stellard@amd.com> llvm-svn: 174632
-
Arnold Schwaighofer authored
Vector selects are cheap on NEON. They get lowered to a vbsl instruction. radar://13158753 llvm-svn: 174631
-
Guy Benyei authored
llvm-svn: 174630
-
Alexander Potapenko authored
See https://code.google.com/p/address-sanitizer/issues/detail?id=10 for the context. llvm-svn: 174629
-
Alexander Potapenko authored
Enable AddressSanitizer.AllocDeallocMismatch tests. llvm-svn: 174628
-
Tim Northover authored
llvm-svn: 174627
-
Alexander Potapenko authored
Also fix large_func_test.cc, which got broken when we switched to allocator2: the OOB access was too far from the original allocation, so ASan decided to describe the next one. llvm-svn: 174626
-
Howard Hinnant authored
llvm-svn: 174625
-
Dmitry Vyukov authored
this is required to catch close of file descriptors created in getaddrinfo() llvm-svn: 174624
-
Howard Hinnant authored
Michael van der Westhuizen: The attached patch add support for building against libc++abi and libcxxrt to CMake builds of libc++. Usage (with the appropriate CC and CXX environment variables) is: $ cmake -DLIBCXX_CXX_ABI=libcxxabi '-DLIBCXX_LIBCXXABI_INCLUDE_PATHS=/home/michael/libcxxabi/include' ../libcxx and: $ cmake -DLIBCXX_CXX_ABI=libcxxrt '-DLIBCXX_LIBCXXRT_INCLUDE_PATHS=/home/michael/libcxxrt/src' ../libcxx llvm-svn: 174623
-
Dmitry Vyukov authored
llvm-svn: 174622
-
Tim Northover authored
AArch64 handles aggFct's return struct slightly differently, leading to an extra memcpy. This test is fortunately only concerned about volatile copies, so we can modify the grep text to filter it. llvm-svn: 174621
-
Tim Northover authored
This should allow it to pass if the default triple is AArch64 llvm-svn: 174620
-
Tim Northover authored
Only some ABIs require the "signext" attribute on parameters. On most platforms, however, it's a useful test so it's best not to limit it to some random arbitrary platform. llvm-svn: 174619
-
Tim Northover authored
This test was written to make sure *something* sane is generated, not to test any ABI's signedness semantics. This should allow the test to pass if AArch64 is the default target. llvm-svn: 174618
-
Kostya Serebryany authored
llvm-svn: 174617
-
Alexander Potapenko authored
llvm-svn: 174616
-
Michel Danzer authored
22 more little piglits with radeonsi. Reviewed-by:
Tom Stellard <thomas.stellard@amd.com> llvm-svn: 174615
-
NAKAMURA Takumi authored
Excuse me, I could not test it locally. llvm-svn: 174614
-
Dmitri Gribenko authored
llvm-svn: 174613
-
Dmitri Gribenko authored
llvm-svn: 174612
-
Marshall Clow authored
llvm-svn: 174611
-
Tom Stellard authored
Use sub0-15 everywhere. Patch by: Michel Dänzerr Reviewed-by:
Tom Stellard <thomas.stellard@amd.com> Signed-off-by:
Michel Dänzer <michel.daenzer@amd.com> llvm-svn: 174610
-
Tom Stellard authored
These instructions compare two floating point values and return an integer true (-1) or false (0) value. When compiling code generated by the Mesa GLSL frontend, the SET*_DX10 instructions save us four instructions for most branch decisions that use floating-point comparisons. llvm-svn: 174609
-
Tom Stellard authored
All of the le and lt variants are unsupported. llvm-svn: 174608
-
Tom Stellard authored
llvm-svn: 174607
-
NAKAMURA Takumi authored
llvm-svn: 174606
-
Manuel Klimek authored
This is a powerful tool when doing iterative refined matches, where another match is started inside the match callback of the first one; this allows for example to find out whether the node was in the condition or body of its parent if-statement. llvm-svn: 174605
-
Alexander Potapenko authored
llvm-svn: 174604
-
Alexander Potapenko authored
Switch to allocator2 on Darwin. llvm-svn: 174603
-
NAKAMURA Takumi authored
llvm-svn: 174602
-