changed: asm code in: UInt::Sub, UInt::SubInt (32 and 64bit)

(much faster now)
changed: asm code in: UInt::Rcl2, UInt::Rcr2 (32 and 64bit)
         previous versions of Rcl2 and Rcr2 had O(n2) complexity,
         now they have O(n) and are much faster
changed: now we do not use LAHF and SAHF instructions (both in 32 and 64 bit code)


git-svn-id: svn://ttmath.org/publicrep/ttmath/trunk@83 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2008-10-29 21:54:27 +00:00
parent cfd719cca2
commit 91e7badb62
4 changed files with 291 additions and 355 deletions

View File

@@ -120,7 +120,5 @@ using namespace ttmath;
test_uint();
return 0;
}