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.

308 lines
13 KiB

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