This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 2ec3239eb10 [llvm-mca] Use llvm::ArrayRef in class SourceMgr. NFCI new c1d5ac81906 Some cleanups to the native pdb plugin [NFC]. new c0db9a7416d DAG: Change behavior of fminnum/fmaxnum nodes new b582972288e [llvm-mca] Remove a couple of using directives and a bunch [...]
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/CodeGen/ISDOpcodes.h | 11 +- include/llvm/CodeGen/TargetLowering.h | 3 + include/llvm/DebugInfo/CodeView/TypeRecord.h | 4 + include/llvm/DebugInfo/PDB/Native/TpiStream.h | 4 + include/llvm/Target/TargetSelectionDAG.td | 5 + lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 11 + lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 7 +- lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp | 12 + lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp | 2 + lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 26 +- lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp | 3 + lib/CodeGen/SelectionDAG/TargetLowering.cpp | 29 + lib/CodeGen/TargetLoweringBase.cpp | 2 + lib/DebugInfo/PDB/Native/TpiStream.cpp | 19 + lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 8 + lib/Target/AMDGPU/AMDGPUISelLowering.h | 1 + lib/Target/AMDGPU/AMDGPUInstructions.td | 28 + lib/Target/AMDGPU/SIISelLowering.cpp | 166 +++- lib/Target/AMDGPU/SIISelLowering.h | 6 + lib/Target/AMDGPU/SIInstructions.td | 13 +- lib/Target/AMDGPU/VOP2Instructions.td | 8 +- lib/Target/AMDGPU/VOP3Instructions.td | 4 +- lib/Target/AMDGPU/VOP3PInstructions.td | 4 +- test/CodeGen/AMDGPU/clamp.ll | 20 +- test/CodeGen/AMDGPU/fcanonicalize-elimination.ll | 77 +- test/CodeGen/AMDGPU/fmax3.f64.ll | 11 +- test/CodeGen/AMDGPU/fmax3.ll | 44 +- test/CodeGen/AMDGPU/fmax_legacy.f16.ll | 16 +- test/CodeGen/AMDGPU/fmax_legacy.ll | 97 ++- test/CodeGen/AMDGPU/fmaxnum.ll | 56 +- test/CodeGen/AMDGPU/fmin3.ll | 35 +- test/CodeGen/AMDGPU/fmin_fmax_legacy.amdgcn.ll | 49 +- test/CodeGen/AMDGPU/fmin_legacy.f16.ll | 16 +- test/CodeGen/AMDGPU/fmin_legacy.ll | 126 +++- test/CodeGen/AMDGPU/fminnum.f64.ll | 36 +- test/CodeGen/AMDGPU/fminnum.ll | 77 +- test/CodeGen/AMDGPU/fneg-combines.ll | 311 ++++++-- test/CodeGen/AMDGPU/known-never-snan.ll | 69 +- test/CodeGen/AMDGPU/llvm.maxnum.f16.ll | 782 +++++++++++++++---- test/CodeGen/AMDGPU/llvm.minnum.f16.ll | 836 +++++++++++++++++---- test/CodeGen/AMDGPU/reduction.ll | 112 ++- tools/llvm-mca/CodeRegion.cpp | 17 +- tools/llvm-mca/PipelinePrinter.cpp | 2 - tools/llvm-mca/Views/DispatchStatistics.cpp | 2 +- tools/llvm-mca/Views/RegisterFileStatistics.cpp | 2 +- .../llvm-mca/Views/RetireControlUnitStatistics.cpp | 2 +- tools/llvm-mca/Views/SchedulerStatistics.cpp | 2 +- tools/llvm-mca/Views/SummaryView.cpp | 2 +- 48 files changed, 2526 insertions(+), 649 deletions(-)