Roll llvm-project from bde39d72515d to a10f6c1e689a (32 revisions)

https://chromium.googlesource.com/external/github.com/llvm/llvm-project.git/+log/bde39d72515d..a10f6c1e689a

2025-05-06 dtcxzyw2333@gmail.com [InstCombine] Handle isnormal idiom (#125454)
2025-05-06 nicholas.guy@arm.com [AArch64][SelectionDAG] Add support for 8to64 partial reduction cases (#138269)
2025-05-06 nicholas.guy@arm.com [DAGCombiner] Add DAG combine for PARTIAL_REDUCE_MLA when no mul op (#131326)
2025-05-06 zyedidia@gmail.com [AArch64] Emit .arch and .arch_extension during assembly to textual asm (#138433)
2025-05-06 Matthew.Arsenault@amd.com IR: Remove reference counts from ConstantData (#137314)
2025-05-06 Matthew.Arsenault@amd.com IR: Remove uselist for constantdata (#137313)
2025-05-06 orlando.hyams@sony.com [KeyInstr][debugify] Add --debugify-atoms to add key instructions metadata (#133483)
2025-05-06 kazu@google.com [Transforms] Use SmallMapVector::contains (NFC) (#138645)
2025-05-06 kazu@google.com [mlir] Remove unused local variables (NFC) (#138642)
2025-05-06 kazu@google.com [lld] Remove redundant calls to std::unique_ptr<T>::get (NFC) (#138641)
2025-05-06 a.bataev@outlook.com [SLP]Do not match nodes if schedulability of parent nodes is different
2025-05-06 ashermancinelli@gmail.com [flang] Lower volatile class types (#138607)
2025-05-06 preames@rivosinc.com [SDAG] Merge memcpy and memcpy.inline lowering paths (#138619)
2025-05-06 mikhail@igalia.com [libc] Fix implicit conversion error on rv32 (#138622)
2025-05-06 67495422+kaviya2510@users.noreply.github.com [Flang][OpenMP] Support for lowering of taskloop construct to MLIR (#138646)
2025-05-06 guochen2@amd.com [AMDGPU][True16][MC] update mc test of a few vop1 t16 inst (#135588)
2025-05-06 orlando.hyams@sony.com [KeyInstr][SimplifyCFG] Remap atoms when folding br to common succ into pred (#133482)
2025-05-06 npopov@redhat.com [FunctionAttrs] Only consider provenance capture in access attr inference (#138535)
2025-05-06 orlando.hyams@sony.com [KeyInstr] Inline atom info (#133481)
2025-05-06 enh@google.com stdlib.yaml: qsort_r() is in POSIX 2024 (aka issue 8). (#138572)
2025-05-06 ekeane@nvidia.com Add missed quote on title of enum_select section
2025-05-06 PeddleSpam@users.noreply.github.com [X86][AVX] Match v4f64 blend from shuffle of scalar values. (#135753)
2025-05-06 Jake.egan@ibm.com [sanitizer_common] Split FREXPF/FREXPL interceptor defines (#138624)
2025-05-06 Jake.egan@ibm.com [sanitizer_common] Use internal_memcpy with wcrtomb/wctomb interceptors (#138623)
2025-05-06 pavel@labath.sk [lldb/docs] Fix/improve the gdb command map for dynamic types (#138538)
2025-05-06 pavel@labath.sk [lldb/Host] Enable inheriting "non-inheritable" FDs (#126935)
2025-05-06 sander.desmalen@arm.com [DAGCombine] Simplify partial_reduce_*mla with constant. (#138289)
2025-05-06 orlando.hyams@sony.com [KeyInstr] Merge atoms in DILocation::getMergedLocation (#133480)
2025-05-06 yerimyah1@gmail.com [lldb][lldb-dap] use the new protocol for setVariable requests. (#137803)
2025-05-06 npopov@redhat.com [BasicAA] Gracefully handle large LocationSize (#138528)
2025-05-06 corentinjabot@gmail.com [Clang] Implement the core language parts of P2786 - Trivial relocation (#127636)
2025-05-06 orlando.hyams@sony.com [NFC][KeyInstr] Add Atom Group (re)mapping (#133479)

If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/llvm-project-emscripten-releases
Please CC dschuff@google.com,wasm-waterfall@grotations.appspotmail.com on the revert to ensure that a human
is aware of the problem.

To report a problem with the AutoRoller itself, please file a bug:
https://issues.skia.org/issues/new?component=1389291&template=1850622

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md

Tbr: wasm-waterfall@grotations.appspotmail.com
Change-Id: Ie427828ff6316c6e7faa91880dfab1e575d4297f
Reviewed-on: https://chromium-review.googlesource.com/c/emscripten-releases/+/6516220
Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com>
Bot-Commit: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com>
1 file changed
tree: a27a554b50c11029926f073b13b64e43d4118ed7
  1. src/
  2. third_party/
  3. .gitignore
  4. bots.json
  5. codereview.settings
  6. DEPS
  7. DEPS.tagged-release
  8. PRESUBMIT.py
  9. README.md
README.md

Emscripten Releases

This is meta-repository which brings together all the repositories needed to produce an emscripten release. The revisions used in each release are tracked in a DEPS file (See depot_tools for more information). This file contains a history of revisions that have been built and tested together and represent a known good state.

Each release is automatically built and uploaded to to Google Cloud Storage and can be used standalone or with emsdk.

The build status for the automated builds can be seen here

Updating DEPS entries

Install depot_tools and then check out: gclient config https://chromium.googlesource.com/emscripten-releases (Do this only once)

Update working trees:

  • git pull
  • gclient sync

Update a DEPS entry:

  • cd emscripten-releases
  • git checkout -b <branch>
  • roll-dep emscripten-releases/llvm-project
  • git cl upload

The argument to roll-dep must match one of the keys in the ‘deps’ dictionary in the DEPS file. See roll-dep -h for more options.

༼ ༎ຶ ෴ ༎ຶ༽ Build and test scripts in src/

This directory was forked from the WebAssembly waterfall repo That repo was retired because it was only used by emscripten-releases.

How do I run it?

  1. Get the sources
  2. Install depot_tools. Follow the instructions
  3. Install pkg-config if you don't have it installed already, e.g. # apt install pkg-config
  4. Run build.py python src/build.py

Build.py has 3 types of actions:

  • downloading/updating sources for tools and engines (sync)
  • building those sources (build)
  • running tests against them (test).

Each of these types has multiple steps (e.g. a build step for each component). If you run build.py with no arguments, it will run all the sync, build, and test steps. If you make a change and only want to run a subset of steps, you can apply filters from the command line, via exclusions (to prevent specified steps from running) or inclusions (to run only the specified steps). Sync, build, and test exclusions are specified separately. For example:

  1. Do not sync any sources, build everything except LLVM, and run all tests: $ src/build.py --no-sync --build-exclude=llvm
  2. Sync only binaryen, build LLVM and Binaryen, run everything other than the emscripten testsuites: $ src/build.py --sync-include=binaryen --build-include=llvm,binaryen --test-exclude=emtest,emtest-asm

The script should throw an error if you specify nonexistent steps or if you specify both includes and excludes for the same type of action.

When run, the script creates a directory src/work inside the waterfall‘s git checkout. All modifications are made inside this directory (checking and out and building the sources, as well as the test builds and execution results). You can also use the git checkouts (e.g. src/work/llvm) with your own branches; the sync steps will check out the latest revision from the script’s remote repositories but will not overwrite or destroy any local work.