- Nov 21, 2013
-
-
Hans Wennborg authored
- Allow overriding PACKAGE_VERSION from the command-line - Use PACKAGE_VERSION to set CPACK_PACKAGE_VERSION (used by the Win installer) - Don't include the version number in the CPack install dir or registry key. Differential revision: http://llvm-reviews.chandlerc.com/D2245 llvm-svn: 195379
-
Ekaterina Romanova authored
Test commit for the user "kromanova" to verify commit access. I removed "UNSUPPORTED" comment because unsigned __int128 type is in fact supported. llvm-svn: 195378
-
Jason Molenda authored
init_lldb is absent (when doing a no-python build). llvm-svn: 195377
-
Fariborz Jahanian authored
whose semantic is currently identical to objc_bridge, but their differences may manifest down the road with further enhancements. // rdar://15498044 llvm-svn: 195376
-
Benjamin Kramer authored
llvm-svn: 195372
-
Greg Clayton authored
llvm-svn: 195371
-
Greg Clayton authored
Added the ability to launch the program that was specified on the command line and have it waiting for a NativeProcessProtocol to attach. llvm-svn: 195370
-
Greg Clayton authored
Added a new "Host/Debug.h" which contains the pure virtual class definitions for NativeProcessProtocol and NativeThreadProtocol. These classes are host layer classes that, over time, every host that supports debugging will implement once. Then the new "lldb-gdbserver" binary in the tools directory will be able to make a remote debugging binary from these native classes, and we will also be able to have a new lldb_private::Process class that implements native debugging using these classes. So as soon as linux and MacOSX switch over to using this layer, everyone will get native and remote debugging. This check-in is primarily to get the needed code in so that poeple can start trying to implement the NativeProcessProtocol and NativeThreadProtocol and use it in the GDBRemoteCommunicationServer class to implement a GDB server for remote debugging. llvm-svn: 195369
-
Fariborz Jahanian authored
inferred as 'assign', not 'assign' and 'strong'. // rdar://15509831 llvm-svn: 195368
-
Joey Gouly authored
In OpenCL a vector of 3 elements, acts like a vector of four elements. So for a vector of size 3 the '.hi' and '.odd' accessors, would access the elements {2, 3} and {1, 3} respectively. However, in EmitStoreThroughExtVectorComponentLValue we are still operating on a vector of size 3, so we should only access {2} and {1}. We do this by checking the last element to be accessed, and ignore it if it is out-of-bounds. EmitLoadOfExtVectorElementLValue doesn't have a similar problem, because it does a direct shufflevector with undef, so an out-of-bounds access just gives an undef value. Patch by Anastasia Stulova! llvm-svn: 195367
-
Enea Zaffanella authored
llvm-svn: 195366
-
Artyom Skrobov authored
llvm-svn: 195365
-
Daniel Sanders authored
Mask == ~InvMask asserts if the width of Mask and InvMask differ. The combine isn't valid (with two exceptions, see below) if the widths differ so test for this before testing Mask == ~InvMask. In the specific cases of Mask=~0 and InvMask=0, as well as Mask=0 and InvMask=~0, the combine is still valid. However, there are more appropriate combines that could be used in these cases such as folding x & 0 to 0, or x & ~0 to x. llvm-svn: 195364
-
Ed Maste authored
llvm-svn: 195362
-
Ed Maste authored
llvm.org/pr17807 llvm-svn: 195361
-
Artyom Skrobov authored
llvm-svn: 195359
-
Artyom Skrobov authored
llvm-svn: 195358
-
NAKAMURA Takumi authored
llvm-svn: 195357
-
Daniel Sanders authored
Add support for legalizing SETNE/SETEQ by inverting the condition code and the result of the comparison. Summary: LegalizeSetCCCondCode can now legalize SETEQ and SETNE by returning the inverse condition and requesting that the caller invert the result of the condition. The caller of LegalizeSetCCCondCode must handle the inverted CC, and they do so as follows: SETCC, BR_CC: Invert the result of the SETCC with SelectionDAG::getNOT() SELECT_CC: Swap the true/false operands. This is necessary for MSA which lacks an integer SETNE instruction. Reviewers: resistor CC: llvm-commits Differential Revision: http://llvm-reviews.chandlerc.com/D2229 llvm-svn: 195355
-
Alexander Kornienko authored
Summary: Now based on token merging. Now they are not only prevented from being split, but are actually formatted as comparison operators. Reviewers: djasper, klimek Reviewed By: klimek CC: cfe-commits, klimek Differential Revision: http://llvm-reviews.chandlerc.com/D2240 llvm-svn: 195354
-
Tim Northover authored
There seem to be quite a few references to the old macro __ARM_NEON__ on the internet, so I don't think it's a good idea to remove it entirely (at least yet), but the canonical name does not have the trailing underscores so we should use that ourselves. llvm-svn: 195353
-
Kostya Serebryany authored
llvm-svn: 195352
-
Dmitry Vyukov authored
the tests produce episodic flakes the hypothesis is that it's due to our "racy" race detection algorithm sleeps should remove the flakes llvm-svn: 195351
-
Evgeniy Stepanov authored
llvm-svn: 195350
-
Evgeniy Stepanov authored
llvm-svn: 195349
-
Dmitry Vyukov authored
llvm-svn: 195347
-
Dmitry Vyukov authored
as common sanitizer interceptors now require it llvm-svn: 195346
-
Dmitry Vyukov authored
It's incorrect to take address of setjmp, because it may not (ligally) present in libc. Fixes http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59188 llvm-svn: 195345
-
Tobias Grosser authored
This allows to build Polly without CLooG. llvm-svn: 195344
-
Daniel Sanders authored
Fixes a crash (null pointer dereferenced) when MSA is enabled. llvm-svn: 195343
-
Evgeniy Stepanov authored
llvm-svn: 195342
-
NAKAMURA Takumi authored
llvm-svn: 195341
-
Chandler Carruth authored
llvm-svn: 195340
-
NAKAMURA Takumi authored
It broke, at least, i686 target. It is reproducible with "llc -mtriple=i686-unknown". FYI, it didn't appear to add either "-O0" or "-fast-isel". llvm-svn: 195339
-
Chandler Carruth authored
it is completely optional, and sink the logic for handling the preserved analysis set into it. This allows us to implement the delegation logic desired in the proxy module analysis for the function analysis manager where if the proxy itself is preserved we assume the set of functions hasn't changed and we do a fine grained invalidation by walking the functions in the module and running the invalidate for them all at the manager level and letting it try to invalidate any passes. This in turn makes it blindingly obvious why we should hoist the invalidate trait and have two collections of results. That allows handling invalidation for almost all analyses without indirect calls and it allows short circuiting when the preserved set is all. llvm-svn: 195338
-
Peter Zotov authored
llvm-svn: 195336
-
Kostya Serebryany authored
llvm-svn: 195333
-
Chandler Carruth authored
type and detect whether or not it provides an 'invalidate' member the analysis manager should use. This lets the overwhelming common case of *not* caring about custom behavior when an analysis is invalidated be the the obvious default behavior with no code written by the author of an analysis. Only when they write code specifically to handle invalidation does it get used. Both cases are actually covered by tests here. The test analysis uses the default behavior, and the proxy module analysis actually has custom behavior on invalidation that is firing correctly. (In fact, this is the analysis which was the primary motivation for having custom invalidation behavior in the first place.) llvm-svn: 195332
-
Kostya Serebryany authored
llvm-svn: 195331
-
Ana Pazos authored
Fixed scalar dup alias and added test case. llvm-svn: 195330
-