This PR switches Cranelift over to the new register allocator, regalloc2. See [this document](https://gist.github.com/cfallin/08553421a91f150254fe878f67301801) for a summary of the design changes. This switchover has implications for core VCode/MachInst types and the lowering pass. Overall, this change brings improvements to both compile time and speed of generated code (runtime), as reported in #3942: ``` Benchmark Compilation (wallclock) Execution (wallclock) blake3-scalar 25% faster 28% faster blake3-simd no diff no diff meshoptimizer 19% faster 17% faster pulldown-cmark 17% faster no diff bz2 15% faster no diff SpiderMonkey, 21% faster 2% faster fib(30) clang.wasm 42% faster N/A ```
44 lines
1.2 KiB
Rust
44 lines
1.2 KiB
Rust
//! Miscellaneous helpers for machine backends.
|
|
|
|
use super::{InsnOutput, LowerCtx, VCodeInst, ValueRegs};
|
|
use super::{Reg, Writable};
|
|
use crate::ir::Type;
|
|
use std::ops::{Add, BitAnd, Not, Sub};
|
|
|
|
/// Returns the size (in bits) of a given type.
|
|
pub fn ty_bits(ty: Type) -> usize {
|
|
usize::from(ty.bits())
|
|
}
|
|
|
|
/// Is the type represented by an integer (not float) at the machine level?
|
|
pub(crate) fn ty_has_int_representation(ty: Type) -> bool {
|
|
ty.is_int() || ty.is_bool() || ty.is_ref()
|
|
}
|
|
|
|
/// Is the type represented by a float or vector value at the machine level?
|
|
pub(crate) fn ty_has_float_or_vec_representation(ty: Type) -> bool {
|
|
ty.is_vector() || ty.is_float()
|
|
}
|
|
|
|
/// Allocate a register for an instruction output and return it.
|
|
pub(crate) fn get_output_reg<I: VCodeInst, C: LowerCtx<I = I>>(
|
|
ctx: &mut C,
|
|
spec: InsnOutput,
|
|
) -> ValueRegs<Writable<Reg>> {
|
|
ctx.get_output(spec.insn, spec.output)
|
|
}
|
|
|
|
/// Align a size up to a power-of-two alignment.
|
|
pub(crate) fn align_to<N>(x: N, alignment: N) -> N
|
|
where
|
|
N: Not<Output = N>
|
|
+ BitAnd<N, Output = N>
|
|
+ Add<N, Output = N>
|
|
+ Sub<N, Output = N>
|
|
+ From<u8>
|
|
+ Copy,
|
|
{
|
|
let alignment_mask = alignment - 1.into();
|
|
(x + alignment_mask) & !alignment_mask
|
|
}
|