| commit | 3ab64c5b29643f8d10e5e6286f7a1b9f0f2c0792 | [log] [tgz] |
|---|---|---|
| author | Alexandros Lamprineas <alexandros.lamprineas@arm.com> | Wed Jul 23 10:37:29 2025 +0100 |
| committer | GitHub <noreply@github.com> | Wed Jul 23 10:37:29 2025 +0100 |
| tree | 43187462bf5c946c9187c03d9a1fb2640f3f21b8 | |
| parent | 36c37b019b5daae79785e8558d693e6ec42b0ebd [diff] |
[NFC][Clang][FMV] Make FMV priority data type future proof. (#150079) FMV priority is the returned value of a polymorphic function. On RISC-V and X86 targets a 32-bit value is enough. On AArch64 we currently need 64 bits and we will soon exceed that. APInt seems to be a suitable replacement for uint64_t, presumably with minimal compile time overhead. It allows bit manipulation, comparison and variable bit width.
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.