commit | 15fbdc2b9635b75f431a26b89b48fe03e7ed9d5c | [log] [tgz] |
---|---|---|
author | Ricardo Jesus <rjj@nvidia.com> | Wed Feb 26 13:56:35 2025 +0000 |
committer | GitHub <noreply@github.com> | Wed Feb 26 13:56:35 2025 +0000 |
tree | c6276b2831074e76fd29e903dba5b82ec9e87141 | |
parent | a5d8b7aeb6b360f20eec88715081ecfdb286b83d [diff] |
[AArch64][SVE] Lower unpredicated loads/stores as LDR/STR. (#127837) Currently, given: ```cpp svuint8_t foo(uint8_t *x) { return svld1(svptrue_b8(), x); } ``` We generate: ```gas foo: ptrue p0.b ld1b { z0.b }, p0/z, [x0] ret ``` However, on little-endian and with unaligned memory accesses allowed, we could instead be using LDR as follows: ```gas foo: ldr z0, [x0] ret ``` The second form avoids the predicate dependency. Likewise for other types and stores.
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.