This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 95da3656bae limit to 2 parallel links when using thinlto new 007530e1a2d AMDGPU: Add new amdgcn.init.exec intrinsics new 81de60661c3 TargetLowering: Add finalizeLowering() function; NFC new ea376dae259 Add speculatable function attribute
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 | 11 ++++ include/llvm/Bitcode/LLVMBitCodes.h | 3 +- include/llvm/IR/Attributes.td | 3 + include/llvm/IR/Function.h | 8 +++ include/llvm/IR/Intrinsics.td | 3 + include/llvm/IR/IntrinsicsAMDGPU.td | 15 +++++ include/llvm/Target/TargetLowering.h | 12 ++-- lib/AsmParser/LLLexer.cpp | 1 + lib/AsmParser/LLParser.cpp | 1 + lib/AsmParser/LLToken.h | 1 + lib/Bitcode/Reader/BitcodeReader.cpp | 3 + lib/Bitcode/Writer/BitcodeWriter.cpp | 2 + lib/CodeGen/GlobalISel/IRTranslator.cpp | 4 +- lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 8 +-- lib/CodeGen/TargetLoweringBase.cpp | 5 ++ lib/IR/Attributes.cpp | 2 + lib/IR/Verifier.cpp | 32 +++++++---- lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 2 + lib/Target/AMDGPU/AMDGPUISelLowering.h | 2 + lib/Target/AMDGPU/AMDGPUInstrInfo.td | 9 +++ lib/Target/AMDGPU/SIISelLowering.cpp | 65 +++++++++++++++++++++ lib/Target/AMDGPU/SIInstructions.td | 23 ++++++++ lib/Target/X86/X86ISelLowering.cpp | 15 +++-- lib/Target/X86/X86ISelLowering.h | 7 +-- test/Bitcode/attributes.ll | 10 +++- test/Bitcode/compatibility.ll | 10 +++- test/CodeGen/AMDGPU/llvm.amdgcn.init.exec.ll | 80 ++++++++++++++++++++++++++ test/Verifier/speculatable-callsite-invalid.ll | 24 ++++++++ test/Verifier/speculatable-callsite.ll | 20 +++++++ utils/TableGen/CodeGenIntrinsics.h | 3 + utils/TableGen/CodeGenTarget.cpp | 3 + utils/TableGen/IntrinsicEmitter.cpp | 11 +++- 32 files changed, 356 insertions(+), 42 deletions(-) create mode 100644 test/CodeGen/AMDGPU/llvm.amdgcn.init.exec.ll create mode 100644 test/Verifier/speculatable-callsite-invalid.ll create mode 100644 test/Verifier/speculatable-callsite.ll