about summary refs log tree commit diff
path: root/compiler/rustc_target/src/asm/mips.rs
AgeCommit message (Collapse)AuthorLines
2024-07-29Reformat `use` declarations.Nicholas Nethercote-2/+4
The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options.
2024-04-29Remove `extern crate rustc_macros` from numerous crates.Nicholas Nethercote-1/+0
2024-03-03Mention Register Size in `#[warn(asm_sub_register)]`Veera-3/+3
Fixes #121593
2022-04-25Remove references to git.ioEric Huss-1/+2
2022-01-17Use Symbol for target features in asm handlingbjorn3-1/+2
This saves a couple of Symbol::intern calls
2020-10-04Removes reg aliases since there are many ABIs: o32/n32/n64Lzu Tao-32/+32
2020-10-04Add asm! support for mips64Lzu Tao-4/+5
2020-10-04mips32: Add f64 hard-float supportLzu Tao-1/+1
co-authored-by: Amanieu <amanieu@gmail.com>
2020-09-27Add MIPS asm! supportLzu Tao-0/+132
This patch also: * Add soft-float supports: only f32 * zero-extend i8/i16 to i32 because MIPS only supports register-length arithmetic. * Update table in asm! chapter in unstable book.