| commit | 6206d7d3e1979e7f3e66538614f9f44413a16905 | [log] [tgz] |
|---|---|---|
| author | Simon Pilgrim <llvm-dev@redking.me.uk> | Tue Jun 03 09:07:56 2025 +0100 |
| committer | GitHub <noreply@github.com> | Tue Jun 03 09:07:56 2025 +0100 |
| tree | 4682f62d263b6291639f34f75e5679c05cf5ebc6 | |
| parent | 06f779b69d8294b296ee9dd14b82f0e2fe59899f [diff] |
[X86] combineConstantPoolLoads - correctly merge constant pool loads by pointer and chain (#139575) We were merging with a larger constant pool load if it didn't have any chain dependencies (and implicitly assuming all uses were on the vector value), instead we should flip this, explicitly check for uses of the vector value and merge the memory chain dependencies with makeEquivalentMemoryOrdering. As these are constant pool loads we shouldn't expect any changes here, but we should be consistent with how we merge/reuse loads - an upcoming patch for other loads will do the same as we will see changes there.
Welcome to the LLVM project!
This repository contains the source code for LLVM, a toolkit for the construction of highly optimized compilers, optimizers, and run-time environments.
The LLVM project has multiple components. The core of the project is itself called “LLVM”. This contains all of the tools, libraries, and header files needed to process intermediate representations and convert them into object files. Tools include an assembler, disassembler, bitcode analyzer, and bitcode optimizer.
C-like languages use the Clang frontend. This component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode -- and from there into object files, using LLVM.
Other components include: the libc++ C++ standard library, the LLD linker, and more.
Consult the Getting Started with LLVM page for information on building and running LLVM.
For information on how to contribute to the LLVM project, please take a look at the Contributing to LLVM guide.
Join the LLVM Discourse forums, Discord chat, LLVM Office Hours or Regular sync-ups.
The LLVM project has adopted a code of conduct for participants to all modes of communication within the project.