| commit | 8a3891ceadad3a156b8fbcdccd82f0aa7dece982 | [log] [tgz] |
|---|---|---|
| author | Prasoon Mishra <Prasoon.Mishra@amd.com> | Mon Dec 01 22:56:37 2025 +0530 |
| committer | GitHub <noreply@github.com> | Mon Dec 01 22:56:37 2025 +0530 |
| tree | ce6a63eddf090ec5a0faf0a3ba2ba8dd6a79bf1f | |
| parent | dae9139d8fecf09d975f59b012646bc04f694c35 [diff] |
[AMDGPU][NPM] Preserve analyses in AMDGPURewriteAGPRCopyMFMA for NPM (#170130) The pass preserved LiveStacksAnalysis but failed to preserve LiveIntervalsAnalysis, LiveRegMatrixAnalysis, VirtRegMapAnalysis, and SlotIndexesAnalysis under NPM. This caused these analyses to be invalidated and recomputed, leading to incorrect behavior in subsequent passes like VirtRegRewriter. Fix by explicitly preserving all required analyses in the NPM version, matching the legacy pass manager behavior. --------- Co-authored-by: vikhegde <vikram.hegde@amd.com>
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.