This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from ea8353074c9 [EarlyCSE] Exploit open ended invariant.start scopes new 0d758f3663c [CodeGen] Use MIR syntax for MachineMemOperand printing new 4d4a317f80f [FastISel] Sink local value materializations to first use new 91c8f6f87b8 [X86][Btver2] Add ResourceCycles and NumMicroOps overrides [...]
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/FastISel.h | 18 +- include/llvm/CodeGen/FunctionLoweringInfo.h | 2 + include/llvm/CodeGen/MachineMemOperand.h | 3 + lib/CodeGen/MIRPrinter.cpp | 156 +----------- lib/CodeGen/MachineInstr.cpp | 28 ++- lib/CodeGen/MachineOperand.cpp | 271 +++++++++++++-------- lib/CodeGen/SelectionDAG/FastISel.cpp | 159 +++++++++++- lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp | 1 + lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp | 27 +- lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 + lib/Target/X86/X86ScheduleBtVer2.td | 10 +- test/CodeGen/AArch64/GlobalISel/arm64-fallback.ll | 26 +- test/CodeGen/AArch64/aarch64-stp-cluster.ll | 8 +- test/CodeGen/AArch64/arm64-abi_align.ll | 30 ++- test/CodeGen/AArch64/arm64-fast-isel-call.ll | 8 +- test/CodeGen/AArch64/arm64-fast-isel-gv.ll | 4 +- test/CodeGen/AArch64/arm64-fast-isel-intrinsic.ll | 2 +- test/CodeGen/AArch64/arm64-fast-isel.ll | 2 + test/CodeGen/AArch64/arm64-misched-memdep-bug.ll | 6 +- .../AArch64/arm64-patchpoint-webkit_jscc.ll | 12 +- test/CodeGen/AArch64/swifterror.ll | 4 +- test/CodeGen/AMDGPU/extload-align.ll | 2 +- test/CodeGen/ARM/2012-06-12-SchedMemLatency.ll | 4 +- test/CodeGen/ARM/fast-isel-call.ll | 86 +++---- test/CodeGen/ARM/fast-isel-intrinsic.ll | 18 +- test/CodeGen/ARM/fast-isel-select.ll | 22 +- test/CodeGen/ARM/fast-isel-vararg.ll | 23 +- test/CodeGen/ARM/ldrd-memoper.ll | 2 +- test/CodeGen/ARM/misched-int-basic-thumb2.mir | 4 +- test/CodeGen/ARM/single-issue-r52.mir | 2 +- test/CodeGen/ARM/swifterror.ll | 5 +- test/CodeGen/Hexagon/post-inc-aa-metadata.ll | 2 +- test/CodeGen/Mips/Fast-ISel/callabi.ll | 99 ++++---- test/CodeGen/Mips/Fast-ISel/simplestore.ll | 2 +- test/CodeGen/Mips/Fast-ISel/simplestorei.ll | 6 +- test/CodeGen/PowerPC/byval-agg-info.ll | 4 +- .../PowerPC/combine_loads_from_build_pair.ll | 8 +- test/CodeGen/PowerPC/unal-vec-negarith.ll | 4 +- test/CodeGen/X86/GlobalISel/x86_64-fallback.ll | 2 +- test/CodeGen/X86/avx512-mask-zext-bugfix.ll | 41 ++-- test/CodeGen/X86/bmi-intrinsics-fast-isel.ll | 32 +-- test/CodeGen/X86/fast-isel-call-cleanup.ll | 6 +- test/CodeGen/X86/fast-isel-store.ll | 44 +--- test/CodeGen/X86/inreg.ll | 2 +- .../X86/merge-store-partially-alias-loads.ll | 8 +- test/CodeGen/X86/pr32241.ll | 30 +-- test/CodeGen/X86/pr32284.ll | 110 ++++----- test/CodeGen/X86/pr32340.ll | 38 +-- test/CodeGen/X86/pr32345.ll | 94 +++---- test/CodeGen/X86/pr32484.ll | 2 +- test/CodeGen/X86/sink-local-value.ll | 210 ++++++++++++++++ test/CodeGen/X86/sse-intrinsics-fast-isel.ll | 2 +- test/CodeGen/X86/stack-protector-weight.ll | 12 +- test/CodeGen/X86/win32_sret.ll | 20 +- test/DebugInfo/COFF/lines-bb-start.ll | 1 + test/DebugInfo/Mips/delay-slot.ll | 8 +- test/DebugInfo/X86/debug-loc-asan.ll | 10 +- test/DebugInfo/X86/prologue-stack.ll | 2 + 58 files changed, 1019 insertions(+), 727 deletions(-) create mode 100644 test/CodeGen/X86/sink-local-value.ll