/* TomsFastMath, a fast ISO C bignum library. * * This project is meant to fill in where LibTomMath * falls short. That is speed ;-) * * This project is public domain and free for all purposes. * * Tom St Denis, tomstdenis@gmail.com */ /* program emits a NxN comba multiplier */ #include int main(int argc, char **argv) { int N, x, y, z; N = atoi(argv[1]); /* print out preamble */ printf( "#define TFM_DEFINES\n" "#include \"fp_mul_comba.c\"\n" "\n" "#if defined(TFM_MUL%d) && FP_SIZE >= %d\n" "void fp_mul_comba%d(fp_int *A, fp_int *B, fp_int *C)\n" "{\n" " fp_digit c0, c1, c2, at[%d];\n" "\n" " memcpy(at, A->dp, %d * sizeof(fp_digit));\n" " memcpy(at+%d, B->dp, %d * sizeof(fp_digit));\n" " COMBA_START;\n" "\n" " COMBA_CLEAR;\n", N, N+N, N, N+N, N, N, N); /* now do the rows */ for (x = 0; x < (N+N-1); x++) { printf( " /* %d */\n", x); if (x > 0) { printf( " COMBA_FORWARD;\n"); } for (y = 0; y < N; y++) { for (z = 0; z < N; z++) { if ((y+z)==x) { printf(" MULADD(at[%d], at[%d]); ", y, z+N); } } } printf( "\n" " COMBA_STORE(C->dp[%d]);\n", x); } printf( " COMBA_STORE2(C->dp[%d]);\n" " C->used = %d;\n" " C->sign = A->sign ^ B->sign;\n" " fp_clamp(C);\n" " COMBA_FINI;\n" "}\n#endif\n\n\n" "/* $Source$ */\n" "/* $Revision$ */\n" "/* $Date$ */\n" , N+N-1, N+N); return 0; } /* $Source$ */ /* $Revision$ */ /* $Date$ */