- Jun 10, 2017
-
-
Rui Ueyama authored
SHF_GROUP bit doesn't make sense in executables or DSOs, so linkers are expected to remove that bit from section flags. We did that when we create output sections. This patch is to do that earlier than before. Now the flag is dropped when we instantiate input section objects. This change improves ICF. Previously, two sections that differ only in SHF_GROUP flag were not merged, because when the control reached ICF, the flag was still there. Now the flag is dropped before reaching to ICF, so the difference is ignored naturally. This issue was found by pcc. Differential Revision: https://reviews.llvm.org/D34074 llvm-svn: 305134
-
Vedant Kumar authored
Failing bot: http://lab.llvm.org:8080/green/job/clang-stage1-cmake-RA-expensive/6891 llvm-svn: 305133
-
Andrew Kaylor authored
Differential Revision: https://reviews.llvm.org/D33737 llvm-svn: 305132
-
Sanjay Patel authored
llvm-svn: 305131
-
Richard Trieu authored
llvm-svn: 305130
-
Sanjay Patel authored
We're currently passing endian-ness around as a param (and not uniformly), so this eliminates the need for that. I'd like to add a constant fold call too, and that requires a DL. llvm-svn: 305129
-
Erich Keane authored
UBSan found an issue with a nullptr being assigned to a reference. This was because a following function went back and checked the identifier in the CPPOperatorName case. This patch corrects that location with the original logic as well. llvm-svn: 305128
-
I-Jui (Ray) Sung authored
Summary: - Fix assertion failures on F16 to/from int types in FastISel by falling back to regular ISel - Add a testcase of various conversion cases with FastISel (-O0) Reviewers: kristof.beyls, jmolloy, SjoerdMeijer Reviewed By: SjoerdMeijer Subscribers: SjoerdMeijer, llvm-commits, srhines, pirama, aemerson, rengolin, javed.absar, kristof.beyls Differential Revision: https://reviews.llvm.org/D33734 llvm-svn: 305127
-
Richard Smith authored
Patch by Taiju Tsuiki! Differential Revision: https://reviews.llvm.org/D33875 llvm-svn: 305126
-
Vassil Vassilev authored
This adds a new flag -style which is passed to clang-apply-replacements and defaults to file meaning it would pick up the closest .clang-format file in tree. llvm-svn: 305125
-
Alexander Shaposhnikov authored
This diff removes temporary file t2 in fixit.c and updates the test command accordingly. NFC. Test plan: make check-all Differential revision: https://reviews.llvm.org/D34066 llvm-svn: 305124
-
Vassil Vassilev authored
Patch by David Abdurachmanov! llvm-svn: 305123
-
Alex Lorenz authored
It caused `Index/availability.c` test failure on Linux llvm-svn: 305122
-
Richard Smith authored
llvm-svn: 305121
-
- Jun 09, 2017
-
-
Vassil Vassilev authored
Currently, we load all template specialization if we have more than one module attached and we touch anything around the template definition. This patch registers the template specializations as lazily-loadable entities. In some TUs it reduces the amount of deserializations by 1%. llvm-svn: 305120
-
Eugene Zelenko authored
[Support] Fix some Clang-tidy modernize-use-using and Include What You Use warnings; other minor fixes (NFC). llvm-svn: 305119
-
Vassil Vassilev authored
n the current local-submodule-visibility mode, as soon as we discover a virtual destructor, we declare on demand a global delete operator. However, this causes that this delete operator is owned by the submodule which contains said virtual destructor. This means that other modules no longer can see the global delete operator which is hidden inside another submodule and fail to compile. This patch unhides those global allocation function once they're created to prevent this issue. Patch by Raphael Isemann (D33366)! llvm-svn: 305118
-
Alex Lorenz authored
availability Patch by Ronald Wampler! Differential Revision: https://reviews.llvm.org/D33478 llvm-svn: 305117
-
Richard Smith authored
If specified, when preprocessing, the contents of imported .pcm files will be included in preprocessed output. The resulting preprocessed file can then be compiled standalone without the module sources or .pcm files. llvm-svn: 305116
-
Craig Topper authored
llvm-svn: 305115
-
Craig Topper authored
Previously it was non-const reference named Result which would tend to make someone think that it was an outparam when really its an input. llvm-svn: 305114
-
Xinliang David Li authored
llvm-svn: 305113
-
Rui Ueyama authored
llvm-svn: 305112
-
Davide Italiano authored
llvm-svn: 305111
-
Richard Trieu authored
Recommit r304592 that was reverted in r304618. r305104 should have fixed the issue. llvm-svn: 305110
-
Davide Italiano authored
llvm-svn: 305109
-
Zachary Turner authored
llvm-svn: 305108
-
Yaxun Liu authored
Currently there is a bug in SROA::presplitLoadsAndStores which causes assertion in GEPOperator::accumulateConstantOffset. Basically it does not consider the situation that the pointer operand of load or store may be in a non-zero address space and its size may be different from the size of a pointer in address space 0. This patch fixes assertion when compiling Blender Cycles kernels for amdgpu backend. Diffferential Revision: https://reviews.llvm.org/D33298 llvm-svn: 305107
-
Zachary Turner authored
This is to reflect the evolving nature of the tool as being useful for more than just dumping PDBs, as it can do many other things. Differential Revision: https://reviews.llvm.org/D34062 llvm-svn: 305106
-
Francis Ricci authored
Summary: This prevents the iterator overrides from being selected in the case where non-iterator types are used as arguments, which is of particular importance in cases where other overrides with identical types exist. Reviewers: dblaikie, bkramer, rafael Subscribers: llvm-commits, efriedma Differential Revision: https://reviews.llvm.org/D33919 llvm-svn: 305105
-
Richard Trieu authored
Speculatively try to fix the underlying issue from r304592, of underlying types being confused when inline namespaces are used. llvm-svn: 305104
-
Benjamin Kramer authored
llvm-svn: 305103
-
Keno Fischer authored
Summary: isSafeToSpeculativelyExecute is the wrong predicate to use here. All that checks for is whether it is safe to hoist a value due to unaligned/un-dereferencable accesses. However, not only are we doing sinking rather than hoisting, our concern is that the location we're loading from may have been modified. Instead forbid sinking any load across a critical edge. Reviewers: majnemer Subscribers: davide, llvm-commits Differential Revision: https://reviews.llvm.org/D33179 llvm-svn: 305102
-
Richard Smith authored
as part of a compilation. This is intended for two purposes: 1) Writing self-contained test cases for modules: we can now write a single source file test that builds some number of module files on the side and imports them. 2) Debugging / test case reduction. A single-source testcase is much more amenable to reduction, compared to a VFS tarball or .pcm files. llvm-svn: 305101
-
Benjamin Kramer authored
llvm-svn: 305100
-
Davide Italiano authored
llvm-svn: 305099
-
Stanislav Mekhanoshin authored
Differential Revision: https://reviews.llvm.org/D34046 llvm-svn: 305098
-
Benjamin Kramer authored
llvm-svn: 305097
-
Rafael Espindola authored
It is not needed since we have the disassemble. llvm-svn: 305096
-
Zachary Turner authored
llvm-svn: 305095
-