ark-ff-macros 0.6.0

A library for generating x86-64 assembly for finite field multiplication
Documentation
mod montgomery_backend;
mod utils;

use quote::quote;

/// This function is called by the `#[derive(SmallFp)]` macro and generates
/// the implementation of the `SmallFpConfig`
pub(crate) fn small_fp_config_helper(
    modulus: u128,
    generator: u128,
    config_name: proc_macro2::Ident,
) -> proc_macro2::TokenStream {
    let ty = match modulus {
        m if m < 1u128 << 8 => quote! { u8 },
        m if m < 1u128 << 16 => quote! { u16 },
        m if m < 1u128 << 32 => quote! { u32 },
        _ => quote! { u64 },
    };

    assert!(
        modulus < 1u128 << 64,
        "SmallFpConfig supports only moduli < 2^64. Use MontConfig with BigInt instead of SmallFp."
    );

    let (backend_impl, r_mod_p) = montgomery_backend::backend_impl(&ty, modulus, generator);
    let exit_impl = montgomery_backend::exit_impl(modulus, r_mod_p);

    quote! {
        const _: () = {
            use ark_ff::{SmallFp, SmallFpConfig};

            impl SmallFpConfig for #config_name {
                #backend_impl
            }

            impl #config_name {
                #exit_impl
            }
        };
    }
}