- Jul 08, 2016
-
-
Jim Ingham authored
This is just an SB API way of doing "thread return -x". <rdar://problem/27110360> llvm-svn: 274822
-
Craig Topper authored
llvm-svn: 274821
-
Craig Topper authored
[X86] Remove a couple calls to create V2F64 and V4F32 types for builtin handling. Just get the type from the operand of the builtin instead. NFC llvm-svn: 274820
-
Mehdi Amini authored
I have an LTO snapshot (for which I don't have sources) that can't be read back by LLVM. It seems the writer emitted broken bitcode and this assertions aims at catching such cases. llvm-svn: 274819
-
Matt Arsenault authored
llvm-svn: 274818
-
Matt Arsenault authored
Also this will be more precise since it will check exec_lo/exec_hi writes. llvm-svn: 274817
-
Devin Coughlin authored
This proposed patch adds crude handling of atomics to the static analyzer. Rather than ignore AtomicExprs, as we now do, this patch causes the analyzer to escape the arguments. This is imprecise -- and we should model the expressions fully in the future -- but it is less wrong than ignoring their effects altogether. This is rdar://problem/25353187 Differential Revision: http://reviews.llvm.org/D21667 llvm-svn: 274816
-
Saleem Abdulrasool authored
Windows on ARM uses a pure thumb-2 environment. This means that it can select a high register when doing a __builtin_longjmp. We would use a tLDRi which would truncate the register to a low register. Use a t2LDRi12 to get the full register file access. Tweak the code to just load into PC, as that is an interworking branch on all supported cores anyways. llvm-svn: 274815
-
Saleem Abdulrasool authored
This reverts SVN r274797. It broke the Green Dragon bot. Revert it until the failure can be addressed. llvm-svn: 274814
-
Andrew Kaylor authored
llvm-svn: 274813
-
Andrew Kaylor authored
llvm-svn: 274812
-
Piotr Padlewski authored
Summary: fixed very old document Reviewers: tejohnson, pcc Subscribers: mehdi_amini, eraman, llvm-commits Differential Revision: http://reviews.llvm.org/D22121 llvm-svn: 274811
-
Greg Clayton authored
Fix it so that we only grab the typedef from the module DWARF file if the type that is typedef'ed is a declaration. This fixes the following bugs: <rdar://problem/26870890> [PR28156] TestWithModuleDebugging.py: failing on macOS https://llvm.org/bugs/show_bug.cgi?id=27412 https://llvm.org/bugs/show_bug.cgi?id=28156 llvm-svn: 274809
-
Rui Ueyama authored
Previously, it was not tested because the test was written in a way that it passed on a platform that does not support abi::__cxa_demangle. Now we restrict this test to Unix (by adding "REQUIRES: shell") and assume that it always demangle symbols. Thanks to Davide to find out the issue. llvm-svn: 274808
-
Jacques Pienaar authored
Summary: * Similiar to the ARM backend yse the peephole optimizer to generate more conditional ALU operations; * Add predicated type with default always true to RR instructions in LanaiInstrInfo.td; * Move LanaiSetflagAluCombiner into optimizeCompare; * The ASM parser can currently only handle explicitly specified CC, so specify ".t" (true) where needed in the ASM test; * Remove unused MachineOperand flags; Reviewers: eliben Subscribers: aemerson Differential Revision: http://reviews.llvm.org/D22072 llvm-svn: 274807
-
Davide Italiano authored
llvm-svn: 274806
-
Michael Kuperstein authored
llvm-svn: 274805
-
Rui Ueyama authored
Symbols.cpp contains functions to handle ELF symbols. demangle() function is essentially a function to work on a string rather than on an ELF symbol. So Strings.cpp is a better place to put that function. This change also make demangle to demangle symbols unconditionally. Previously, it demangled symbols only when Config->Demangle is true. llvm-svn: 274804
-
Rafael Espindola authored
But it was doing that for protected undefined symbols. llvm-svn: 274803
-
Michael Kuperstein authored
xorl + setcc is generally the preferred sequence due to the partial register stall setcc + movzbl suffers from. As a bonus, it also encodes one byte smaller. This fixes PR28146. The original commit tried inserting an 8bit-subreg into a GR32 (not GR32_ABCD) which was not appreciated by fast regalloc on 32-bit. llvm-svn: 274802
-
Vedant Kumar authored
GCOVProfiler::emitProfileArcs() can create many variables with names starting with "__llvm_gcov_ctr", so llvm appends a numeric suffix to most of them. Teach tsan about this. llvm-svn: 274801
-
Vedant Kumar authored
SM.isWrittenInSameFile() calls getFileID(), which can be expensive. Move this check behind some cheaper filters. llvm-svn: 274800
-
Simon Pilgrim authored
llvm-svn: 274799
-
Kevin Enderby authored
are the correct multiple. llvm-svn: 274798
-
- Jul 07, 2016
-
-
Saleem Abdulrasool authored
Sanitizers on Darwin are built as dynamic libraries, not static libraries. Sanitizers will have their C++ dependency satisfied internally (LC_LOAD_DYLIB) in the libclang_rt dylib. As long as the sanitizers stay dynamic and not static, linking against C++ when enabling a sanitizer becomes over linkage. Patch by Dave Lee! llvm-svn: 274797
-
Davide Italiano authored
llvm-svn: 274796
-
Anna Thomas authored
We can remove dead stores in the presence of fence instructions. Fence does not change an otherwise thread local store to visible. reviewers: reames, dexonsmith, jfb Differential Revision: http://reviews.llvm.org/D22001 llvm-svn: 274795
-
Rui Ueyama authored
llvm-svn: 274794
-
Rui Ueyama authored
llvm-svn: 274793
-
Alina Sbirlea authored
Reviewers: llvm-commits, jlebar, arsenm Subscribers: mzolotukhin Differential Revision: http://reviews.llvm.org/D22107 llvm-svn: 274792
-
Chad Rosier authored
This reinstates commits r273280 and r273289. Original Review: http://reviews.llvm.org/D21414. llvm-svn: 274791
-
Chad Rosier authored
The commit reinstates r273279, which was informally approved. Original Review: http://reviews.llvm.org/D21414 This reverts commit ca632c91aaa7cafc50942f890c49f727a046ace1. llvm-svn: 274790
-
Tim Northover authored
AsmString is empty by default. llvm-svn: 274789
-
Greg Clayton authored
<rdar://problem/26321896> llvm-svn: 274788
-
Jim Ingham authored
If it does, calling AddInitializerToDecl will crash, so we should abort the result synthesis in this case. <rdar://problem/27205383> llvm-svn: 274787
-
Andrew Kaylor authored
Differential Revision: http://reviews.llvm.org/D21143 llvm-svn: 274786
-
Etienne Bergeron authored
Summary: Some unittest were not able to run in 64-bit because they need more than 2MB of stack and the default allocated stack with MSVC linker is 1MB. Reviewers: rnk Subscribers: wang0109, chrisha, llvm-commits, kubabrecka Differential Revision: http://reviews.llvm.org/D22101 llvm-svn: 274785
-
Peter Collingbourne authored
We currently do not touch a symbol's linkage in the case where a definition has a single copy. However, this code is effectively unnecessary: either the definition is not exported, in which case the internalize phase sets its linkage to internal, or it is exported, in which case we need to promote linkage to weak. Those two cases are already handled by existing code. I believe that the only real functional change here is in the case where we have a single definition which does not prevail (e.g. because the definition in a native object file prevails). In that case we now lower linkage to available_externally following the existing code path for that case. As a result we can remove the isExported function parameter from the thinLTOResolveWeakForLinkerInIndex function. Differential Revision: http://reviews.llvm.org/D21883 llvm-svn: 274784
-
Jim Ingham authored
This feature was added to solve a lookup problem in expressions when local variables shadow ivars. That solution requires fully realizing all local variables to evaluate any expression, and can cause significant performance problems when evaluating expressions in frames that have many complex locals. Until we get a better solution, this setting mitigates the problem when you don't have local variables that shadow ivars. <rdar://problem/27226122> llvm-svn: 274783
-
Justin Lebar authored
Fix build breakage. llvm-svn: 274782
-