This patch fixes several bugs in WebAssemblyLowerEmscriptenExceptions pass. Depends on D22958.
- Delete '_' prefixes from JS library function names. fixImports() function in JS glue code deals with this for wasm.
- Change command-line option names in order to be consistent with asm.js.
- Add missing lowering code for llvm.eh.typeid.for intrinsics
- Delete commas in mangled function names
- Fix a function argument attributes bug. Because we add the pointer to the original callee as the first argument of invoke wrapper, all argument attribute indices have to be incremented by one.
We could just have
LLVMContext &C = F.getContext();
Then this and all those getContext() calls below would be shorter.