rust/compiler/rustc_llvm/llvm-wrapper
Matthias Krüger 8c7a7e346b
Rollup merge of #129749 - krasimirgg:llvm-20-lto, r=nikic
llvm-wrapper: adapt for LLVM API changes

No functional changes intended.

Updates the wrapper for 21eddfac3d.

````@rustbot```` label: +llvm-main
r? ````@nikic````
2024-08-31 14:46:09 +02:00
..
.editorconfig Move `rustllvm` into `rustc_llvm` 2020-09-09 23:05:43 +03:00
ArchiveWrapper.cpp Format C++ files in `llvm-wrapper` 2024-06-26 20:18:49 +08:00
CoverageMappingWrapper.cpp coverage. Generate Mappings of decisions and conditions for MC/DC 2024-04-19 17:09:26 +08:00
LLVMWrapper.h Set writable and dead_on_unwind attributes for sret arguments 2024-04-25 11:43:47 +09:00
Linker.cpp Format C++ files in `llvm-wrapper` 2024-06-26 20:18:49 +08:00
PassWrapper.cpp Rollup merge of #129749 - krasimirgg:llvm-20-lto, r=nikic 2024-08-31 14:46:09 +02:00
README Move `rustllvm` into `rustc_llvm` 2020-09-09 23:05:43 +03:00
RustWrapper.cpp Rollup merge of #126985 - Mrmaxmeier:dwarf-embed-source, r=davidtwco 2024-08-27 01:46:49 -05:00
SuppressLLVMWarnings.h Format C++ files in `llvm-wrapper` 2024-06-26 20:18:49 +08:00
SymbolWrapper.cpp Fix null pointer dereference when a file is not an object file 2024-08-14 19:37:14 +00:00

README

This directory currently contains some LLVM support code. This will generally
be sent upstream to LLVM in time; for now it lives here.

NOTE: the LLVM C++ ABI is subject to between-version breakage and must *never*
be exposed to Rust. To allow for easy auditing of that, all Rust-exposed types
must be typedef-ed as "LLVMXyz", or "LLVMRustXyz" if they were defined here.

Functions that return a failure status and leave the error in
the LLVM last error should return an LLVMRustResult rather than an
int or anything to avoid confusion.

When translating enums, add a single `Other` variant as the first
one to allow for new variants to be added. It should abort when used
as an input.

All other types must not be typedef-ed as such.