#ifndef FPCONSTMULT_HPP
#define FPCONSTMULT_HPP
#include <gmp.h>
#include <mpfr.h>
#include <gmpxx.h>
#include "../Operator.hpp"
#include "IntConstMult.hpp"


namespace flopoco{

	class FPConstMult : public Operator
	{
	public:
		FPConstMult(Target* target, int wE_in, int wF_in, int wE_out, int wF_out, int cst_sgn, int cst_exp, mpz_class cst_sig);
		FPConstMult(Target* target, int wE_in, int wF_in, int wE_out, int wF_out); // used by CRFPConstMult
		~FPConstMult();

		int wE_in; 
		int wF_in; 
		int wE_out; 
		int wF_out; 
		int cst_sgn;
		int cst_exp_when_mantissa_1_2;
		int cst_exp_when_mantissa_int;
		mpz_class cst_sig;
		string cst_name;

		mpfr_t mpfr_cst; 
		mpfr_t mpfr_cst_sig; // between 1 and 2
		mpfr_t mpfr_xcut_sig; // between 1 and 2

		mpz_class xcut_sig_rd; // an int on wF_in+1 bits, which is mpfr_xcut_sig rounded down 

		IntConstMult *icm;
		int icm_depth;

		/** The method that declares all the signals and sets up the pipeline.
			 It is called by the constructors of FPConstMult and CRFPConstMult to avoid code duplication */
		void setup();

		void emulate(TestCase *tc);

		/* The value of the constant multiplicand */
		mpfr_t mpY;

		void fillTestCase(mpz_class a[]);
	};

}
#endif
