| commit | 1bd3cc26685636b112d075fd46b20fa0b2e6859f | [log] [tgz] |
|---|---|---|
| author | Benjamin Maxwell <benjamin.maxwell@arm.com> | Mon Sep 08 10:17:07 2025 +0100 |
| committer | GitHub <noreply@github.com> | Mon Sep 08 10:17:07 2025 +0100 |
| tree | 9ef3c798949ad3f3de37fea73d6cce579c508138 | |
| parent | a20fc93a65f763cc3f55988847b7294fcbdcb5db [diff] |
[AArch64][SME] Support Windows/stack probes in MachineSMEABIPass (#149063) On Windows or with stack probes on other targets, additional code needs to be inserted after dynamic stack allocations to validate stack accesses and/or ensure enough stack space has been allocated. Rather than handle this case in the MachineSMEABIPass (like we do for the standard case), we allocate the memory for the lazy save buffer in SelectionDAG, which allows the existing expansions to emit the correct code. Note: This means in these cases, we may allocate a lazy save buffer when there are no lazy saves present in the function (as we have to allocate the buffer before the MachineSMEABIPass runs).
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.