This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 382877c17c0 [PowerPC] Enhance the selection(ISD::VSELECT) of vector type new 8bcdd04bcef [WebAssembly] Add support for the event section
The 1 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/BinaryFormat/Wasm.h | 23 ++- include/llvm/BinaryFormat/WasmRelocs.def | 2 +- include/llvm/CodeGen/WasmEHFuncInfo.h | 2 + include/llvm/MC/MCExpr.h | 1 + include/llvm/MC/MCSymbolWasm.h | 17 +- include/llvm/Object/RelocVisitor.h | 1 + include/llvm/Object/Wasm.h | 19 +- include/llvm/ObjectYAML/WasmYAML.h | 22 +++ lib/BinaryFormat/Wasm.cpp | 2 + lib/CodeGen/AsmPrinter/WasmException.cpp | 16 ++ lib/CodeGen/AsmPrinter/WasmException.h | 2 +- lib/MC/MCExpr.cpp | 2 + lib/MC/WasmObjectWriter.cpp | 191 +++++++++++++++------ lib/Object/WasmObjectFile.cpp | 95 +++++++++- lib/ObjectYAML/WasmYAML.cpp | 24 +++ .../MCTargetDesc/WebAssemblyMCCodeEmitter.cpp | 23 ++- .../MCTargetDesc/WebAssemblyMCTargetDesc.h | 5 +- .../MCTargetDesc/WebAssemblyTargetStreamer.cpp | 19 ++ .../MCTargetDesc/WebAssemblyTargetStreamer.h | 4 + .../MCTargetDesc/WebAssemblyWasmObjectWriter.cpp | 7 + lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp | 7 +- lib/Target/WebAssembly/WebAssemblyISD.def | 1 + lib/Target/WebAssembly/WebAssemblyISelLowering.cpp | 42 +++++ lib/Target/WebAssembly/WebAssemblyISelLowering.h | 1 + lib/Target/WebAssembly/WebAssemblyInstrControl.td | 14 +- lib/Target/WebAssembly/WebAssemblyInstrInfo.td | 7 + lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp | 49 ++++-- lib/Target/WebAssembly/WebAssemblyMCInstLower.h | 2 +- test/CodeGen/WebAssembly/exception.ll | 5 +- test/MC/WebAssembly/event-section.ll | 58 +++++++ test/ObjectYAML/wasm/event_section.yaml | 92 ++++++++++ tools/llvm-readobj/WasmDumper.cpp | 15 +- tools/obj2yaml/wasm2yaml.cpp | 17 ++ tools/yaml2obj/yaml2wasm.cpp | 37 ++-- 34 files changed, 708 insertions(+), 116 deletions(-) create mode 100644 test/MC/WebAssembly/event-section.ll create mode 100644 test/ObjectYAML/wasm/event_section.yaml