about summary refs log tree commit diff
path: root/compiler/rustc_target/src/asm/mips.rs
AgeCommit message (Collapse)AuthorLines
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.