This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 87d1190 DAGCombiner: Relax alignment restriction when changing store type new 6217a62 TLI: Only iterate over integer vector types new 74eabdd Introduce llvm.load.relative intrinsic. new f8d640b AMDGPU: Fix crash when dumping unknown opcode
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: docs/LangRef.rst | 25 +++++++ include/llvm/CodeGen/Passes.h | 5 ++ include/llvm/IR/Intrinsics.td | 3 + include/llvm/InitializePasses.h | 1 + lib/Analysis/InlineCost.cpp | 5 ++ lib/Analysis/InstructionSimplify.cpp | 61 ++++++++++++++++ lib/CodeGen/CMakeLists.txt | 1 + lib/CodeGen/CodeGen.cpp | 1 + lib/CodeGen/LLVMTargetMachine.cpp | 2 + lib/CodeGen/PreISelIntrinsicLowering.cpp | 85 ++++++++++++++++++++++ lib/CodeGen/TargetLoweringBase.cpp | 7 +- test/CodeGen/Generic/stop-after.ll | 2 +- test/Transforms/InstSimplify/load-relative-32.ll | 19 +++++ test/Transforms/InstSimplify/load-relative.ll | 75 +++++++++++++++++++ .../PreISelIntrinsicLowering/load-relative.ll | 26 +++++++ tools/llvm-objdump/llvm-objdump.cpp | 5 ++ tools/opt/opt.cpp | 1 + 17 files changed, 319 insertions(+), 5 deletions(-) create mode 100644 lib/CodeGen/PreISelIntrinsicLowering.cpp create mode 100644 test/Transforms/InstSimplify/load-relative-32.ll create mode 100644 test/Transforms/InstSimplify/load-relative.ll create mode 100644 test/Transforms/PreISelIntrinsicLowering/load-relative.ll