This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 5896550 [ValueTracking] Use a function_ref to avoid multiple instantiations new 1bb228f CodeGen: Remove MachineFunctionAnalysis => Enable (Machine)Mo [...] new 2956257 GlobalISel: legalize conditional branches on AArch64. new 4f24b7d GlobalISel: legalize integer comparisons on AArch64. new 2a10560 GlobalISel: make truncate/extend casts uniform new 4cc20be [InstCombine] remove icmp shr folds that are already handled [...]
The 5 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/GlobalISel/MachineIRBuilder.h | 41 +++++++++--- include/llvm/CodeGen/MachineFunctionAnalysis.h | 55 ---------------- include/llvm/CodeGen/MachineModuleInfo.h | 25 +++++++- include/llvm/CodeGen/Passes.h | 3 + include/llvm/Target/GenericOpcodes.td | 2 +- include/llvm/Target/TargetMachine.h | 7 +- include/llvm/Target/TargetOpcodes.def | 2 +- lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 2 - lib/CodeGen/CMakeLists.txt | 1 - lib/CodeGen/GlobalISel/MachineIRBuilder.cpp | 52 ++++++++++++--- lib/CodeGen/GlobalISel/MachineLegalizeHelper.cpp | 62 ++++++++++++++---- lib/CodeGen/GlobalISel/MachineLegalizer.cpp | 7 +- lib/CodeGen/LLVMTargetMachine.cpp | 18 ++---- lib/CodeGen/MIRParser/MIParser.cpp | 2 +- lib/CodeGen/MachineFunctionAnalysis.cpp | 62 ------------------ lib/CodeGen/MachineFunctionPass.cpp | 10 +-- lib/CodeGen/MachineModuleInfo.cpp | 75 ++++++++++++++++++++-- lib/CodeGen/StackMapLivenessAnalysis.cpp | 1 - lib/Target/AArch64/AArch64MachineLegalizer.cpp | 19 ++++++ 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 | 20 +----- test/CodeGen/AArch64/GlobalISel/legalize-add.mir | 12 ++-- test/CodeGen/AArch64/GlobalISel/legalize-and.mir | 12 ++-- .../AArch64/GlobalISel/legalize-constant.mir | 8 +-- .../AArch64/GlobalISel/legalize-load-store.mir | 4 +- test/CodeGen/AArch64/GlobalISel/legalize-mul.mir | 12 ++-- test/CodeGen/AArch64/GlobalISel/legalize-or.mir | 12 ++-- .../CodeGen/AArch64/GlobalISel/legalize-simple.mir | 10 +++ test/CodeGen/AArch64/GlobalISel/legalize-sub.mir | 12 ++-- test/CodeGen/AArch64/GlobalISel/legalize-xor.mir | 12 ++-- 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 +- 43 files changed, 325 insertions(+), 262 deletions(-) delete mode 100644 include/llvm/CodeGen/MachineFunctionAnalysis.h delete mode 100644 lib/CodeGen/MachineFunctionAnalysis.cpp