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.

294 lines
12 KiB

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