about summary refs log tree commit diff
path: root/compiler/rustc_abi/src/callconv/reg.rs
AgeCommit message (Collapse)AuthorLines
2025-09-27compiler: remove AbiAlign inside TargetDataLayoutJubilee Young-11/+11
This maintains AbiAlign usage in public API and most of the compiler, but direct access of these fields is now in terms of Align only.
2025-02-20compiler: split vector_align into cabi and llvmlikeJubilee Young-1/+1
Introduce a pair of functions that actually describe what they do, because it wasn't clear the alignment is sometimes a forgery.
2025-02-06compiler: reorganize rustc_abi to be more internally uniformJubilee Young-0/+63
General housekeeping: - Use less reexports from its rustc_target era - Unify some imports as a result - Split the Reg(ister) types into their own files Generally moving stuff around because it makes the crate more consistent.