unif.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. /* classes: h_files */
  2. #ifndef SCM_UNIFORM_VECTORS_H
  3. #define SCM_UNIFORM_VECTORS_H
  4. /* Copyright (C) 1995,1996,1997,1999,2000,2001 Free Software Foundation, Inc.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2, or (at your option)
  9. * any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this software; see the file COPYING. If not, write to
  18. * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  19. * Boston, MA 02110-1301 USA
  20. *
  21. * As a special exception, the Free Software Foundation gives permission
  22. * for additional uses of the text contained in its release of GUILE.
  23. *
  24. * The exception is that, if you link the GUILE library with other files
  25. * to produce an executable, this does not by itself cause the
  26. * resulting executable to be covered by the GNU General Public License.
  27. * Your use of that executable is in no way restricted on account of
  28. * linking the GUILE library code into it.
  29. *
  30. * This exception does not however invalidate any other reasons why
  31. * the executable file might be covered by the GNU General Public License.
  32. *
  33. * This exception applies only to the code released by the
  34. * Free Software Foundation under the name GUILE. If you copy
  35. * code from other Free Software Foundation releases into a copy of
  36. * GUILE, as the General Public License permits, the exception does
  37. * not apply to the code that you add in this way. To avoid misleading
  38. * anyone as to the status of such modified files, you must delete
  39. * this exception notice from them.
  40. *
  41. * If you write modifications of your own for GUILE, it is your choice
  42. * whether to permit this exception to apply to your modifications.
  43. * If you do not wish that, delete this exception notice. */
  44. #include "libguile/__scm.h"
  45. /*
  46. an array SCM is a non-immediate pointing to a heap cell where:
  47. CAR: bits 0-15 hold the smob type id: scm_tc16_array
  48. bit 16 is the SCM_ARRAY_FLAG_CONTIGUOUS flag
  49. bits 17-31 hold the dimension (0 -- 32767)
  50. CDR: pointer to a malloced block containing an scm_t_array structure
  51. followed by an scm_t_array_dim structure for each dimension.
  52. */
  53. typedef struct scm_t_array
  54. {
  55. SCM v; /* the contents of the array, e.g., a vector or uniform vector. */
  56. unsigned long base;
  57. } scm_t_array;
  58. typedef struct scm_t_array_dim
  59. {
  60. long lbnd;
  61. long ubnd;
  62. long inc;
  63. } scm_t_array_dim;
  64. #if (SCM_DEBUG_DEPRECATED == 0)
  65. # define scm_array scm_t_array
  66. # define scm_array_dim scm_t_array_dim
  67. #endif
  68. extern scm_t_bits scm_tc16_array;
  69. #define SCM_ARRAY_FLAG_CONTIGUOUS (1 << 16)
  70. #if (SCM_DEBUG_DEPRECATED == 0)
  71. #define SCM_ARRAY_CONTIGUOUS SCM_ARRAY_FLAG_CONTIGUOUS
  72. #endif
  73. #define SCM_ARRAYP(a) SCM_TYP16_PREDICATE (scm_tc16_array, a)
  74. #define SCM_ARRAY_NDIM(x) ((size_t) (SCM_CELL_WORD_0 (x) >> 17))
  75. #define SCM_ARRAY_CONTP(x) (SCM_CELL_WORD_0 (x) & SCM_ARRAY_FLAG_CONTIGUOUS)
  76. #define SCM_SET_ARRAY_CONTIGUOUS_FLAG(x) \
  77. (SCM_SET_CELL_WORD_0 ((x), SCM_CELL_WORD_0 (x) | SCM_ARRAY_FLAG_CONTIGUOUS))
  78. #define SCM_CLR_ARRAY_CONTIGUOUS_FLAG(x) \
  79. (SCM_SET_CELL_WORD_0 ((x), SCM_CELL_WORD_0 (x) & ~SCM_ARRAY_FLAG_CONTIGUOUS))
  80. #define SCM_ARRAY_MEM(a) ((scm_t_array *) SCM_CELL_WORD_1 (a))
  81. #define SCM_ARRAY_V(a) (SCM_ARRAY_MEM (a)->v)
  82. #define SCM_ARRAY_BASE(a) (SCM_ARRAY_MEM (a)->base)
  83. #define SCM_ARRAY_DIMS(a) ((scm_t_array_dim *)((char *) SCM_ARRAY_MEM (a) + sizeof (scm_t_array)))
  84. #define SCM_I_MAX_LENGTH ((unsigned long) (-1L) >> 8)
  85. #define SCM_UVECTOR_BASE(x) ((void *) (SCM_CELL_WORD_1 (x)))
  86. #define SCM_SET_UVECTOR_BASE(v, b) (SCM_SET_CELL_WORD_1 ((v), (b)))
  87. #define SCM_UVECTOR_MAX_LENGTH SCM_I_MAX_LENGTH
  88. #define SCM_UVECTOR_LENGTH(x) (((unsigned long) SCM_CELL_WORD_0 (x)) >> 8)
  89. #define SCM_SET_UVECTOR_LENGTH(v, l, t) (SCM_SET_CELL_WORD_0 ((v), ((l) << 8) + (t)))
  90. #define SCM_BITVECTOR_P(x) (!SCM_IMP (x) && (SCM_TYP7 (x) == scm_tc7_bvect))
  91. #define SCM_BITVECTOR_BASE(x) ((unsigned long *) (SCM_CELL_WORD_1 (x)))
  92. #define SCM_SET_BITVECTOR_BASE(v, b) (SCM_SET_CELL_WORD_1 ((v), (b)))
  93. #define SCM_BITVECTOR_MAX_LENGTH SCM_I_MAX_LENGTH
  94. #define SCM_BITVECTOR_LENGTH(x) (((unsigned long) SCM_CELL_WORD_0 (x)) >> 8)
  95. #define SCM_SET_BITVECTOR_LENGTH(v, l) (SCM_SET_CELL_WORD_0 ((v), ((l) << 8) + scm_tc7_bvect))
  96. extern size_t scm_uniform_element_size (SCM obj);
  97. extern SCM scm_make_uve (long k, SCM prot);
  98. extern SCM scm_uniform_vector_length (SCM v);
  99. extern SCM scm_array_p (SCM v, SCM prot);
  100. extern SCM scm_array_rank (SCM ra);
  101. extern SCM scm_array_dimensions (SCM ra);
  102. extern SCM scm_shared_array_root (SCM ra);
  103. extern SCM scm_shared_array_offset (SCM ra);
  104. extern SCM scm_shared_array_increments (SCM ra);
  105. extern long scm_aind (SCM ra, SCM args, const char *what);
  106. extern SCM scm_make_ra (int ndim);
  107. extern SCM scm_shap2ra (SCM args, const char *what);
  108. extern SCM scm_dimensions_to_uniform_array (SCM dims, SCM prot, SCM fill);
  109. extern void scm_ra_set_contp (SCM ra);
  110. extern SCM scm_make_shared_array (SCM oldra, SCM mapfunc, SCM dims);
  111. extern SCM scm_transpose_array (SCM ra, SCM args);
  112. extern SCM scm_enclose_array (SCM ra, SCM axes);
  113. extern SCM scm_array_in_bounds_p (SCM v, SCM args);
  114. extern SCM scm_uniform_vector_ref (SCM v, SCM args);
  115. extern SCM scm_cvref (SCM v, unsigned long pos, SCM last);
  116. extern SCM scm_array_set_x (SCM v, SCM obj, SCM args);
  117. extern SCM scm_array_contents (SCM ra, SCM strict);
  118. extern SCM scm_ra2contig (SCM ra, int copy);
  119. extern SCM scm_uniform_array_read_x (SCM ra, SCM port_or_fd, SCM start, SCM end);
  120. extern SCM scm_uniform_array_write (SCM v, SCM port_or_fd, SCM start, SCM end);
  121. extern SCM scm_bit_count (SCM item, SCM seq);
  122. extern SCM scm_bit_position (SCM item, SCM v, SCM k);
  123. extern SCM scm_bit_set_star_x (SCM v, SCM kv, SCM obj);
  124. extern SCM scm_bit_count_star (SCM v, SCM kv, SCM obj);
  125. extern SCM scm_bit_invert_x (SCM v);
  126. extern SCM scm_istr2bve (char *str, long len);
  127. extern SCM scm_array_to_list (SCM v);
  128. extern SCM scm_list_to_uniform_array (SCM ndim, SCM prot, SCM lst);
  129. extern int scm_raprin1 (SCM exp, SCM port, scm_print_state *pstate);
  130. extern SCM scm_array_prototype (SCM ra);
  131. extern void scm_init_unif (void);
  132. #if (SCM_DEBUG_DEPRECATED == 0)
  133. /* apparently it's possible to have more than SCM_LENGTH_MAX elements
  134. in an array: if the length is SCM_LENGTH_MAX then the SCM_VELTS
  135. block begins with the true length (a long int). I wonder if it
  136. works. */
  137. #define SCM_HUGE_LENGTH(x)\
  138. (SCM_LENGTH_MAX==SCM_LENGTH(x) ? *((long *)SCM_VELTS(x)) : SCM_LENGTH(x))
  139. #endif /* SCM_DEBUG_DEPRECATED == 0 */
  140. #endif /* SCM_UNIFORM_VECTORS_H */
  141. /*
  142. Local Variables:
  143. c-file-style: "gnu"
  144. End:
  145. */