- Jul 24, 2013
-
-
Fariborz Jahanian authored
Expose static type of init/alloc/retain with instance type as well. Ad-hoc cases are coming next. llvm-svn: 187068
-
Ariel J. Bernal authored
Doxygen doesn't recognize <blockquote> html tags. Added support for <blockquote> and Markdown was introduce with doxygen 1.8.0. This patch replaces blockquote with \par for compatibility with previous versions. llvm-svn: 187067
-
Manman Ren authored
llvm-svn: 187066
-
Rafael Espindola authored
llvm-svn: 187065
-
Rafael Espindola authored
llvm-svn: 187064
-
Akira Hatanaka authored
when there wasn't a match. This behavior is consistent with other register parsing methods. llvm-svn: 187063
-
Fariborz Jahanian authored
migrating to instancetype can have implicit 'id' type too. llvm-svn: 187062
-
Eli Bendersky authored
llvm-svn: 187061
-
rdar://problem/14521548Greg Clayton authored
Fixed a crasher where if you accidentally specify a size that is too large when reading memory, LLDB would crash. llvm-svn: 187060
-
Aaron Watry authored
The get_num_groups function was missing for r600g. I did the same thing as the other workitem functions. Reviewed-by:
Tom Stellard <thomas.stellard@amd.com> Reviewed-by:
Aaron Watry <awatry@gmail.com> llvm-svn: 187059
-
Richard Smith authored
cxx_init_capture. "generalized" is neither descriptive nor future-proof. No compatibility problems expected, since we've never advertised having this feature. llvm-svn: 187058
-
Stefanus Du Toit authored
This allows compilation of the test case with GCC 4.8. llvm-svn: 187057
-
Jakob Stoklund Olesen authored
Patch by Hafiz Abid! llvm-svn: 187056
-
Richard Smith authored
llvm-svn: 187055
-
Benjamin Kramer authored
llvm-svn: 187054
-
Petar Jovanovic authored
The change r187019 has fixed multiple relocations in dynamic linker for MIPS, so now this test passes for MIPS. llvm-svn: 187053
-
Manman Ren authored
Improve the Finder to handle context of a DIVariable used by DbgValueInst. Fix testing cases to make them pass the verifier. llvm-svn: 187052
-
Mark Seaborn authored
Before this change, Clang uses the x86 representation for C++ method pointers when generating code for PNaCl. However, the resulting code will assume that function pointers are 0 mod 2. This assumption is not safe for PNaCl, where function pointers could have any value (especially in future sandboxing models). So, switch to using the ARM representation for PNaCl code, which makes no assumptions about the alignment of function pointers. Since we're changing the "le32" target, this change also applies to Emscripten. The change is beneficial for Emscripten too. Emscripten has a workaround to make function pointers 0 mod 2. This change would allow the workaround to be removed. See: https://code.google.com/p/nativeclient/issues/detail?id=3450 llvm-svn: 187051
-
Benjamin Kramer authored
While there shrink a dangerously large SmallPtrSet. llvm-svn: 187050
-
Manman Ren authored
llvm-svn: 187049
-
Guillaume Papin authored
r187041 changed the way the transform are created and the order the transformed are applied "may" have changed as well (no specific constraints exist on the order). This produced a test failure on the Windows buildbot. Now the test use -std=c++11, so 'nullptr' is defined and the test is not anymore dependent on the order the transforms are applied. llvm-svn: 187048
-
Benjamin Kramer authored
No functionality change. llvm-svn: 187047
-
Rafael Espindola authored
Found by running the test with pipefail enabled. llvm-svn: 187046
-
Ed Maste authored
llvm-svn: 187045
-
Samuel Benzaquen authored
Summary: Add support for Adaptative matchers on the dynamic registry. Each adaptative matcher is created with a function template. We instantiate the function N times, one for each possible From type and apply the techniques used on argument overloaded and polymorphic matchers to add them to the registry. Reviewers: klimek CC: cfe-commits, revane Differential Revision: http://llvm-reviews.chandlerc.com/D1201 llvm-svn: 187044
-
Ed Maste authored
llvm-svn: 187043
-
Rafael Espindola authored
Before this patch we would strdup each argument. If one was a response file, we would replace it with the response file contents, leaking the original strdup result. We now don't strdup the originals and let StringSaver free any memory it allocated. This also saves a bit of malloc traffic when response files are not used. Leak found by the valgrind build bot. llvm-svn: 187042
-
Guillaume Papin authored
With this change each transform now register a factory. The factories are registered using an llvm::Registry which makes them available globally. llvm-svn: 187041
-
Ed Maste authored
Also accomodate struct padding based on arch, for later i386 work. llvm-svn: 187040
-
Rafael Espindola authored
The Binary constructor takes ownership of the memory buffer. This is a fairly unfortunate interface, but for now make createObjectFile consistent with it by also deleting the buffer if it fails. Fixes a leak in llvm-ar found by the valgrind bots. llvm-svn: 187039
-
Guillaume Papin authored
llvm-svn: 187038
-
Ed Maste authored
llvm-svn: 187037
-
Ashok Thirumurthi authored
llvm-svn: 187036
-
Ashok Thirumurthi authored
llvm-svn: 187035
-
Rafael Espindola authored
llvm-svn: 187034
-
Daniel Jasper authored
This is far from implementing all the rules given by http://www.webkit.org/coding/coding-style.html The important new feature is the support for styles that don't have a column limit. For such styles, clang-format will (at the moment) simply respect the input's formatting decisions within statements. llvm-svn: 187033
-
Petar Jovanovic authored
Testing commit access credentials. llvm-svn: 187032
-
Chandler Carruth authored
schedule an alloca for another iteration in SROA. This only showed up with a mixture of promotable and unpromotable selects and phis. Added a test case for this. llvm-svn: 187031
-
Elena Demikhovsky authored
I'm starting to commit KNL backend. I'll push patches one-by-one. This patch includes support for the extended register set XMM16-31, YMM16-31, ZMM0-31. The full ISA you can see here: http://software.intel.com/en-us/intel-isa-extensions llvm-svn: 187030
-
Chandler Carruth authored
pending speculation for a phi node. The problem here is that we were using growth of the specluation set as an indicator of whether speculation would occur, and if the phi node is already in the set we don't see it grow. This is a symptom of the fact that this signal is a total hack. Unfortunately, I couldn't really come up with a non-hacky way of signaling that promotion remains valid *after* speculation occurs, such that we only speculate when all else looks good for promotion. In the end, I went with at least a much more explicit approach of doing the work of queuing inside the phi and select processing and setting a preposterously named flag to convey that we're in the special state of requiring speculating before promotion. Thanks to Richard Trieu and Nick Lewycky for the excellent work reducing a testcase for this from a pretty giant, nasty assert in a big application. =] The testcase was excellent. llvm-svn: 187029
-