changed: 64bit asm code didn't want to compile
there were used 'lahf' and 'sahf' instructions probably they are supported in a new version of GCC with '-msahf' option but GCC 4.2.1 has no such option at the moment I'm using opcodes: lahf -> 9f sahf -> 9e Warning! these instructions are not on all 64bit processors from: http://gcc.gnu.org/onlinedocs/gcc/i386-and-x86_002d64-Options.html "Early Intel CPUs with Intel 64 lacked LAHF and SAHF instructions supported by AMD64 until introduction of Pentium 4 G1 step in December 2005." changed: UInt::Add on 64bit platform changed: UInt::Add on 32bit platform (a little) git-svn-id: svn://ttmath.org/publicrep/ttmath/trunk@80 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
@@ -36,206 +36,206 @@
|
||||
*/
|
||||
|
||||
|
||||
#include "uinttest.h"
|
||||
|
||||
|
||||
|
||||
void UIntTest::set_file_name(const std::string & f)
|
||||
{
|
||||
file_name = f;
|
||||
}
|
||||
|
||||
|
||||
int UIntTest::read_int()
|
||||
{
|
||||
int result = 0;
|
||||
|
||||
skip_white_characters();
|
||||
|
||||
for( ; *pline>='0' && *pline<='9' ; ++pline )
|
||||
result = result * 10 + (*pline - '0');
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
|
||||
template<unsigned int type_size>
|
||||
void UIntTest::test_add()
|
||||
{
|
||||
using namespace ttmath;
|
||||
|
||||
UInt<type_size> a,b,result, new_result;
|
||||
|
||||
int min_bits = read_int();
|
||||
int max_bits = read_int();
|
||||
|
||||
if( min_bits != 0 && type_size * TTMATH_BITS_PER_UINT < (unsigned int)min_bits )
|
||||
return;
|
||||
|
||||
if( max_bits != 0 && type_size * TTMATH_BITS_PER_UINT > (unsigned int)max_bits )
|
||||
return;
|
||||
|
||||
a.FromString(pline, 10, &pline);
|
||||
b.FromString(pline, 10, &pline);
|
||||
result.FromString(pline, 10, &pline);
|
||||
int carry = read_int();
|
||||
|
||||
std::cerr << '[' << row << "] Add<" << type_size << ">: ";
|
||||
|
||||
skip_white_characters();
|
||||
if( *pline!='#' && *pline!= 0 )
|
||||
{
|
||||
std::cerr << "syntax error" << std::endl;
|
||||
return;
|
||||
}
|
||||
|
||||
new_result = a;
|
||||
int new_carry = new_result.Add(b);
|
||||
bool ok = true;
|
||||
|
||||
if( new_carry != carry )
|
||||
{
|
||||
std::cerr << "Incorrect carry: " << new_carry << " (expected: " << carry << ")" << std::endl;
|
||||
ok = false;
|
||||
}
|
||||
|
||||
if( new_result != result )
|
||||
{
|
||||
std::cerr << "Incorrect result: " << new_result << " (expected: " << result << ")" << std::endl;
|
||||
ok = false;
|
||||
}
|
||||
|
||||
if( ok )
|
||||
{
|
||||
std::cerr << "ok" << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
int UIntTest::upper_char(int c)
|
||||
{
|
||||
if( c>='a' && c<='z' )
|
||||
return c - 'a' + 'A';
|
||||
|
||||
return c;
|
||||
}
|
||||
|
||||
|
||||
bool UIntTest::is_white(int c)
|
||||
{
|
||||
if( c==' ' || c=='\t' || c==13 )
|
||||
return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
void UIntTest::skip_white_characters()
|
||||
{
|
||||
while( is_white(*pline) )
|
||||
++pline;
|
||||
}
|
||||
|
||||
|
||||
|
||||
bool UIntTest::read_method()
|
||||
{
|
||||
skip_white_characters();
|
||||
|
||||
if( *pline == '#' )
|
||||
return false;
|
||||
|
||||
method.clear();
|
||||
|
||||
for(int c = upper_char(*pline) ; c>='A'&& c<='Z' ; c = upper_char(*pline) )
|
||||
{
|
||||
method += c;
|
||||
++pline;
|
||||
}
|
||||
|
||||
if( method.empty() )
|
||||
{
|
||||
skip_white_characters();
|
||||
if( *pline == 0 )
|
||||
return false;
|
||||
else
|
||||
{
|
||||
std::cerr << '[' << row << "] ";
|
||||
std::cerr << "syntax error" << std::endl;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
void UIntTest::test_method()
|
||||
{
|
||||
const char * p = pline;
|
||||
|
||||
if( method == "ADD" )
|
||||
{
|
||||
pline = p; test_add<1>();
|
||||
pline = p; test_add<2>();
|
||||
pline = p; test_add<3>();
|
||||
pline = p; test_add<4>();
|
||||
pline = p; test_add<5>();
|
||||
pline = p; test_add<6>();
|
||||
pline = p; test_add<7>();
|
||||
pline = p; test_add<8>();
|
||||
pline = p; test_add<9>();
|
||||
}
|
||||
else
|
||||
{
|
||||
std::cerr << '[' << row << "] ";
|
||||
std::cerr << "method " << method << " is not supported" << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
bool UIntTest::check_line()
|
||||
{
|
||||
std::getline(file, line);
|
||||
|
||||
pline = line.c_str();
|
||||
|
||||
if( read_method() )
|
||||
test_method();
|
||||
|
||||
|
||||
if( file.eof() )
|
||||
return false;
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
void UIntTest::go()
|
||||
{
|
||||
file.open(file_name.c_str());
|
||||
|
||||
|
||||
if( !file )
|
||||
{
|
||||
std::cerr << "I can't open the input file" << std::endl;
|
||||
return;
|
||||
}
|
||||
|
||||
row = 1;
|
||||
|
||||
while( check_line() )
|
||||
++row;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
#include "uinttest.h"
|
||||
|
||||
|
||||
|
||||
void UIntTest::set_file_name(const std::string & f)
|
||||
{
|
||||
file_name = f;
|
||||
}
|
||||
|
||||
|
||||
int UIntTest::read_int()
|
||||
{
|
||||
int result = 0;
|
||||
|
||||
skip_white_characters();
|
||||
|
||||
for( ; *pline>='0' && *pline<='9' ; ++pline )
|
||||
result = result * 10 + (*pline - '0');
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
|
||||
template<unsigned int type_size>
|
||||
void UIntTest::test_add()
|
||||
{
|
||||
using namespace ttmath;
|
||||
|
||||
UInt<type_size> a,b,result, new_result;
|
||||
|
||||
int min_bits = read_int();
|
||||
int max_bits = read_int();
|
||||
|
||||
if( min_bits != 0 && type_size * TTMATH_BITS_PER_UINT < (unsigned int)min_bits )
|
||||
return;
|
||||
|
||||
if( max_bits != 0 && type_size * TTMATH_BITS_PER_UINT > (unsigned int)max_bits )
|
||||
return;
|
||||
|
||||
a.FromString(pline, 10, &pline);
|
||||
b.FromString(pline, 10, &pline);
|
||||
result.FromString(pline, 10, &pline);
|
||||
int carry = read_int();
|
||||
|
||||
std::cerr << '[' << row << "] Add<" << type_size << ">: ";
|
||||
|
||||
skip_white_characters();
|
||||
if( *pline!='#' && *pline!= 0 )
|
||||
{
|
||||
std::cerr << "syntax error" << std::endl;
|
||||
return;
|
||||
}
|
||||
|
||||
new_result = a;
|
||||
int new_carry = new_result.Add(b);
|
||||
bool ok = true;
|
||||
|
||||
if( new_carry != carry )
|
||||
{
|
||||
std::cerr << "Incorrect carry: " << new_carry << " (expected: " << carry << ")" << std::endl;
|
||||
ok = false;
|
||||
}
|
||||
|
||||
if( new_result != result )
|
||||
{
|
||||
std::cerr << "Incorrect result: " << new_result << " (expected: " << result << ")" << std::endl;
|
||||
ok = false;
|
||||
}
|
||||
|
||||
if( ok )
|
||||
{
|
||||
std::cerr << "ok" << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
int UIntTest::upper_char(int c)
|
||||
{
|
||||
if( c>='a' && c<='z' )
|
||||
return c - 'a' + 'A';
|
||||
|
||||
return c;
|
||||
}
|
||||
|
||||
|
||||
bool UIntTest::is_white(int c)
|
||||
{
|
||||
if( c==' ' || c=='\t' || c==13 )
|
||||
return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
void UIntTest::skip_white_characters()
|
||||
{
|
||||
while( is_white(*pline) )
|
||||
++pline;
|
||||
}
|
||||
|
||||
|
||||
|
||||
bool UIntTest::read_method()
|
||||
{
|
||||
skip_white_characters();
|
||||
|
||||
if( *pline == '#' )
|
||||
return false;
|
||||
|
||||
method.clear();
|
||||
|
||||
for(int c = upper_char(*pline) ; c>='A'&& c<='Z' ; c = upper_char(*pline) )
|
||||
{
|
||||
method += c;
|
||||
++pline;
|
||||
}
|
||||
|
||||
if( method.empty() )
|
||||
{
|
||||
skip_white_characters();
|
||||
if( *pline == 0 )
|
||||
return false;
|
||||
else
|
||||
{
|
||||
std::cerr << '[' << row << "] ";
|
||||
std::cerr << "syntax error" << std::endl;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
void UIntTest::test_method()
|
||||
{
|
||||
const char * p = pline;
|
||||
|
||||
if( method == "ADD" )
|
||||
{
|
||||
pline = p; test_add<1>();
|
||||
pline = p; test_add<2>();
|
||||
pline = p; test_add<3>();
|
||||
pline = p; test_add<4>();
|
||||
pline = p; test_add<5>();
|
||||
pline = p; test_add<6>();
|
||||
pline = p; test_add<7>();
|
||||
pline = p; test_add<8>();
|
||||
pline = p; test_add<9>();
|
||||
}
|
||||
else
|
||||
{
|
||||
std::cerr << '[' << row << "] ";
|
||||
std::cerr << "method " << method << " is not supported" << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
bool UIntTest::check_line()
|
||||
{
|
||||
std::getline(file, line);
|
||||
|
||||
pline = line.c_str();
|
||||
|
||||
if( read_method() )
|
||||
test_method();
|
||||
|
||||
|
||||
if( file.eof() )
|
||||
return false;
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
void UIntTest::go()
|
||||
{
|
||||
file.open(file_name.c_str());
|
||||
|
||||
|
||||
if( !file )
|
||||
{
|
||||
std::cerr << "I can't open the input file" << std::endl;
|
||||
return;
|
||||
}
|
||||
|
||||
row = 1;
|
||||
|
||||
while( check_line() )
|
||||
++row;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user