rust/src/rustllvm
Simonas Kazlauskas d104e5bfb7 Up the LLVM
Fixes #36474
2016-09-17 18:40:40 +03:00
..
ArchiveWrapper.cpp finish type-auditing rustllvm 2016-08-03 15:08:47 +03:00
llvm-auto-clean-trigger Up the LLVM 2016-09-17 18:40:40 +03:00
PassWrapper.cpp build llvm with systemz backend enabled, and link to related libraries 2016-08-28 13:18:28 -05:00
README
rustllvm.h
RustWrapper.cpp Fix incorrect LLVM Linkage enum 2016-09-04 16:12:01 -05:00

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.