This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from e994d79 [MC] Support .dc directives in assembler parser new 35f70a7 [InstCombine] use local variables for repeated values; NFCI new 373a882 GlobalISel: add some G_TRUNCs to make icmp test valid MIR. new 5a65f77 Revert r279564. It introduces undefined behavior (binding a r [...] new e45f656 Remove unused data member to unbreak -Werror builds.
The 4 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/MachineFunctionAnalysis.h | 55 ++++++++++++++++ include/llvm/CodeGen/MachineModuleInfo.h | 25 +------- include/llvm/CodeGen/Passes.h | 3 - include/llvm/CodeGen/StackMaps.h | 3 - include/llvm/Target/TargetMachine.h | 7 +- lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 2 + lib/CodeGen/CMakeLists.txt | 1 + lib/CodeGen/LLVMTargetMachine.cpp | 18 ++++-- lib/CodeGen/MachineFunctionAnalysis.cpp | 62 ++++++++++++++++++ lib/CodeGen/MachineFunctionPass.cpp | 10 ++- lib/CodeGen/MachineModuleInfo.cpp | 75 ++-------------------- lib/CodeGen/StackMapLivenessAnalysis.cpp | 1 + lib/CodeGen/StackMaps.cpp | 3 +- lib/Target/AMDGPU/AMDILCFGStructurizer.cpp | 4 +- lib/Target/Hexagon/HexagonCommonGEP.cpp | 1 + lib/Target/Hexagon/HexagonGenExtract.cpp | 2 + lib/Target/Hexagon/HexagonNewValueJump.cpp | 1 + lib/Target/Hexagon/HexagonOptimizeSZextends.cpp | 3 + lib/Target/Hexagon/HexagonVLIWPacketizer.cpp | 1 + lib/Target/NVPTX/NVPTXAllocaHoisting.cpp | 2 + lib/Target/NVPTX/NVPTXGenericToNVVM.cpp | 1 + lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp | 2 + lib/Target/NVPTX/NVPTXTargetMachine.cpp | 1 + lib/Transforms/InstCombine/InstCombineCompares.cpp | 21 +++--- test/CodeGen/AArch64/GlobalISel/legalize-cmp.mir | 28 ++++---- test/CodeGen/Generic/stop-after.ll | 1 + test/CodeGen/X86/hidden-vis-pic.ll | 2 +- tools/llc/llc.cpp | 3 +- unittests/MI/LiveIntervalTest.cpp | 3 +- 29 files changed, 198 insertions(+), 143 deletions(-) create mode 100644 include/llvm/CodeGen/MachineFunctionAnalysis.h create mode 100644 lib/CodeGen/MachineFunctionAnalysis.cpp