- May 18, 2016
-
-
Marshall Clow authored
When you assign a shared_ptr, the deleter gets called and assigned. In this routine, the assignment happens inside a critical section, which could (potentially) lead to a deadlock, if the deleter did something wonky. Now we swap the old value with an (empty) temporary shared_ptr, and then let the temporary delete the old value when it goes out of scope (after the lock has been released). This should fix PR#27724. Thanks to Hans Boehm for the bug report and the suggested fix. llvm-svn: 269965
-
Xinliang David Li authored
llvm-svn: 269964
-
Chad Rosier authored
llvm-svn: 269963
-
Sanjay Patel authored
llvm-svn: 269962
-
Steven Wu authored
Summary: -fembed-bitcode was only checking for old style LTO flag (-flto) but not considering the new -flto= style option. That makes clang output bitcode embedded in bitcode object when using -flto= and -fembed-bitcode= together. Now clang should output normal bitcode file when using LTO and ignores -fembed-bitcode option. Reviewers: joker.eph Subscribers: joker.eph, cfe-commits Differential Revision: http://reviews.llvm.org/D20374 llvm-svn: 269961
-
Haojian Wu authored
llvm-svn: 269957
-
Benjamin Kramer authored
This is used to find nested classes. For a nested name foo::bar::qux we will first look up foo::bar::qux, then foo::bar, then foo unless we find a result. This is used to support nested classes which are not part of the index but can only be used if the header for the parent context is included. Differential Revision: http://reviews.llvm.org/D20372 llvm-svn: 269956
-
Rui Ueyama authored
llvm-svn: 269955
-
Rafael Espindola authored
llvm-svn: 269954
-
Chris Bieneman authored
This re-applies r269845, r269846, and r269850 with an included fix for a crash reported by zturner. llvm-svn: 269953
-
Miklos Vajna authored
The result of the test was C::D(), not D::D(). Reviewers: cfe-commits, klimek Differential Revision: http://reviews.llvm.org/D20356 llvm-svn: 269952
-
Matt Arsenault authored
llvm-svn: 269951
-
Matt Arsenault authored
We can chain bcnt instructions together, so any width popcnt is pretty fast. llvm-svn: 269950
-
Hans Wennborg authored
with an additional fix to make RegAllocFast ignore undef physreg uses. It would previously get confused about the "push %eax" instruction's use of eax. That method for adjusting the stack pointer is used in X86FrameLowering::emitSPUpdate as well, but since that runs after register-allocation, we didn't run into the RegAllocFast issue before. llvm-svn: 269949
-
Matt Arsenault authored
For some reason an assert is now hit when a valid chain is not returned, so return the entry chain. llvm-svn: 269948
-
Francis Ricci authored
Summary: dlopen and dlclose interception are broken when RUNPATH is used: https://llvm.org/bugs/show_bug.cgi?id=27790 Reviewers: kutuzov.viktor.84, samsonov, dvyukov, eugenis, kcc Subscribers: kcc, filcab, kubabrecka, compnerd, llvm-commits Differential Revision: http://reviews.llvm.org/D20333 llvm-svn: 269947
-
Rafael Espindola authored
This just clang formats and cleans comments in an area I am about to post a patch for review. llvm-svn: 269946
-
Matt Arsenault authored
If the second pointer in a multi-pointer instruction is a constant, we can replace the type. llvm-svn: 269945
-
Matt Arsenault authored
Fix minor bugs and uses of undef which break when pointer related optimization passes are run. llvm-svn: 269944
-
Matt Arsenault authored
llvm-svn: 269943
-
Paul Robinson authored
llvm-svn: 269941
-
Michael Zuckerman authored
Differential Revision: http://reviews.llvm.org/D20101 llvm-svn: 269939
-
Matt Arsenault authored
Use register class that does not include them when looking for unallocated registers. This is hit by the udiv v8i64 test in the opencl integer conformance test, and takes a few seconds to compile in a debug build so no test included. llvm-svn: 269938
-
Davide Italiano authored
llvm-svn: 269937
-
Haojian Wu authored
Reviewers: alexfh, aaron.ballman Subscribers: thakis, cfe-commits, klimek Differential Revision: http://reviews.llvm.org/D20369 llvm-svn: 269936
-
Vassil Vassilev authored
Teach Sema::MergeFunctionDecl to properly check for an out-of-line definition of a function that is declared as =default in its class definition. First part of PR27699. Patch by Cristina Cristescu! Reviewed by Richard Smith and me. llvm-svn: 269935
-
Krzysztof Parzyszek authored
Clang follow-up to r269933. llvm-svn: 269934
-
Krzysztof Parzyszek authored
llvm-svn: 269933
-
Simon Pilgrim authored
llvm-svn: 269932
-
Simon Pilgrim authored
llvm-svn: 269931
-
Dan Gohman authored
Don't expand divisions by constants if it would require multiple instructions. The current assumption is that engines will perform the desired optimizations. llvm-svn: 269930
-
Simon Pilgrim authored
llvm-svn: 269929
-
Haojian Wu authored
Reviewers: alexfh, aaron.ballman Subscribers: aaron.ballman, cfe-commits Differential Revision: http://reviews.llvm.org/D20367 llvm-svn: 269928
-
Eric Liu authored
Summary: [clang-include-fixer] Added Vim integration for clang-include-fixer. Reviewers: hokein, bkramer Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D20329 llvm-svn: 269927
-
Simon Pilgrim authored
llvm-svn: 269926
-
Simon Pilgrim authored
llvm-svn: 269925
-
Eric Liu authored
Summary: [clang-format] Make formatReplacements() also sort #includes. Reviewers: bkramer, djasper Subscribers: klimek, cfe-commits Differential Revision: http://reviews.llvm.org/D20362 llvm-svn: 269924
-
Benjamin Kramer authored
This typically happens when the user didn't setup include paths correctly and the fixer starts adding garbage includes. Avoid that. Disable the error limit though, as we might hit that easily with missing includes and still want to fix those cases. llvm-svn: 269923
-
Bryan Chan authored
Summary: The ordering of registers in BinaryRRF instructions are wrong, and affects the copysign instruction (CPSDR). This results in the wrong magnitude and sign being set. Author: zhanjunl Reviewers: kbarton, uweigand Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D20308 llvm-svn: 269922
-
Simon Pilgrim authored
llvm-svn: 269921
-