commit | c9a8e15494c84730a2a8c0713281b3c8aa5b67c4 | [log] [tgz] |
---|---|---|
author | xur-llvm <59886942+xur-llvm@users.noreply.github.com> | Thu Jul 24 09:55:28 2025 -0700 |
committer | GitHub <noreply@github.com> | Thu Jul 24 09:55:28 2025 -0700 |
tree | 792a597304c195ce6c8c1d0947167404e5201cd0 | |
parent | 36a19c5bfe2f808365b8ccdacd4c6f2bb25fc3ef [diff] |
[ICP] Add a few tunings to indirect-call-promotion (#149892) [ICP] Add a few tunings to indirect-call-promtion Indirect-call promotion (ICP) has been adjusted with the following tunings: (1) Candidate functions can be now ICP'd even if only a declaration is present. (2) All non-cold candidate functions are now considered by ICP. Previously, only hot targets were considered. (3) If one target cannot be ICP'd, proceed with the remaining targets instead of exiting the callsite. This update hides all tunings under internal options and disables them by default. They'll be enabled in a later update. There'll also be another update to address the "not found" issue with indirect targets.
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.