This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 06f9b86 [cfi] Fix weak functions handling. new 13e440e [PowerPC] Add remaining vector permute builtins in altivec.h [...] new 085827f [ORC] Re-apply 286620 with fixes for the ErrorSuccess class. new cd5b334 Fix a reference-to-temporary introduced in r286607.
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: .../BuildingAJIT/Chapter5/RemoteJITUtils.h | 4 +- .../Kaleidoscope/BuildingAJIT/Chapter5/toy.cpp | 6 +- include/llvm/ExecutionEngine/Orc/OrcError.h | 1 + .../ExecutionEngine/Orc/OrcRemoteTargetClient.h | 171 +-- .../ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h | 265 ++-- .../ExecutionEngine/Orc/OrcRemoteTargetServer.h | 125 +- include/llvm/ExecutionEngine/Orc/RPCByteChannel.h | 231 ---- .../llvm/ExecutionEngine/Orc/RPCSerialization.h | 340 +++-- include/llvm/ExecutionEngine/Orc/RPCUtils.h | 1460 ++++++++++++-------- include/llvm/ExecutionEngine/Orc/RawByteChannel.h | 182 +++ include/llvm/IR/IntrinsicsPowerPC.td | 19 + lib/CodeGen/GlobalMerge.cpp | 18 +- lib/ExecutionEngine/Orc/CMakeLists.txt | 1 - lib/ExecutionEngine/Orc/OrcError.cpp | 2 + lib/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.cpp | 53 - lib/Target/PowerPC/PPCInstrAltivec.td | 24 +- lib/Target/PowerPC/PPCInstrVSX.td | 4 +- test/CodeGen/PowerPC/vsx-p9.ll | 70 + tools/lli/ChildTarget/ChildTarget.cpp | 19 +- tools/lli/RemoteJITUtils.h | 11 +- tools/lli/lli.cpp | 18 +- unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp | 236 ++-- 22 files changed, 1885 insertions(+), 1375 deletions(-) delete mode 100644 include/llvm/ExecutionEngine/Orc/RPCByteChannel.h create mode 100644 include/llvm/ExecutionEngine/Orc/RawByteChannel.h delete mode 100644 lib/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.cpp