Update Windows build for latest changes

This commit is contained in:
gladman 2009-04-02 11:00:00 +00:00
parent 11743b7468
commit 279323b5fd
14 changed files with 81 additions and 28 deletions

View File

@ -1750,6 +1750,10 @@
RelativePath="..\..\mpn\generic\toom4_mul_n.c"
>
</File>
<File
RelativePath="..\..\mpn\generic\toom7_mul_n.c"
>
</File>
<Filter
Name="Assembler"
>

View File

@ -1752,6 +1752,10 @@
RelativePath="..\..\mpn\generic\toom4_mul_n.c"
>
</File>
<File
RelativePath="..\..\mpn\generic\toom7_mul_n.c"
>
</File>
<Filter
Name="Assembler"
>

View File

@ -2823,6 +2823,10 @@
RelativePath="..\..\mpn\generic\toom4_mul_n.c"
>
</File>
<File
RelativePath="..\..\mpn\generic\toom7_mul_n.c"
>
</File>
<Filter
Name="win32"
>

View File

@ -6856,6 +6856,10 @@
RelativePath="..\..\mpn\generic\toom4_mul_n.c"
>
</File>
<File
RelativePath="..\..\mpn\generic\toom7_mul_n.c"
>
</File>
<Filter
Name="Assembler"
>

View File

@ -1377,6 +1377,10 @@
RelativePath="..\..\mpn\generic\toom4_mul_n.c"
>
</File>
<File
RelativePath="..\..\mpn\generic\toom7_mul_n.c"
>
</File>
<Filter
Name="Assembler"
>
@ -1507,6 +1511,10 @@
RelativePath="..\..\mpn\x86w\p6\mmx\lshift.asm"
>
</File>
<File
RelativePath="..\..\mpn\x86w\p6\p3mmx\popham.asm"
>
</File>
<File
RelativePath="..\..\mpn\x86w\p6\mmx\popham.asm"
>
@ -1527,10 +1535,6 @@
/>
</FileConfiguration>
</File>
<File
RelativePath="..\..\mpn\x86w\p6\p3mmx\popham.asm"
>
</File>
<File
RelativePath="..\..\mpn\x86w\p6\mmx\rshift.asm"
>

View File

@ -6995,6 +6995,10 @@
RelativePath="..\..\mpn\generic\toom4_mul_n.c"
>
</File>
<File
RelativePath="..\..\mpn\generic\toom7_mul_n.c"
>
</File>
<Filter
Name="Assembler"
>

View File

@ -3610,6 +3610,10 @@
RelativePath="..\..\mpn\generic\toom4_mul_n.c"
>
</File>
<File
RelativePath="..\..\mpn\generic\toom7_mul_n.c"
>
</File>
<Filter
Name="x64"
>

View File

@ -3592,6 +3592,10 @@
RelativePath="..\..\mpn\generic\toom4_mul_n.c"
>
</File>
<File
RelativePath="..\..\mpn\generic\toom7_mul_n.c"
>
</File>
<Filter
Name="x64"
>

View File

@ -6266,6 +6266,10 @@
RelativePath="..\..\mpn\generic\toom4_mul_n.c"
>
</File>
<File
RelativePath="..\..\mpn\generic\toom7_mul_n.c"
>
</File>
<Filter
Name="win32"
>

View File

@ -3288,6 +3288,10 @@
RelativePath="..\..\mpn\generic\toom4_mul_n.c"
>
</File>
<File
RelativePath="..\..\mpn\generic\toom7_mul_n.c"
>
</File>
<Filter
Name="Assembler"
>

View File

@ -3210,6 +3210,10 @@
RelativePath="..\..\mpn\generic\toom4_mul_n.c"
>
</File>
<File
RelativePath="..\..\mpn\generic\toom7_mul_n.c"
>
</File>
<Filter
Name="win32"
>
@ -3384,10 +3388,6 @@
RelativePath="..\..\mpn\x86w\p6\mmx\lshift.asm"
>
</File>
<File
RelativePath="..\..\mpn\x86w\p6\p3mmx\popham.asm"
>
</File>
<File
RelativePath="..\..\mpn\x86w\p6\mmx\popham.asm"
>
@ -3408,6 +3408,10 @@
/>
</FileConfiguration>
</File>
<File
RelativePath="..\..\mpn\x86w\p6\p3mmx\popham.asm"
>
</File>
<File
RelativePath="..\..\mpn\x86w\p6\mmx\rshift.asm"
>

View File

@ -2834,6 +2834,10 @@
RelativePath="..\..\mpn\generic\toom4_mul_n.c"
>
</File>
<File
RelativePath="..\..\mpn\generic\toom7_mul_n.c"
>
</File>
<Filter
Name="Assembler"
>

View File

@ -1034,8 +1034,13 @@ __GMP_DECLSPEC extern gmp_randstate_t __gmp_rands;
#define MPN_TOOM4_MUL_N_MINSIZE 32
#define MPN_TOOM7_MUL_N_MINSIZE 56
#define MPN_TOOM3_SQR_N_MINSIZE 17
#ifdef _MSC_VER
#define MUL_TOOM4_INTERNAL_THRESHOLD 200
#define MUL_TOOM7_INTERNAL_THRESHOLD 300
#else
#define MUL_TOOM4_INTERNAL_THRESHOLD 550
#define MUL_TOOM7_INTERNAL_THRESHOLD 1000
#endif
#define mpn_sqr_diagonal __MPN(sqr_diagonal)
void mpn_sqr_diagonal _PROTO ((mp_ptr, mp_srcptr, mp_size_t));

View File

@ -1,23 +1,24 @@
/* Generated by tuneup.c, 2009-04-01, system compiler */
/* Generated by tuneup.c, 2009-04-02, system compiler */
#define MUL_KARATSUBA_THRESHOLD 26
#define MUL_TOOM3_THRESHOLD 162
#define MUL_TOOM4_THRESHOLD 240
#define MUL_KARATSUBA_THRESHOLD 28
#define MUL_TOOM3_THRESHOLD 161
#define MUL_TOOM4_THRESHOLD 818
#define MUL_TOOM7_THRESHOLD 818
#define SQR_BASECASE_THRESHOLD 0 /* always (native) */
#define SQR_KARATSUBA_THRESHOLD 34
#define SQR_TOOM3_THRESHOLD 216
#define SQR_KARATSUBA_THRESHOLD 36
#define SQR_TOOM3_THRESHOLD 218
#define MULLOW_BASECASE_THRESHOLD 0 /* always */
#define MULLOW_DC_THRESHOLD 93
#define MULLOW_MUL_N_THRESHOLD 166
#define MULLOW_BASECASE_THRESHOLD 36
#define MULLOW_DC_THRESHOLD 119
#define MULLOW_MUL_N_THRESHOLD 194
#define DIV_SB_PREINV_THRESHOLD 0 /* always */
#define DIV_DC_THRESHOLD 102
#define POWM_THRESHOLD 190
#define DIV_DC_THRESHOLD 91
#define POWM_THRESHOLD 185
#define GCD_ACCEL_THRESHOLD 3
#define GCDEXT_THRESHOLD MP_SIZE_T_MAX /* never */
#define GCDEXT_THRESHOLD 208
#define JACOBI_BASE_METHOD 2
#define DIVREM_1_NORM_THRESHOLD MP_SIZE_T_MAX /* never */
@ -30,16 +31,15 @@
#define DIVEXACT_1_THRESHOLD 0 /* always (native) */
#define MODEXACT_1_ODD_THRESHOLD 0 /* always (native) */
#define GET_STR_DC_THRESHOLD 7
#define GET_STR_PRECOMPUTE_THRESHOLD 10
#define GET_STR_DC_THRESHOLD 9
#define GET_STR_PRECOMPUTE_THRESHOLD 11
#define SET_STR_THRESHOLD 8540
#define MUL_FFT_TABLE { 784, 1568, 3392, 7424, 15360, 45056, 0 }
#define MUL_FFT_MODF_THRESHOLD 800
#define MUL_FFT_THRESHOLD 7040
#define MUL_FFT_TABLE { 752, 1696, 3392, 7424, 15360, 28672, 0 }
#define MUL_FFT_MODF_THRESHOLD 912
#define SQR_FFT_TABLE { 848, 1824, 3776, 7424, 15360, 45056, 0 }
#define SQR_FFT_MODF_THRESHOLD 944
#define SQR_FFT_TABLE { 880, 1824, 3904, 7424, 17408, 36864, 0 }
#define SQR_FFT_MODF_THRESHOLD 1008
#define SQR_FFT_THRESHOLD 7040
/* Tuneup completed successfully, took 14 seconds */
/* Tuneup completed successfully, took 21 seconds */