This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 8614146 [RDF] Add registers to live set even if they are live already new 50ca9e1 AMDGPU: Custom lower more vector operations new 32028c8 [Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC) new 32a651b Makes promoteIndirectCall an external function.
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/Analysis/TargetLibraryInfo.def | 2 +- include/llvm/Analysis/TargetLibraryInfo.h | 78 +- include/llvm/Transforms/Instrumentation.h | 14 + include/llvm/Transforms/Utils/SimplifyLibCalls.h | 4 +- lib/Analysis/BasicAliasAnalysis.cpp | 4 +- lib/Analysis/ConstantFolding.cpp | 176 +-- lib/Analysis/MemoryBuiltins.cpp | 96 +- lib/Analysis/MemoryLocation.cpp | 4 +- lib/Analysis/TargetLibraryInfo.cpp | 1138 ++++++++++---------- lib/Analysis/ValueTracking.cpp | 116 +- lib/CodeGen/SelectionDAG/FastISel.cpp | 2 +- lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 114 +- lib/LTO/UpdateCompilerUsed.cpp | 2 +- lib/Target/AMDGPU/SIISelLowering.cpp | 100 ++ lib/Target/AMDGPU/SIISelLowering.h | 5 + lib/Target/PowerPC/PPCCTRLoops.cpp | 68 +- lib/Transforms/IPO/GlobalOpt.cpp | 4 +- .../Instrumentation/IndirectCallPromotion.cpp | 24 +- lib/Transforms/Scalar/DeadStoreElimination.cpp | 8 +- lib/Transforms/Scalar/LoopIdiomRecognize.cpp | 6 +- lib/Transforms/Scalar/MemCpyOptimizer.cpp | 4 +- lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp | 10 +- lib/Transforms/Utils/BuildLibCalls.cpp | 392 +++---- lib/Transforms/Utils/LibCallsShrinkWrap.cpp | 182 ++-- lib/Transforms/Utils/Local.cpp | 2 +- lib/Transforms/Utils/SimplifyLibCalls.cpp | 316 +++--- test/CodeGen/AMDGPU/amdgpu.private-memory.ll | 10 +- test/CodeGen/AMDGPU/extract_vector_elt-f16.ll | 128 +++ test/CodeGen/AMDGPU/extract_vector_elt-i16.ll | 43 +- test/CodeGen/AMDGPU/insert_vector_elt.v2i16.ll | 350 ++++++ unittests/Analysis/TargetLibraryInfoTest.cpp | 8 +- 31 files changed, 2006 insertions(+), 1404 deletions(-) create mode 100644 test/CodeGen/AMDGPU/extract_vector_elt-f16.ll create mode 100644 test/CodeGen/AMDGPU/insert_vector_elt.v2i16.ll