- Mar 23, 2015
-
-
Benjamin Kramer authored
NFC. llvm-svn: 232975
-
Zachary Turner authored
This was hardcoding some make rules instead of relying on Makefile.rules, which was causing some of the logic to be incorrect for Windows. Patch by: Adrian McCarthy Differential Revision: http://reviews.llvm.org/D8363 llvm-svn: 232974
-
Ed Maste authored
llvm-svn: 232973
-
Alexander Potapenko authored
[sanitizer] Fix file access modes in SanitizerCommon.InternalMmapWithOffset and SanitizerCommon.FileOps llvm-svn: 232972
-
Ahmed Bougacha authored
On AArch64, the -fallow-half-args-and-returns option is the default. With it, the half type is considered legal (rather than the i16 used normally for __fp16), but no operation is, except conversions and load/stores and such. The previous behavior was tantamount to saying LangOpts.NativeHalfType was implied by LangOpts.HalfArgsAndReturns, which isn't true. Instead, teach the various parts of CodeGen that already know about half (using the intrinsics or not) about this weird in-between case, where the "half" type is legal, but operations on it aren't. This is a smaller intermediate step to the end-goal of removing the intrinsic, always using "half", and letting the backend legalize. Builds on r232968. rdar://20045970, rdar://17468714 Differential Revision: http://reviews.llvm.org/D8367 llvm-svn: 232971
-
Ed Maste authored
llvm-svn: 232970
-
Ed Maste authored
- replace hard tabs with 4-space indents - delete EOL whitespace llvm-svn: 232969
-
Ahmed Bougacha authored
Fix the CodeGen so that for types bigger than float, instead of converting to fp16 via the sequence "InTy -> float -> fp16", we perform conversions in just one step. This avoids the double rounding which potentially changes results from a natural IEEE-754 operation. rdar://17594379, rdar://17468714 Differential Revision: http://reviews.llvm.org/D4602 Part of: http://reviews.llvm.org/D8367 llvm-svn: 232968
-
Chad Rosier authored
Patch by Geoff Berry<gberry@codeaurora.org>. llvm-svn: 232967
-
Stephane Sezer authored
Summary: This has been discovered while experimenting with the gecko linker on android. In general, assert()'ing on "user input" is a bad idea. Test Plan: Run unit tests. Reviewers: clayborg, tfiala Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D8495 llvm-svn: 232966
-
Tom Stellard authored
This is a generic implementation which just calls sqrt. Targets should override this if they want a faster implementation. v2: - Alphabetize SOURCES llvm-svn: 232965
-
Tom Stellard authored
This implementation was ported from the AMD builtin library and has been tested with piglit, OpenCV, and the ocl conformance tests. v2: - Remove unnecessary copyright. llvm-svn: 232964
-
Tom Stellard authored
v2: - Move common code into a macro - Use the same constant for all vector types. llvm-svn: 232963
-
Bradley Smith authored
This change is incorrect since it converts double rounding into single rounding, which can produce different results. Instead this optimization will be done by modifying Clang's codegen to not produce double rounding in the first place. This reverts commit r232954. llvm-svn: 232962
-
Eli Bendersky authored
Patch by Richard (legalize@xmission.com) Differential Revision: http://reviews.llvm.org/D8521 llvm-svn: 232961
-
Tom Stellard authored
This will help avoid naming conflicts with functions defined in kernels linking with libclc. llvm-svn: 232960
-
Tamas Berghammer authored
It is required because the name of the executable exceeded the maximum allowed file name on android. llvm-svn: 232959
-
James Molloy authored
Anton tried this 5 years ago but it was reverted due to extra VMOVs being emitted. This can be easily fixed with a liberal application of patterns - matching loads/stores and extractelts. llvm-svn: 232958
-
Tom Stellard authored
This function assumed that SMRD instructions always have immediate offsets, which is not always the case. llvm-svn: 232957
-
NAKAMURA Takumi authored
llvm-svn: 232956
-
Colin LeMahieu authored
Patch by Richard http://reviews.llvm.org/D8523 llvm-svn: 232955
-
Bradley Smith authored
Specifically when the conversion is done in two steps, f16 -> f32 -> f64. For example: %1 = tail call float @llvm.convert.from.fp16.f32(i16 %0) %conv = fpext float %1 to double to: vcvtb.f64.f16 llvm-svn: 232954
-
Benjamin Kramer authored
The ELF backends now depend on lld::script::Sema, which is in libReaderWriter. Link it explicitly. llvm-svn: 232953
-
Tamas Berghammer authored
llvm-svn: 232952
-
Ilia K authored
This commit reverts r232946 because it caused an another error with absolute time. llvm-svn: 232951
-
Ilia K authored
llvm-svn: 232950
-
Benjamin Kramer authored
NFC. llvm-svn: 232949
-
Benjamin Kramer authored
Also purge dead code found by it. NFC. llvm-svn: 232948
-
Benjamin Kramer authored
NFC. llvm-svn: 232947
-
Ilia K authored
The time/date strings (like "6pm April 10, 1985") are interpreted as a local time but CFDateGetAbsoluteTime() returns time in UTC. It caused a problem when local time was UTC+0100 or more (0200, 0300 etc.): ``` ====================================================================== FAIL: test_nsdate_with_dsym_and_run_command (TestDataFormatterObjC.ObjCDataFormatterTestCase) Test formatters for NSDate. ---------------------------------------------------------------------- Traceback (most recent call last): File "/Users/IliaK/p/llvm/tools/lldb/test/lldbtest.py", line 462, in wrapper return func(self, *args, **kwargs) File "/Users/IliaK/p/llvm/tools/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py", line 157, in test_nsdate_with_dsym_and_run_command self.appkit_tester_impl(self.buildDsym,self.nsdate_data_formatter_commands) File "/Users/IliaK/p/llvm/tools/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py", line 34, in appkit_tester_impl commands() File "/Users/IliaK/p/llvm/tools/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py", line 475, in nsdate_data_formatter_commands substrs = ['1985-04','2011-01']) File "/Users/IliaK/p/llvm/tools/lldb/test/lldbtest.py", line 2146, in expect msg if msg else EXP_MSG(str, exe)) AssertionError: False is not True : '2011-01' returns expected result Config=x86_64-clang ====================================================================== FAIL: test_nsdate_with_dwarf_and_run_command (TestDataFormatterObjC.ObjCDataFormatterTestCase) Test formatters for NSDate. ---------------------------------------------------------------------- Traceback (most recent call last): File "/Users/IliaK/p/llvm/tools/lldb/test/lldbtest.py", line 479, in wrapper return func(self, *args, **kwargs) File "/Users/IliaK/p/llvm/tools/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py", line 163, in test_nsdate_with_dwarf_and_run_command self.appkit_tester_impl(self.buildDwarf,self.nsdate_data_formatter_commands) File "/Users/IliaK/p/llvm/tools/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py", line 34, in appkit_tester_impl commands() File "/Users/IliaK/p/llvm/tools/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py", line 475, in nsdate_data_formatter_commands substrs = ['1985-04','2011-01']) File "/Users/IliaK/p/llvm/tools/lldb/test/lldbtest.py", line 2146, in expect msg if msg else EXP_MSG(str, exe)) AssertionError: False is not True : '2011-01' returns expected result Config=x86_64-clang ``` llvm-svn: 232946
-
Benjamin Kramer authored
Also merge anonymous namespaces in Targets.cpp a bit. NFC. llvm-svn: 232945
-
Benjamin Kramer authored
NFC. llvm-svn: 232944
-
Petar Jovanovic authored
Fixing sign extension in makeLibCall for MIPS64. In MIPS64 architecture all 32 bit arguments (int, unsigned int, float 32 (soft float)) must be sign extended. This fixes test "MultiSource/Applications/oggenc/". Patch by Strahinja Petrovic. Differential Revision: http://reviews.llvm.org/D7791 llvm-svn: 232943
-
Denis Protivensky authored
Test cases for both entry functions in ARM and Thumb code are added. llvm-svn: 232942
-
Daniel Sanders authored
Summary: But still handle them the same way since I don't know how they differ on this target. Clang also has code for 'Ump', 'Utf', 'Usa', and 'Ush' but calls llvm_unreachable() on this code path so they are not converted to a constraint id at the moment. No functional change intended. Reviewers: t.p.northover Subscribers: aemerson, llvm-commits Differential Revision: http://reviews.llvm.org/D8177 llvm-svn: 232941
-
Scott Douglass authored
Differential Revision: http://reviews.llvm.org/D8196 llvm-svn: 232940
-
Scott Douglass authored
Differential Revision: http://reviews.llvm.org/D8485 llvm-svn: 232939
-
Simon Atanasyan authored
No functional changes. llvm-svn: 232938
-
Alexander Potapenko authored
This is a follow-up for r232936. llvm-svn: 232937
-
Alexander Potapenko authored
This is to fix mapping coverage files into memory on OSX. llvm-svn: 232936
-