forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[mono] Use llvm 19.1.0 (dotnet#105427)
* Bump to updated llvm 19 * Fix mono_llvm_check_cpu_features * Update llvm deps * Update emsdk and icu deps * Remove wrong python dependency * Temporarily make WBT use WorkloadsTestPreviousVersions = true * Fix windows build, add ntdll dependency Co-authored-by: Alexander Köplinger <[email protected]> * Fix alloca builder creation This was hitting assert with debug version of llvm * Update eh_typeid_for intrinsic The signature changed in dotnet/llvm-project@10edb4991c127 This fixes crash during registration of the intrinsic and the generated IR is now different. Before: CATCHPAD0_BB4: ; preds = %LPAD0_BB3 %11 = catchpad within %10 [ptr @_ZTIPi] %12 = tail call ptr @llvm.wasm.get.exception(token %11) %13 = tail call i32 @llvm.wasm.get.ehselector(token %11) %14 = tail call i32 @llvm.eh.typeid.for(ptr @_ZTIPi) %15 = icmp eq i32 %13, %14 br i1 %15, label %CATCH_BB5, label %NOCATCH_BB6 After: CATCHPAD0_BB4: ; preds = %LPAD0_BB3 %11 = catchpad within %10 [ptr @_ZTIPi] %12 = tail call ptr @llvm.wasm.get.exception(token %11) %13 = tail call i32 @llvm.wasm.get.ehselector(token %11) %14 = tail call i32 @llvm.eh.typeid.for.p0(ptr @_ZTIPi) %15 = icmp eq i32 %13, %14 br i1 %15, label %CATCH_BB5, label %NOCATCH_BB6 * Fix crash in emit_llvmonly_handler_start Do not try to emit branch when target_bb is not set * Fix swizzle_mask type That was catched by llvm debug asserts, the mask should be vector of 16 int8 * Set unwind table kind To stop hitting assert in the verbose output, when aot compiler is built with the debug configuration of llvm * Update deps to llvm rc3 * Update emsdk and icu deps * Revert "Temporarily make WBT use WorkloadsTestPreviousVersions = true" This reverts commit 7c37082. * Update deps for llvm 19/rc4 * Revert "Set unwind table kind" This reverts commit bba756c. * Remove crashing wasi AOT tests * Disable wasi smoke AOT tests * Disable failing WBT test for wasi * Update dependencies to get llvm 19.1.0 * Update emsdk and icu deps with updated binaryen * Fix emscripten versions * Add emscripten coherency dependencies back * Update llvm and derived dependencies * Remove general testing channel --------- Co-authored-by: Alexander Köplinger <[email protected]>
- Loading branch information
1 parent
4e2fe8d
commit 1e48f9e
Showing
8 changed files
with
81 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.