about summary refs log tree commit diff
path: root/src/num.rs
AgeCommit message (Expand)AuthorLines
2023-07-05Move `TyCtxt::mk_x` to `Ty::new_x` where applicableBoxy-1/+1
2023-06-19Promote unchecked_add/sub/mul/shl/shr to mir::BinOpScott McMurray-6/+10
2023-04-29Merge commit 'ef07e8e60f994ec014d049a95591426fb92ebb79' into sync_cg_clif-202...bjorn3-2/+2
2023-03-15Auto merge of #108282 - cjgillot:mir-checked-sh, r=tmiaskobors-23/+0
2023-03-15Merge commit 'dec0daa8f6d0a0e1c702f169abb6bf3eee198c67' into sync_cg_clif-202...bjorn3-4/+12
2023-02-27Implement checked Shl/Shr at MIR building.Camille GILLOT-23/+0
2023-02-24Rename many interner functions.Nicholas Nethercote-1/+1
2023-02-17Replace `mk_foo` calls with `infer_foo` where possible.Nicholas Nethercote-1/+1
2022-12-14Merge commit '2bb3996244cf1b89878da9e39841e9f6bf061602' into sync_cg_clif-202...bjorn3-5/+1
2022-10-23Merge commit '266e96785ab71834b917bf474f130a6d8fdecd4b' into sync_cg_clif-202...bjorn3-19/+42
2022-04-22Merge commit 'f2cdd4a78d89c009342197cf5844a21f8aa813df' into sync_cg_clif-202...bjorn3-0/+18
2021-08-06Merge commit '05677b6bd6c938ed760835d9b1f6514992654ae3' into sync_cg_clif-202...bjorn3-20/+5
2021-04-30Sync rustc_codegen_cranelift 'ddd4ce25535cf71203ba3700896131ce55fde795'Erin Power-7/+10
2021-03-29Merge commit '0969bc6dde001e01e7e1f58c8ccd7750f8a49ae1' into sync_cg_clif-202...bjorn3-5/+3
2021-03-05Merge commit '9a0c32934ebe376128230aa8da3275697b2053e7' into sync_cg_clif-202...bjorn3-55/+17
2021-02-01Merge commit 'd556c56f792756dd7cfec742b9f2e07612dc10f4' into sync_cg_clif-202...bjorn3-1/+0
2020-11-03Merge commit '03f01bbe901d60b71cf2c5ec766aef5e532ab79d' into update_cg_clif-2...bjorn3-9/+9
2020-10-08Use the new cranelift-module interfacebjorn3-7/+7
2020-09-23Document almost all modulesbjorn3-0/+2
2020-09-05Rustup to rustc 1.48.0-nightly (c59199efc 2020-09-04)bjorn3-5/+5
2020-08-28fmt: Run cargo fmt since it is availableCohenArthur-13/+40
2020-06-30Mask shift amountbjorn3-8/+16
2020-06-20Implement checked_mulbjorn3-10/+36
2020-06-20Use Cranelift legalization for icmp.i128bjorn3-1/+1
2020-03-27Limit publicness to crate where possible and remove unused importsbjorn3-7/+7
2020-01-25Replace unimplemented! with unreachable! when it will never be supportedbjorn3-1/+1
2020-01-15Reduce the amount of calls to layout_ofbjorn3-2/+3
2019-09-28Rustup to rustc 1.40.0-nightly (084beb83e 2019-09-27)bjorn3-5/+5
2019-09-15Fix trans_ptr_binop for fn()bjorn3-2/+5
2019-09-14Fix foreign type handlingbjorn3-9/+3
2019-09-14Implement shl and shr overflow checksbjorn3-4/+8
2019-08-31Format code using 'cargo fmt'Atul Bhosale-21/+77
2019-08-18Use anonymous lifetimes where possiblebjorn3-10/+10
2019-08-18Rustup to rustc 1.39.0-nightly (2111aed0a 2019-08-17)bjorn3-1/+1
2019-08-15Workaround for missing icmp{,_imm}.i128 legalizationsbjorn3-3/+3
2019-08-14Cast rhs to lhs type for shl and shrbjorn3-2/+14
2019-08-14Refactor num.rsbjorn3-238/+172
2019-08-14Calculate sign in trans{,_checked}_int_binop instead of callerbjorn3-4/+6
2019-08-14Move trans_*_binop to num.rsbjorn3-0/+406