eval.h 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. /* classes: h_files */
  2. #ifndef EVALH
  3. #define EVALH
  4. /* Copyright (C) 1995, 1996 ,1998, 1999, 2000 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., 59 Temple Place, Suite 330,
  19. * Boston, MA 02111-1307 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. /* {Options}
  46. */
  47. extern scm_option scm_eval_opts[];
  48. #define SCM_EVAL_STACK scm_eval_opts[0].val
  49. #define SCM_N_EVAL_OPTIONS 1
  50. extern int scm_eval_stack;
  51. extern scm_option scm_evaluator_trap_table[];
  52. extern SCM scm_eval_options_interface (SCM setting);
  53. #define SCM_TRAPS_P scm_evaluator_trap_table[0].val
  54. #define SCM_ENTER_FRAME_P scm_evaluator_trap_table[1].val
  55. #define SCM_APPLY_FRAME_P scm_evaluator_trap_table[2].val
  56. #define SCM_EXIT_FRAME_P scm_evaluator_trap_table[3].val
  57. #define SCM_N_EVALUATOR_TRAPS 4
  58. /* {Ilocs}
  59. *
  60. * Ilocs are relative pointers into local environment structures.
  61. *
  62. */
  63. #define SCM_ILOCP(n) (SCM_ITAG8(n)==scm_tc8_iloc)
  64. #define SCM_ILOC00 SCM_MAKE_ITAG8(0L, scm_tc8_iloc)
  65. #define SCM_IDINC (0x00100000L)
  66. #define SCM_ICDR (0x00080000L)
  67. #define SCM_IFRINC (0x00000100L)
  68. #define SCM_IDSTMSK (-SCM_IDINC)
  69. #define SCM_IFRAME(n) ((int)((SCM_ICDR-SCM_IFRINC)>>8) \
  70. & (SCM_UNPACK (n) >> 8))
  71. #define SCM_IDIST(n) (SCM_UNPACK (n) >> 20)
  72. #define SCM_ICDRP(n) (SCM_ICDR & SCM_UNPACK (n))
  73. /* {Evaluator}
  74. *
  75. * For an explanation of symbols containing "EVAL", see beginning of eval.c.
  76. */
  77. #ifdef MEMOIZE_LOCALS
  78. #define SCM_EVALIM(x, env) (SCM_ILOCP (x) ? *scm_ilookup ((x), env) : x)
  79. #else
  80. #define SCM_EVALIM(x, env) x
  81. #endif
  82. #ifdef DEBUG_EXTENSIONS
  83. #define SCM_XEVAL(x, env) (SCM_IMP (x) \
  84. ? (x) \
  85. : (*scm_ceval_ptr) ((x), (env)))
  86. #define SCM_XEVALCAR(x, env) (SCM_NCELLP (SCM_CAR (x)) \
  87. ? (SCM_IMP (SCM_CAR (x)) \
  88. ? SCM_EVALIM (SCM_CAR (x), env) \
  89. : SCM_GLOC_VAL (SCM_CAR (x))) \
  90. : (SCM_SYMBOLP (SCM_CAR (x)) \
  91. ? *scm_lookupcar (x, env, 1) \
  92. : (*scm_ceval_ptr) (SCM_CAR (x), env)))
  93. #else
  94. #define SCM_XEVAL(x, env) (SCM_IMP (x) ? (x) : scm_ceval ((x), (env)))
  95. #define SCM_XEVALCAR(x, env) EVALCAR (x, env)
  96. #endif /* DEBUG_EXTENSIONS */
  97. #define SCM_EXTEND_ENV scm_acons
  98. extern const char scm_s_expression[];
  99. extern const char scm_s_test[];
  100. extern const char scm_s_body[];
  101. extern const char scm_s_bindings[];
  102. extern const char scm_s_variable[];
  103. extern const char scm_s_clauses[];
  104. extern const char scm_s_formals[];
  105. extern const char scm_s_set_x[];
  106. extern SCM scm_sym_and;
  107. extern SCM scm_sym_begin;
  108. extern SCM scm_sym_case;
  109. extern SCM scm_sym_cond;
  110. extern SCM scm_sym_define;
  111. extern SCM scm_sym_do;
  112. extern SCM scm_sym_if;
  113. extern SCM scm_sym_lambda;
  114. extern SCM scm_sym_let;
  115. extern SCM scm_sym_letstar;
  116. extern SCM scm_sym_letrec;
  117. extern SCM scm_sym_quote;
  118. extern SCM scm_sym_quasiquote;
  119. extern SCM scm_sym_unquote;
  120. extern SCM scm_sym_uq_splicing;
  121. extern SCM scm_sym_dot;
  122. extern SCM scm_sym_atapply;
  123. extern SCM scm_sym_atcall_cc;
  124. extern SCM scm_sym_delay;
  125. extern SCM scm_sym_arrow;
  126. extern SCM scm_sym_else;
  127. extern SCM scm_sym_apply;
  128. extern SCM scm_sym_set_x;
  129. extern SCM scm_sym_args;
  130. extern SCM scm_f_apply;
  131. extern long scm_tc16_macro;
  132. /* A resolved global variable reference in the CAR position
  133. * of a list is stored (in code only) as a pointer to a pair with a
  134. * tag of 1. This is called a "gloc".
  135. */
  136. #define SCM_GLOC_SYM(x) (SCM_CAR (SCM_PACK (SCM_UNPACK (x) - 1L)))
  137. #define SCM_GLOC_VAL(x) (SCM_CDR (SCM_PACK (SCM_UNPACK (x) - 1L)))
  138. #define SCM_GLOC_VAL_LOC(x) (SCM_CDRLOC (SCM_PACK (SCM_UNPACK (x) - 1L)))
  139. extern SCM * scm_ilookup (SCM iloc, SCM env);
  140. extern SCM * scm_lookupcar (SCM vloc, SCM genv, int check);
  141. extern SCM scm_unmemocar (SCM form, SCM env);
  142. extern SCM scm_unmemocopy (SCM form, SCM env);
  143. extern SCM scm_eval_car (SCM pair, SCM env);
  144. extern SCM scm_eval_body (SCM code, SCM env);
  145. extern SCM scm_eval_args (SCM i, SCM env, SCM proc);
  146. extern SCM scm_deval_args (SCM l, SCM env, SCM proc, SCM *lloc);
  147. extern SCM scm_m_quote (SCM xorig, SCM env);
  148. extern SCM scm_m_begin (SCM xorig, SCM env);
  149. extern SCM scm_m_if (SCM xorig, SCM env);
  150. extern SCM scm_m_set_x (SCM xorig, SCM env);
  151. extern SCM scm_m_vref (SCM xorig, SCM env);
  152. extern SCM scm_m_vset (SCM xorig, SCM env);
  153. extern SCM scm_m_and (SCM xorig, SCM env);
  154. extern SCM scm_m_or (SCM xorig, SCM env);
  155. extern SCM scm_m_case (SCM xorig, SCM env);
  156. extern SCM scm_m_cond (SCM xorig, SCM env);
  157. extern SCM scm_m_lambda (SCM xorig, SCM env);
  158. extern SCM scm_m_letstar (SCM xorig, SCM env);
  159. extern SCM scm_m_do (SCM xorig, SCM env);
  160. extern SCM scm_m_quasiquote (SCM xorig, SCM env);
  161. extern SCM scm_m_delay (SCM xorig, SCM env);
  162. extern SCM scm_m_define (SCM x, SCM env);
  163. extern SCM scm_m_letrec (SCM xorig, SCM env);
  164. extern SCM scm_m_let (SCM xorig, SCM env);
  165. extern SCM scm_m_apply (SCM xorig, SCM env);
  166. extern SCM scm_m_cont (SCM xorig, SCM env);
  167. extern SCM scm_m_nil_cond (SCM xorig, SCM env);
  168. extern SCM scm_m_nil_ify (SCM xorig, SCM env);
  169. extern SCM scm_m_t_ify (SCM xorig, SCM env);
  170. extern SCM scm_m_0_cond (SCM xorig, SCM env);
  171. extern SCM scm_m_0_ify (SCM xorig, SCM env);
  172. extern SCM scm_m_1_ify (SCM xorig, SCM env);
  173. extern SCM scm_m_atfop (SCM xorig, SCM env);
  174. extern SCM scm_m_atbind (SCM xorig, SCM env);
  175. extern int scm_badargsp (SCM formals, SCM args);
  176. extern SCM scm_ceval (SCM x, SCM env);
  177. extern SCM scm_deval (SCM x, SCM env);
  178. extern SCM scm_nconc2last (SCM lst);
  179. extern SCM scm_apply (SCM proc, SCM arg1, SCM args);
  180. extern SCM scm_dapply (SCM proc, SCM arg1, SCM args);
  181. extern SCM scm_m_expand_body (SCM xorig, SCM env);
  182. extern SCM scm_macroexp (SCM x, SCM env);
  183. extern SCM scm_map (SCM proc, SCM arg1, SCM args);
  184. extern SCM scm_for_each (SCM proc, SCM arg1, SCM args);
  185. extern SCM scm_closure (SCM code, SCM env);
  186. extern SCM scm_makprom (SCM code);
  187. extern SCM scm_force (SCM x);
  188. extern SCM scm_promise_p (SCM x);
  189. extern SCM scm_cons_source (SCM xorig, SCM x, SCM y);
  190. extern SCM scm_copy_tree (SCM obj);
  191. extern SCM scm_eval_3 (SCM obj, int copyp, SCM env);
  192. extern SCM scm_eval2 (SCM obj, SCM env_thunk);
  193. extern SCM scm_eval (SCM obj);
  194. extern SCM scm_eval_x (SCM obj);
  195. extern void scm_init_eval (void);
  196. #endif /* EVALH */
  197. /*
  198. Local Variables:
  199. c-file-style: "gnu"
  200. End:
  201. */