deprecated.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. #ifndef SCM_DEPRECATED_H
  2. #define SCM_DEPRECATED_H
  3. /* Copyright 2003-2007,2009-2018,2020-2022
  4. Free Software Foundation, Inc.
  5. This file is part of Guile.
  6. Guile is free software: you can redistribute it and/or modify it
  7. under the terms of the GNU Lesser General Public License as published
  8. by the Free Software Foundation, either version 3 of the License, or
  9. (at your option) any later version.
  10. Guile is distributed in the hope that it will be useful, but WITHOUT
  11. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
  13. License for more details.
  14. You should have received a copy of the GNU Lesser General Public
  15. License along with Guile. If not, see
  16. <https://www.gnu.org/licenses/>. */
  17. #include "libguile/snarf.h"
  18. #if (SCM_ENABLE_DEPRECATED == 1)
  19. /* Deprecated declarations go here. */
  20. /* Return true (non-zero) if GCC version MAJ.MIN or later is being used
  21. * (macro taken from glibc.) */
  22. #if defined __GNUC__ && defined __GNUC_MINOR__
  23. # define SCM_GNUC_PREREQ(maj, min) \
  24. ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
  25. #else
  26. # define SCM_GNUC_PREREQ(maj, min) 0
  27. #endif
  28. #define scm_i_jmp_buf scm_i_jmp_buf_GONE__USE_JMP_BUF_INSTEAD
  29. #define SCM_VALIDATE_VECTOR_OR_DVECTOR(pos, v) \
  30. do { \
  31. SCM_ASSERT (scm_is_vector (v) || scm_is_true (scm_f64vector_p (v)), \
  32. v, pos, FUNC_NAME); \
  33. } while (0)
  34. #ifdef SCM_SUPPORT_STATIC_ALLOCATION
  35. #define SCM_STATIC_DOUBLE_CELL(c_name, car, cbr, ccr, cdr) \
  36. static SCM_ALIGNED (8) SCM_UNUSED scm_t_cell \
  37. c_name ## _raw_cell [2] = \
  38. { \
  39. { SCM_PACK (car), SCM_PACK (cbr) }, \
  40. { SCM_PACK (ccr), SCM_PACK (cdr) } \
  41. }; \
  42. static SCM_UNUSED SCM c_name = SCM_PACK (& c_name ## _raw_cell)
  43. #endif /* SCM_SUPPORT_STATIC_ALLOCATION */
  44. #define scm_gc_running_p 0
  45. #define SCM_I_UTYPE_MAX(type) ((type)-1)
  46. #define SCM_I_TYPE_MAX(type,umax) ((type)((umax)/2))
  47. #define SCM_I_TYPE_MIN(type,umax) (-((type)((umax)/2))-1)
  48. #define SCM_T_UINT8_MAX UINT8_MAX
  49. #define SCM_T_INT8_MIN INT8_MIN
  50. #define SCM_T_INT8_MAX INT8_MAX
  51. #define SCM_T_UINT16_MAX UINT16_MAX
  52. #define SCM_T_INT16_MIN INT16_MIN
  53. #define SCM_T_INT16_MAX INT16_MAX
  54. #define SCM_T_UINT32_MAX UINT32_MAX
  55. #define SCM_T_INT32_MIN INT32_MIN
  56. #define SCM_T_INT32_MAX INT32_MAX
  57. #define SCM_T_UINT64_MAX UINT64_MAX
  58. #define SCM_T_INT64_MIN INT64_MIN
  59. #define SCM_T_INT64_MAX INT64_MAX
  60. #define SCM_T_UINTMAX_MAX UINTMAX_MAX
  61. #define SCM_T_INTMAX_MIN INTMAX_MIN
  62. #define SCM_T_INTMAX_MAX INTMAX_MAX
  63. #define SCM_T_UINTPTR_MAX UINTPTR_MAX
  64. #define SCM_T_INTPTR_MIN INTPTR_MIN
  65. #define SCM_T_INTPTR_MAX INTPTR_MAX
  66. #define SCM_HAVE_T_INT64 1 /* 0 or 1 */
  67. #define SCM_HAVE_T_UINT64 1 /* 0 or 1 */
  68. #define SCM_HAVE_ARRAYS 1 /* always true now */
  69. #ifdef __GNUC__
  70. #define SCM_DEPRECATED_TYPE __attribute__((__deprecated__))
  71. #else
  72. #define SCM_DEPRECATED_TYPE /*deprecated*/
  73. #endif
  74. typedef int8_t scm_t_int8 SCM_DEPRECATED_TYPE;
  75. typedef uint8_t scm_t_uint8 SCM_DEPRECATED_TYPE;
  76. typedef int16_t scm_t_int16 SCM_DEPRECATED_TYPE;
  77. typedef uint16_t scm_t_uint16 SCM_DEPRECATED_TYPE;
  78. typedef int32_t scm_t_int32 SCM_DEPRECATED_TYPE;
  79. typedef uint32_t scm_t_uint32 SCM_DEPRECATED_TYPE;
  80. typedef intmax_t scm_t_intmax SCM_DEPRECATED_TYPE;
  81. typedef uintmax_t scm_t_uintmax SCM_DEPRECATED_TYPE;
  82. typedef intptr_t scm_t_intptr SCM_DEPRECATED_TYPE;
  83. typedef uintptr_t scm_t_uintptr SCM_DEPRECATED_TYPE;
  84. typedef int64_t scm_t_int64 SCM_DEPRECATED_TYPE;
  85. typedef uint64_t scm_t_uint64 SCM_DEPRECATED_TYPE;
  86. typedef ptrdiff_t scm_t_ptrdiff SCM_DEPRECATED_TYPE;
  87. typedef struct scm_thread scm_i_thread SCM_DEPRECATED_TYPE;
  88. #undef SCM_DEPRECATED_TYPE
  89. #define SCM_MEMORY_ERROR do { scm_report_out_of_memory (); } while (0)
  90. SCM_DEPRECATED char* scm_find_executable (const char *name);
  91. SCM_DEPRECATED int scm_is_simple_vector (SCM obj);
  92. SCM_DEPRECATED SCM scm_bitvector_p (SCM vec);
  93. SCM_DEPRECATED SCM scm_bitvector (SCM bits);
  94. SCM_DEPRECATED SCM scm_make_bitvector (SCM len, SCM fill);
  95. SCM_DEPRECATED SCM scm_bitvector_length (SCM vec);
  96. SCM_DEPRECATED SCM scm_c_bitvector_ref (SCM vec, size_t idx);
  97. SCM_DEPRECATED SCM scm_bitvector_ref (SCM vec, SCM idx);
  98. SCM_DEPRECATED void scm_c_bitvector_set_x (SCM vec, size_t idx, SCM val);
  99. SCM_DEPRECATED SCM scm_bitvector_set_x (SCM vec, SCM idx, SCM val);
  100. SCM_DEPRECATED SCM scm_bitvector_fill_x (SCM vec, SCM val);
  101. SCM_DEPRECATED SCM scm_bit_invert_x (SCM vec);
  102. SCM_DEPRECATED SCM scm_bit_count (SCM item, SCM seq);
  103. SCM_DEPRECATED SCM scm_bit_count_star (SCM v, SCM kv, SCM obj);
  104. SCM_DEPRECATED SCM scm_bit_position (SCM item, SCM v, SCM k);
  105. SCM_DEPRECATED SCM scm_bit_set_star_x (SCM v, SCM kv, SCM obj);
  106. SCM_DEPRECATED SCM scm_istr2bve (SCM str);
  107. SCM_DEPRECATED SCM scm_from_contiguous_typed_array (SCM type, SCM bounds,
  108. const void *bytes,
  109. size_t byte_len);
  110. #define SCM_SOURCE_PROPERTY_FLAG_BREAK 1
  111. SCM_DEPRECATED scm_t_bits scm_tc16_srcprops;
  112. SCM_DEPRECATED SCM scm_sym_copy;
  113. SCM_DEPRECATED SCM scm_make_srcprops (long line, int col, SCM filename,
  114. SCM copy, SCM alist);
  115. SCM_DEPRECATED SCM scm_copy_tree (SCM obj);
  116. #define SCM_SYMBOL_FUNC(x) (scm_symbol_fref (x))
  117. #define SCM_SET_SYMBOL_FUNC(x,f) (scm_symbol_fset_x (x, f))
  118. #define SCM_SYMBOL_PROPS(x) (scm_symbol_pref (x))
  119. #define SCM_SET_SYMBOL_PROPS(x,p) (scm_symbol_pset_x (x, p))
  120. SCM_DEPRECATED SCM scm_symbol_fref (SCM s);
  121. SCM_DEPRECATED SCM scm_symbol_pref (SCM s);
  122. SCM_DEPRECATED SCM scm_symbol_fset_x (SCM s, SCM val);
  123. SCM_DEPRECATED SCM scm_symbol_pset_x (SCM s, SCM val);
  124. SCM_DEPRECATED SCM scm_dynamic_unlink (SCM obj);
  125. /* Each bignum is just an mpz_t stored in a double cell starting at word 1. */
  126. #if defined BUILDING_LIBGUILE || SCM_ENABLE_MINI_GMP == 0
  127. #define SCM_I_BIG_MPZ(x) (*((mpz_t *) (SCM_CELL_OBJECT_LOC((x),1))))
  128. #endif
  129. SCM_DEPRECATED int scm_install_gmp_memory_functions;
  130. SCM_DEPRECATED SCM scm_i_normbig (SCM x);
  131. SCM_DEPRECATED double scm_i_big2dbl (SCM b);
  132. SCM_DEPRECATED SCM scm_i_long2big (long n);
  133. SCM_DEPRECATED SCM scm_i_ulong2big (unsigned long n);
  134. SCM_DEPRECATED SCM scm_i_clonebig (SCM src_big, int same_sign_p);
  135. void scm_i_init_deprecated (void);
  136. #endif
  137. #endif /* SCM_DEPRECATED_H */