This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b25352f371c AMDGPU: Handle s_buffer_load_dword hazard on SI new 509132b368e Represent runtime preemption in the IR. new e7df36ebba1 Reapply r316582 [Local] Fix a bug in the domtree update log [...]
The 2 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/BitCodeFormat.rst | 19 +- docs/LangRef.rst | 30 ++- include/llvm/IR/GlobalValue.h | 17 +- lib/AsmParser/LLLexer.cpp | 3 + lib/AsmParser/LLParser.cpp | 98 +++++++--- lib/AsmParser/LLParser.h | 8 +- lib/AsmParser/LLToken.h | 3 + lib/Bitcode/Reader/BitcodeReader.cpp | 29 ++- lib/Bitcode/Writer/BitcodeWriter.cpp | 15 +- lib/IR/AsmWriter.cpp | 8 + lib/IR/Globals.cpp | 1 + lib/IR/Verifier.cpp | 4 + lib/Target/TargetMachine.cpp | 3 +- lib/Transforms/Utils/Local.cpp | 10 +- test/Assembler/dllimport-dsolocal-diag.ll | 4 + test/Assembler/ifunc-dsolocal-daig.ll | 9 + test/Bitcode/dso_location.ll | 47 +++++ test/CodeGen/PowerPC/preemption.ll | 301 ++++++++++++++++++++++++++++++ test/CodeGen/X86/darwin-preemption.ll | 251 +++++++++++++++++++++++++ test/CodeGen/X86/linux-preemption.ll | 225 ++++++++++++++++++++++ test/CodeGen/X86/win32-preemption.ll | 236 +++++++++++++++++++++++ unittests/Transforms/Utils/Local.cpp | 45 +++++ 22 files changed, 1314 insertions(+), 52 deletions(-) create mode 100644 test/Assembler/dllimport-dsolocal-diag.ll create mode 100644 test/Assembler/ifunc-dsolocal-daig.ll create mode 100644 test/Bitcode/dso_location.ll create mode 100644 test/CodeGen/PowerPC/preemption.ll create mode 100644 test/CodeGen/X86/darwin-preemption.ll create mode 100644 test/CodeGen/X86/linux-preemption.ll create mode 100644 test/CodeGen/X86/win32-preemption.ll