This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from ded269b CodeGen: Remove MachineFunctionAnalysis => Enable (Machine)Mo [...] new eb3b739 Revert "(HEAD -> master, origin/master, origin/HEAD) CodeGen: [...]
The 1 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/AsmPrinter.h | 6 ++- include/llvm/CodeGen/MachineFunctionAnalysis.h | 55 ++++++++++++++++++++++ include/llvm/CodeGen/MachineModuleInfo.h | 23 +-------- include/llvm/Target/TargetMachine.h | 7 ++- lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 7 --- lib/CodeGen/CMakeLists.txt | 1 + lib/CodeGen/LLVMTargetMachine.cpp | 16 +++++-- lib/CodeGen/MachineFunctionAnalysis.cpp | 62 +++++++++++++++++++++++++ lib/CodeGen/MachineFunctionPass.cpp | 10 ++-- lib/CodeGen/MachineModuleInfo.cpp | 54 ++------------------- lib/CodeGen/StackMapLivenessAnalysis.cpp | 1 + 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 + 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 +- 25 files changed, 174 insertions(+), 95 deletions(-) create mode 100644 include/llvm/CodeGen/MachineFunctionAnalysis.h create mode 100644 lib/CodeGen/MachineFunctionAnalysis.cpp