commit | 4fd5d935a3d30d20aed7697be5d8bb76dae8eab6 | [log] [tgz] |
---|---|---|
author | Brendan Sweeney <brs@eecs.berkeley.edu> | Mon Mar 03 13:34:52 2025 -0600 |
committer | GitHub <noreply@github.com> | Mon Mar 03 11:34:52 2025 -0800 |
tree | c754db1be99d216ef203cd1091c6595f0512e6cf | |
parent | 41e58b6737ee8b5fbd019fb6a6986d94c5f40566 [diff] |
[RISCV] Emitting proper atomic ABI tag when Zalasr is enabled (#121017) When Zalasr is enabled, it will emit the A7 atomic ABI tag. Zalasr is the load-acquire and store-release extension, and the reason A7 (and A6S) exists is to support it. The A7 atomic ABI is compatible with A6S (which is what is currently emitted as the tag), but A7 is not compatible with A6C, while A6C and A6S are compatible. https://github.com/riscv-non-isa/riscv-elf-psabi-doc/blob/master/riscv-atomic.adoc#risc-v-atomics-mappings https://github.com/riscv-non-isa/riscv-elf-psabi-doc/blob/master/riscv-elf.adoc#tag_riscv_atomic_abi-14-uleb128version
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.