From 02a51c8077784f8e015b3c7215cde8da09c5fed2 Mon Sep 17 00:00:00 2001 From: MITSUNARI Shigeo Date: Mon, 10 May 2021 12:18:07 +0900 Subject: [PATCH] avoid cast of Fp2::mul_xi --- include/mcl/fp_tower.hpp | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/include/mcl/fp_tower.hpp b/include/mcl/fp_tower.hpp index 7fa885b..f75b4c2 100644 --- a/include/mcl/fp_tower.hpp +++ b/include/mcl/fp_tower.hpp @@ -271,7 +271,10 @@ public: mul2A(y.a.v_, x.a.v_); #endif } - static void (*mul_xi)(Fp2T& y, const Fp2T& x); + static void mul_xi(Fp2T& y, const Fp2T& x) + { + Fp::op_.fp2_mul_xiA_(y.a.v_, x.a.v_); + } static void addPre(Fp2T& z, const Fp2T& x, const Fp2T& y) { Fp::addPre(z.a, x.a, y.a); Fp::addPre(z.b, x.b, y.b); } static void inv(Fp2T& y, const Fp2T& x) { Fp::op_.fp2_inv(y.a.v_, x.a.v_); } static void divBy2(Fp2T& y, const Fp2T& x) @@ -416,7 +419,6 @@ public: *pb = false; return; } - mul_xi = 0; #ifdef MCL_XBYAK_DIRECT_CALL if (op.fp2_addA_ == 0) { op.fp2_addA_ = addA; @@ -436,16 +438,15 @@ public: if (op.fp2_mul2A_ == 0) { op.fp2_mul2A_ = mul2A; } - mul_xi = fp::func_ptr_cast(op.fp2_mul_xiA_); #endif - op.fp2_inv = fp2_invW; - if (mul_xi == 0) { + if (op.fp2_mul_xiA_ == 0) { if (op.xi_a == 1) { - mul_xi = fp2_mul_xi_1_1iC; + op.fp2_mul_xiA_ = fp2_mul_xi_1_1iA; } else { - mul_xi = fp2_mul_xiC; + op.fp2_mul_xiA_ = fp2_mul_xiA; } } + op.fp2_inv = fp2_invW; FpDblT::init(); Fp2DblT::init(); // call init before Fp2::pow because FpDbl is used in Fp2T @@ -601,8 +602,10 @@ private: y = (a + bi)xi = (a + bi)(xi_a + i) =(a * x_ia - b) + (a + b xi_a)i */ - static void fp2_mul_xiC(Fp2T& y, const Fp2T& x) + static void fp2_mul_xiA(Unit *py, const Unit *px) { + Fp2T& y = *reinterpret_cast(py); + const Fp2T& x = *reinterpret_cast(px); const Fp& a = x.a; const Fp& b = x.b; Fp t; @@ -616,8 +619,10 @@ private: xi = 1 + i ; xi_a = 1 y = (a + bi)xi = (a - b) + (a + b)i */ - static void fp2_mul_xi_1_1iC(Fp2T& y, const Fp2T& x) + static void fp2_mul_xi_1_1iA(Unit *py, const Unit *px) { + Fp2T& y = *reinterpret_cast(py); + const Fp2T& x = *reinterpret_cast(px); const Fp& a = x.a; const Fp& b = x.b; Fp t; @@ -646,8 +651,6 @@ private: } }; -template void (*Fp2T::mul_xi)(Fp2T& y, const Fp2T& x); - template struct Fp2DblT { typedef FpDblT FpDbl;