| commit | 7b2fc48c27fef7e96132fcbc2066e2846c3f7c47 | [log] [tgz] |
|---|---|---|
| author | Luke Lau <luke@igalia.com> | Fri May 23 20:21:12 2025 +0100 |
| committer | GitHub <noreply@github.com> | Fri May 23 20:21:12 2025 +0100 |
| tree | 46194cc4d1d2a3628ae802fe2f6af17138644f02 | |
| parent | 6520b21ce010d0e2bf721fe41de7779010d48571 [diff] |
[InstCombine] Remove dead poison check. NFCI (#141264) As far as I understand any binary op with poison as either operand will constant fold to poison, so this check will never trigger. `llvm::ConstantFoldBinaryInstruction` seems to confirm this? I think this ended up getting left behind because originally shufflevectors with undef indices produced undef elements, and we couldn't pull the shuffle across some binops like `or undef, -1 --> -1`. This code was added in 8c655150827b5d56772e628994db08441c554097 to partially fix it and further extended in f7499011ca29bebeda7c9d79d79b290cf0b8b46d, originally checking for undef but changed to check for poison in cd54c47424456 But nowadays shufflevectors with undef indices are treated as poison indices as of 575fdea70a86f68b0d303a9a3273fc47f810628a, and so produce poison elements, so this is no longer an issue
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.