| commit | 92d83134b44161cad50198e663b543b46d25b45a | [log] [tgz] |
|---|---|---|
| author | Younan Zhang <zyn7109@gmail.com> | Sun Oct 05 13:04:36 2025 +0800 |
| committer | GitHub <noreply@github.com> | Sun Oct 05 13:04:36 2025 +0800 |
| tree | 2112147fd6a8f43cbd548049347a10bb34307147 | |
| parent | 3e78c313bcfa54f8d1f1bdf221611d461e56111c [diff] |
[Clang] Fix concept paramater mapping and caching (#161994) This expression is not handled by default in RAV, so our parameter mapping and cache mechanism don't work when it appears in a template argument list. There are a few other expressions, such as PackIndexingExpr and FunctionParmPackExpr, which are also no-ops by default. I don't have a test case for them now, so let's leave those until users complain :/ There was also a bug in updating the parameter mapping, where the AssociatedDecl was not updated accordingly. Also also, this fixes another regression reported in https://github.com/llvm/llvm-project/pull/161671#issuecomment-3367225480, where we failed to account for the variable initializer in cache profiling. Relies on #161671 Fixes https://github.com/llvm/llvm-project/issues/161983 Fixes https://github.com/llvm/llvm-project/issues/161987
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.