You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

337 lines
14 KiB

25 years ago
  1. 2000-05-19 Richard Kreckel <kreckel@ginac.de>
  2. * src/base/digitseq/cl_DS_mul.cc: Rearranged break-even points to
  3. better match present-day CPUs whenever GMP3 is used.
  4. * src/base/digitseq/cl_DS_div.cc: dto.
  5. * src/TUNING: Added comment about order of tuning.
  6. * configure, configure.in: Safer GMP3-detection.
  7. * INSTALL.generic: Clarified behaviour of --with-gmp.
  8. * autoconf/config.guess: updated from Clisp-2000-03-06 sources.
  9. 2000-05-05 Richard Kreckel <kreckel@ginac.de>
  10. * doc/cln.tex: Added index entries.
  11. * doc/texinfo.tex: Upgraded to newer version 1999-10-01.07.
  12. * doc/*: Changes triggered.
  13. 2000-05-04 Richard Kreckel <kreckel@ginac.de>
  14. * gmp/: removed completely. From now on we are going to link
  15. externally against libgmp3.0 or above!
  16. * configure, configure.in, Makefile.in, */Makeflags: removed support
  17. of internal gmp 2.0.2, like $GMP_INCLUDES, which should be done by
  18. setting $CPPFLAGS instead.
  19. * Makefile.in: Added libtool inter-library dependency for -lgmp and
  20. conforming interface versioning (-version-info).
  21. * autoconf/ltconfig, autoconf/ltmain.sh: Updated to newer versions
  22. from libtool 1.3.4.
  23. 2000-02-22 Bruno Haible <haible@clisp.cons.org>
  24. * src/base/digitseq/cl_asm_mips_.cc: Starting at argument 5 the
  25. parameter passing was changed for the MIPS n32 ABI.
  26. 2000-01-24 Richard Kreckel <kreckel@ginac.de>
  27. * gmp/*: Replaced the complete mpn sources with the ones from
  28. Debian since they are maintained while the ones from FSF
  29. aren't and there were problems on some architectures, PowerPC
  30. in particular. See the file gmp/README.CLN. This way the
  31. hard links in this directory have vanished, they were causing
  32. trouble for people working in AFS. This became necessary for
  33. Debian, because there it woudn't compile on PPC.
  34. 2000-01-13 Richard Kreckel <kreckel@ginac.de>
  35. * Version 1.0.3 released.
  36. 2000-01-13 Richard Kreckel <kreckel@ginac.de>
  37. * src/base/cl_macros.h (nonreturning_function): For egcs and newer
  38. use __attribute__ ((__noreturn__)) instead of the __volatile__
  39. storage class.
  40. (nonreturning): Remove macro.
  41. * include/*: Minor fixes to stop -ansi -pedantic from complaining.
  42. * include/cl_integer.h: (doublefactorial): New declaration.
  43. * src/integer/misc/combin/cl_I_doublefactorial.cc: New file.
  44. 1999-12-18 Bruno Haible <haible@clisp.cons.org>
  45. * autoconf/acgeneral.m4 (AC_ARG_PROGRAM): Create conftestsed using
  46. "cat", not "echo".
  47. * autoconf/ltconfig: Improve support for recent FreeBSD 3.
  48. * include/cl_GV.h (cl_GV_vectorops): Change return type from 'T' to
  49. 'const T', to match definition in src/vector/cl_GV_number.cc.
  50. Reported by Duncan Simpson <dps@io.stargate.co.uk>.
  51. * gmp/mpn/Makefile.in (.S.lo): Use 'if', not '&&', because '&&' may
  52. yield return code 1.
  53. 1999-09-07 Bruno Haible <haible@clisp.cons.org>
  54. * Version 1.0.2 released.
  55. 1999-09-06 Bruno Haible <haible@clisp.cons.org>
  56. * src/rational/cl_RA.h (integerp, ratiop): Instead of returning a
  57. boolean expression, write alternatives ending with either
  58. "return cl_true;" or "return cl_false;". This way, g++ does a
  59. better job inlining it.
  60. * src/float/cl_F.h (longfloatp): Likewise.
  61. * src/real/cl_R.h (rationalp, integerp, floatp): Likewise.
  62. * src/complex/cl_C.h (realp, complexp): Likewise.
  63. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  64. * include/cl_integer.h (cl_equal_hashcode): New declaration.
  65. * include/cl_rational.h (cl_equal_hashcode): New declaration.
  66. * include/cl_sfloat.h (cl_equal_hashcode): New declaration.
  67. * include/cl_ffloat.h (cl_equal_hashcode): New declaration.
  68. * include/cl_dfloat.h (cl_equal_hashcode): New declaration.
  69. * include/cl_lfloat.h (cl_equal_hashcode): New declaration.
  70. * include/cl_float.h (cl_equal_hashcode): New declaration.
  71. * include/cl_real.h (cl_equal_hashcode): New declaration.
  72. * include/cl_complex.h (cl_equal_hashcode): New declaration.
  73. * src/base/cl_N.h (equal_hashcode_low, equal_hashcode_one): New macros.
  74. * src/integer/misc/cl_I_eqhashcode.cc: New file.
  75. * src/rational/misc/cl_RA_eqhashcode.cc: New file.
  76. * src/float/sfloat/misc/cl_SF_eqhashcode.cc: New file.
  77. * src/float/ffloat/misc/cl_FF_eqhashcode.cc: New file.
  78. * src/float/dfloat/misc/cl_DF_eqhashcode.cc: New file.
  79. * src/float/lfloat/misc/cl_LF_eqhashcode.cc: New file.
  80. * src/float/misc/cl_F_eqhashcode.cc: New file.
  81. * src/real/misc/cl_R_eqhashcode.cc: New file.
  82. * src/complex/misc/cl_C_eqhashcode.cc: New file.
  83. * doc/cln.tex: Document `cl_equal_hashcode'.
  84. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  85. * include/cl_ring.h (cl_number_ring_ops): Add `contains' member.
  86. (cl_number_ring): New class.
  87. (cl_specialized_number_ring<T>): Inherit from cl_number_ring.
  88. (instanceof): New function.
  89. * src/integer/ring/cl_I_ring.cc (cl_I_p): New function.
  90. * src/integer/misc/cl_I_as.cc (cl_I_p): Add comment.
  91. * src/rational/ring/cl_RA_ring.cc (cl_RA_p): New function.
  92. * src/rational/misc/cl_RA_as.cc (cl_RA_p): Add comment.
  93. * src/real/ring/cl_R_ring.cc (cl_R_p): New function.
  94. * src/real/misc/cl_R_as.cc (cl_R_p): Add comment.
  95. * src/complex/ring/cl_C_ring.cc (cl_N_p): New function.
  96. * src/complex/misc/cl_N_as.cc (cl_N_p): Add comment.
  97. * doc/cln.tex: Document `instanceof'.
  98. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  99. * include/cl_rational.h (numerator, denominator): New declarations.
  100. * src/rational/elem/cl_RA_numerator.cc: New file.
  101. * src/rational/elem/cl_RA_denominator.cc: New file.
  102. * include/cl_integer.h (numerator, denominator): New inline functions.
  103. * doc/cln.tex: Document `numerator' and `denominator'.
  104. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  105. * src/rational/algebraic/cl_RA_rootp.cc (rootp): Fix endless loop
  106. in the integer case.
  107. * src/rational/algebraic/cl_RA_rootp_I.cc (rootp): Likewise.
  108. 1999-09-05 Bruno Haible <haible@clisp.cons.org>
  109. * include/cl_config.h.in: Support for sparc64 CPU.
  110. * include/cl_modules.h: Likewise.
  111. * include/cl_types.h: Likewise.
  112. * include/cl_object.h: Likewise.
  113. * include/cl_GV.h: Likewise.
  114. * src/Makefile.in: Likewise.
  115. * src/base/cl_alloca.h: Likewise.
  116. * src/base/cl_macros.h: Likewise.
  117. * src/base/cl_sysdep.h: Likewise.
  118. * src/base/cl_low.h: Likewise.
  119. * src/base/digitseq/cl_asm.h: Likewise.
  120. * src/base/digitseq/cl_asm_.cc: Likewise.
  121. * src/base/digitseq/cl_asm_sparc64.h: New file.
  122. * src/base/digitseq/cl_asm_sparc64_.cc: New file.
  123. * src/modinteger/cl_MI_int.h: Support for sparc64 CPU.
  124. * src/polynomial/elem/cl_UP_no_ring.cc: Likewise.
  125. * src/polynomial/elem/cl_UP_GF2.h: Likewise.
  126. * src/polynomial/elem/cl_asm_GF2.cc: Likewise.
  127. 1999-09-04 Bruno Haible <haible@clisp.cons.org>
  128. * src/base/digitseq/cl_asm_sparc_.cc (orc2_loop_up, orc2_loop_down):
  129. Use the `orn' instruction.
  130. 1999-08-14 Bruno Haible <haible@clisp.cons.org>
  131. Assume all platforms have <stdlib.h> and clock_t.
  132. * configure.in: Don't call CL_STDLIB_H and CL_CLOCK_T.
  133. * src/base/cl_base_config.h.in (CLOCK_T): Remove definition.
  134. * src/base/random/cl_random_from.cc: Use clock_t instead of CLOCK_T.
  135. * src/timing/cl_t_config.h.in (CLOCK_T): Remove definition.
  136. * src/timing/cl_t_current2.cc: Use clock_t instead of CLOCK_T.
  137. 1999-07-18 Bruno Haible <haible@clisp.cons.org>
  138. * gmp/config.guess: Link to autoconf/config.guess.
  139. gmp/config.sub: Link to autoconf/config.sub.
  140. Needed for Win32 platforms.
  141. 1999-07-17 Bruno Haible <haible@clisp.cons.org>
  142. * autoconf/aclocal.m4 (CL_CANONICAL_HOST_CPU): Distinguish "sparc" and
  143. "sparc64" according to the C compiler, not the uname result.
  144. 1999-06-17 Bruno Haible <haible@clisp.cons.org>
  145. * src/base/digitseq/cl_asm_sparc_.cc (compare_loop_up): Fix
  146. COUNTER_LOOPS version, fortunately not used yet.
  147. * include/cl_modules.h: Prepare for gcc version 3.
  148. 1999-06-12 Bruno Haible <haible@clisp.cons.org>
  149. * src/rational/elem/cl_RA_plus.cc, src/rational/elem/cl_RA_minus.cc:
  150. Change the last call from I_I_to_RT to I_I_to_RA.
  151. 1999-06-09 Bruno Haible <haible@clisp.cons.org>
  152. * Version 1.0.1 released.
  153. 1999-06-09 Bruno Haible <haible@clisp.cons.org>
  154. * src/integer/cl_I.h (pFN_maxlength_digits_at): Define also when
  155. intDsize==64.
  156. 1999-06-08 Bruno Haible <haible@clisp.cons.org>
  157. * autoconf/intparam.c (printf_underscored): Change argument type to
  158. `const char*'.
  159. * include/cl_modules.h (CL_OUTPUT_LABEL, CL_JUMP_TO): New macros.
  160. (CL_PROVIDE, CL_PROVIDE_END): Use them.
  161. * include/cl_string.h (cl_heap_string::operator new): Return 1, not 0.
  162. * include/cl_GV.h (cl_GV_inner<T>::operator new): Likewise.
  163. * src/base/ring/cl_no_ring.cc (dummy_canonhom, dummy_expt_pos): Don't
  164. cast a cl_I to void here. Works around a bug in g++-2.95.
  165. * src/complex/misc/cl_C_class.cc: Include "cl_C.h".
  166. * src/polynomial/elem/cl_UP_no_ring.cc (dummy_canonhom,
  167. dummy_expt_pos): Don't cast a cl_I to void here. Works around a bug
  168. in g++-2.95.
  169. * src/polynomial/elem/cl_asm_sparc_GF2.cc (DECLARE_FUNCTION): New
  170. macro.
  171. * src/rational/misc/cl_RA_class.cc: Include "cl_RA.h".
  172. * src/vector/cl_GV_I.cc (cl_heap_GV_I_general::operator new,
  173. DEFINE_cl_heap_GV_I_bits): Return 1, not 0.
  174. * src/vector/cl_GV_number.cc (cl_heap_GV_number_general::operator new):
  175. Likewise.
  176. 1999-06-01 Bruno Haible <haible@clisp.cons.org>
  177. * autoconf/aclocal.m4 (CL_CANONICAL_HOST_CPU): Canonicalize alpha
  178. variants to alpha.
  179. 1999-05-29 Bruno Haible <haible@clisp.cons.org>
  180. * src/base/digitseq/cl_asm_i386_.cc (DECLARE_FUNCTION): Treat
  181. OpenBSD like NetBSD.
  182. * src/base/digitseq/cl_asm_sparc_.cc (DECLARE_FUNCTION): Likewise.
  183. * src/base/digitseq/cl_asm_m68k_.cc (DECLARE_FUNCTION): Treat
  184. OpenBSD like NetBSD, and Linux/ELF like SVR4.
  185. 1999-05-16 Bruno Haible <haible@clisp.cons.org>
  186. * src/base/cl_low.h (integerlength32) [__rs6000__]: Use old assembler
  187. syntax on AIX systems and new assembler syntax on non-AIX systems.
  188. 1999-05-01 Bruno Haible <haible@clisp.cons.org>
  189. * autoconf/config.guess, autoconf/config.sub: Upgrade to newest
  190. version from GNU CVS.
  191. 1999-04-24 Bruno Haible <haible@clisp.cons.org>
  192. * src/integer/bitwise/cl_I_logand.cc (logand): Optimize the case when
  193. either operand is a positive fixnum, O(1) instead of O(N).
  194. * src/integer/bitwise/cl_I_lognand.cc (lognand): Likewise.
  195. * src/integer/bitwise/cl_I_logandc2.cc (logandc2): Likewise for the
  196. first operand.
  197. 1999-04-14 Bruno Haible <haible@clisp.cons.org>
  198. * autoconf/aclocal.m4 (CL_GLOBAL_CONSTRUCTORS): Add check whether
  199. ctor/dtor needs to be exported.
  200. * include/cl_config.h.in (CL_NEED_GLOBALIZE_CTORDTOR): New macro.
  201. * include/cl_modules.h (CL_GLOBALIZE_JUMP_LABEL): Renamed from
  202. CL_GLOBALIZE_LABEL.
  203. (CL_GLOBALIZE_LABEL): New macro.
  204. (CL_GLOBALIZE_CTORDTOR_LABEL): Renamed from CL_GLOBALIZE_ASM_LABEL.
  205. (CL_PROVIDE): Update.
  206. 1999-04-12 Bruno Haible <haible@clisp.cons.org>
  207. * src/Makefile.in ($(ASMFILES_S)): On HPPA, ignore preprocessing
  208. errors ("unterminated string or character constant").
  209. ($(ASMFILES_LO)): On HPPA, try with various settings of
  210. COMPILER_PATH, in order to try /usr/ccs/bin/as and /bin/as.
  211. 1999-04-11 Bruno Haible <haible@clisp.cons.org>
  212. * INSTALL: Mention gmp problems on MIPS.
  213. * doc/cln.tex: Likewise.
  214. 1999-03-24 Mumit Khan <khan@xraylith.wisc.edu>
  215. * src/Makefile.in (SUBDIRS): Filter out CVS and RCS directories from
  216. the source tree.
  217. * include/cl_modules.h (CL_GLOBALIZE_LABEL): Define for Win32.
  218. (CL_GLOBALIZE_ASM_LABEL): New macro.
  219. (CL_PROVIDE): Use it.
  220. * src/base/random/cl_random_from.cc: Handle WIN32.
  221. * src/timing/cl_t_current.cc: Likewise.
  222. 1999-03-15 Bruno Haible <haible@clisp.cons.org>
  223. * autoconf/intparam.c (main7): Use %lX instead of %X for a `long'.
  224. (main8): Adapt for C++.
  225. 1999-03-09 Bruno Haible <haible@clisp.cons.org>
  226. * INSTALL: Mention egcs-1.1 problems on Sparc.
  227. * doc/cln.tex: Likewise.
  228. 1999-03-08 Bruno Haible <haible@clisp.cons.org>
  229. * autoconf/aclocal.m4 (CL_FPU_CONTROL): Fix the "checking for"
  230. messages.
  231. 1999-02-25 Bruno Haible <haible@clisp.cons.org>
  232. * autoconf/aclocal.m4: In test programs, declare `int main()', not
  233. `main()'.
  234. * lidia-interface/src/interfaces/integers/cln/bigint.c
  235. (bigint_to_string): Fix for negative arguments.
  236. * src/base/cl_low.h: Check for `__sparc__', not `SPARC'.
  237. * src/base/cl_alloca.h: Likewise.
  238. * src/base/cl_low.h: Eliminate CLISP style "# " comments.
  239. * src/base/digitseq/cl_asm_arm_.cc,
  240. src/base/digitseq/cl_asm_mips_.cc,
  241. src/float/dfloat/elem/cl_DF_mul.cc: Likewise.
  242. * src/modinteger/cl_MI_pow2.h,
  243. src/modinteger/cl_MI_pow2m1.h,
  244. src/modinteger/cl_MI_pow2p1.h: Workaround g++-2.7.2 inlining bug.
  245. 1999-01-18 Bruno Haible <haible@clisp.cons.org>
  246. * autoconf/acgeneral.m4,
  247. autoconf/acspecific.m4: Upgrade to autoconf-2.13.
  248. * autoconf/config.guess, autoconf/config.sub: Likewise.
  249. * autoconf/aclocal.m4 (CL_ALLOCA): Test for _MSC_VER and alloca being
  250. a macro. Use ${ac_objext}.
  251. * src/base/cl_macros.h (alloca): Put _MSC_VER test before the others,
  252. conforming with CL_ALLOCA.
  253. 1999-01-12 Bruno Haible <haible@clisp.cons.org>
  254. * Version 1.0 released.