eval.h 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. /* classes: h_files */
  2. #ifndef SCM_EVAL_H
  3. #define SCM_EVAL_H
  4. /* Copyright (C) 1995,1996,1998,1999,2000,2001, 2002 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. #include "libguile/struct.h"
  46. /* {Options}
  47. */
  48. extern scm_t_option scm_eval_opts[];
  49. #define SCM_EVAL_STACK scm_eval_opts[0].val
  50. #define SCM_N_EVAL_OPTIONS 1
  51. extern long scm_eval_stack;
  52. extern scm_t_option scm_evaluator_trap_table[];
  53. extern SCM scm_eval_options_interface (SCM setting);
  54. #define SCM_TRAPS_P scm_evaluator_trap_table[0].val
  55. #define SCM_ENTER_FRAME_P scm_evaluator_trap_table[1].val
  56. #define SCM_APPLY_FRAME_P scm_evaluator_trap_table[2].val
  57. #define SCM_EXIT_FRAME_P scm_evaluator_trap_table[3].val
  58. #define SCM_ENTER_FRAME_HDLR (SCM)(scm_evaluator_trap_table[4].val)
  59. #define SCM_APPLY_FRAME_HDLR (SCM)(scm_evaluator_trap_table[5].val)
  60. #define SCM_EXIT_FRAME_HDLR (SCM)(scm_evaluator_trap_table[6].val)
  61. #define SCM_N_EVALUATOR_TRAPS 7
  62. /* {Ilocs}
  63. *
  64. * Ilocs are relative pointers into local environment structures.
  65. *
  66. */
  67. #define SCM_ILOCP(n) (SCM_ITAG8(n)==scm_tc8_iloc)
  68. #define SCM_ILOC00 SCM_MAKE_ITAG8(0L, scm_tc8_iloc)
  69. #define SCM_IDINC (0x00100000L)
  70. #define SCM_ICDR (0x00080000L)
  71. #define SCM_IFRINC (0x00000100L)
  72. #define SCM_IDSTMSK (-SCM_IDINC)
  73. #define SCM_IFRAME(n) ((long)((SCM_ICDR-SCM_IFRINC)>>8) \
  74. & (SCM_UNPACK (n) >> 8))
  75. #define SCM_IDIST(n) (SCM_UNPACK (n) >> 20)
  76. #define SCM_ICDRP(n) (SCM_ICDR & SCM_UNPACK (n))
  77. /* {Evaluator}
  78. *
  79. * For an explanation of symbols containing "EVAL", see beginning of eval.c.
  80. */
  81. #define SCM_EVALIM2(x) \
  82. ((SCM_EQ_P ((x), SCM_EOL) \
  83. ? scm_misc_error (NULL, scm_s_expression, SCM_EOL), 0 \
  84. : 0), \
  85. (x))
  86. #ifdef MEMOIZE_LOCALS
  87. #define SCM_EVALIM(x, env) (SCM_ILOCP (x) \
  88. ? *scm_ilookup ((x), env) \
  89. : SCM_EVALIM2(x))
  90. #else
  91. #define SCM_EVALIM(x, env) SCM_EVALIM2(x)
  92. #endif
  93. #ifdef DEBUG_EXTENSIONS
  94. #define SCM_XEVAL(x, env) (SCM_IMP (x) \
  95. ? SCM_EVALIM2(x) \
  96. : (*scm_ceval_ptr) ((x), (env)))
  97. #define SCM_XEVALCAR(x, env) (SCM_NCELLP (SCM_CAR (x)) \
  98. ? (SCM_IMP (SCM_CAR (x)) \
  99. ? SCM_EVALIM (SCM_CAR (x), env) \
  100. : SCM_GLOC_VAL (SCM_CAR (x))) \
  101. : (SCM_SYMBOLP (SCM_CAR (x)) \
  102. ? *scm_lookupcar (x, env, 1) \
  103. : (*scm_ceval_ptr) (SCM_CAR (x), env)))
  104. #else
  105. #define SCM_XEVAL(x, env) (SCM_IMP (x) \
  106. ? SCM_EVALIM2(x) \
  107. : scm_ceval ((x), (env)))
  108. #define SCM_XEVALCAR(x, env) EVALCAR (x, env)
  109. #endif /* DEBUG_EXTENSIONS */
  110. #define SCM_EXTEND_ENV scm_acons
  111. /*fixme* This should probably be removed throught the code. */
  112. #define SCM_TOP_LEVEL_LOOKUP_CLOSURE (scm_current_module_lookup_closure())
  113. #if SCM_DEBUG_DEPRECATED == 0
  114. extern SCM scm_top_level_lookup_closure_var;
  115. extern SCM scm_system_transformer;
  116. #endif
  117. extern const char scm_s_expression[];
  118. extern const char scm_s_test[];
  119. extern const char scm_s_body[];
  120. extern const char scm_s_bindings[];
  121. extern const char scm_s_variable[];
  122. extern const char scm_s_clauses[];
  123. extern const char scm_s_formals[];
  124. extern const char scm_s_set_x[];
  125. extern SCM scm_sym_and;
  126. extern SCM scm_sym_begin;
  127. extern SCM scm_sym_case;
  128. extern SCM scm_sym_cond;
  129. extern SCM scm_sym_define;
  130. extern SCM scm_sym_do;
  131. extern SCM scm_sym_if;
  132. extern SCM scm_sym_lambda;
  133. extern SCM scm_sym_let;
  134. extern SCM scm_sym_letstar;
  135. extern SCM scm_sym_letrec;
  136. extern SCM scm_sym_quote;
  137. extern SCM scm_sym_quasiquote;
  138. extern SCM scm_sym_unquote;
  139. extern SCM scm_sym_uq_splicing;
  140. extern SCM scm_sym_dot;
  141. extern SCM scm_sym_atapply;
  142. extern SCM scm_sym_atcall_cc;
  143. extern SCM scm_sym_at_call_with_values;
  144. extern SCM scm_sym_delay;
  145. extern SCM scm_sym_arrow;
  146. extern SCM scm_sym_else;
  147. extern SCM scm_sym_apply;
  148. extern SCM scm_sym_set_x;
  149. extern SCM scm_sym_args;
  150. extern SCM scm_f_apply;
  151. /* A resolved global variable reference in the CAR position
  152. * of a list is stored (in code only) as a pointer to a variable with a
  153. * tag of 1. This is called a "gloc".
  154. */
  155. #define SCM_GLOC_VAR(x) (SCM_PACK(SCM_UNPACK(x)-scm_tc3_cons_gloc))
  156. #define SCM_GLOC_VAL(x) (SCM_VARIABLE_REF (SCM_GLOC_VAR (x)))
  157. #define SCM_GLOC_SET_VAL(x, y) (SCM_VARIABLE_SET (SCM_GLOC_VAR (x), y))
  158. #define SCM_GLOC_VAL_LOC(x) (SCM_VARIABLE_LOC (SCM_GLOC_VAR (x)))
  159. extern SCM * scm_ilookup (SCM iloc, SCM env);
  160. extern SCM * scm_lookupcar (SCM vloc, SCM genv, int check);
  161. extern SCM scm_unmemocar (SCM form, SCM env);
  162. extern SCM scm_unmemocopy (SCM form, SCM env);
  163. extern SCM scm_eval_car (SCM pair, SCM env);
  164. extern SCM scm_eval_body (SCM code, SCM env);
  165. extern SCM scm_eval_args (SCM i, SCM env, SCM proc);
  166. extern SCM scm_deval_args (SCM l, SCM env, SCM proc, SCM *lloc);
  167. extern SCM scm_m_quote (SCM xorig, SCM env);
  168. extern SCM scm_m_begin (SCM xorig, SCM env);
  169. extern SCM scm_m_if (SCM xorig, SCM env);
  170. extern SCM scm_m_set_x (SCM xorig, SCM env);
  171. extern SCM scm_m_vref (SCM xorig, SCM env);
  172. extern SCM scm_m_vset (SCM xorig, SCM env);
  173. extern SCM scm_m_and (SCM xorig, SCM env);
  174. extern SCM scm_m_or (SCM xorig, SCM env);
  175. extern SCM scm_m_case (SCM xorig, SCM env);
  176. extern SCM scm_m_cond (SCM xorig, SCM env);
  177. extern SCM scm_m_lambda (SCM xorig, SCM env);
  178. extern SCM scm_m_letstar (SCM xorig, SCM env);
  179. extern SCM scm_m_do (SCM xorig, SCM env);
  180. extern SCM scm_m_quasiquote (SCM xorig, SCM env);
  181. extern SCM scm_m_delay (SCM xorig, SCM env);
  182. extern SCM scm_m_define (SCM x, SCM env);
  183. extern SCM scm_m_letrec (SCM xorig, SCM env);
  184. extern SCM scm_m_let (SCM xorig, SCM env);
  185. extern SCM scm_m_apply (SCM xorig, SCM env);
  186. extern SCM scm_m_cont (SCM xorig, SCM env);
  187. extern SCM scm_m_nil_cond (SCM xorig, SCM env);
  188. extern SCM scm_m_nil_ify (SCM xorig, SCM env);
  189. extern SCM scm_m_t_ify (SCM xorig, SCM env);
  190. extern SCM scm_m_0_cond (SCM xorig, SCM env);
  191. extern SCM scm_m_0_ify (SCM xorig, SCM env);
  192. extern SCM scm_m_1_ify (SCM xorig, SCM env);
  193. extern SCM scm_m_atfop (SCM xorig, SCM env);
  194. extern SCM scm_m_atbind (SCM xorig, SCM env);
  195. extern SCM scm_m_at_call_with_values (SCM xorig, SCM env);
  196. extern int scm_badargsp (SCM formals, SCM args);
  197. extern SCM scm_ceval (SCM x, SCM env);
  198. extern SCM scm_deval (SCM x, SCM env);
  199. extern SCM scm_call_0 (SCM proc);
  200. extern SCM scm_call_1 (SCM proc, SCM arg1);
  201. extern SCM scm_call_2 (SCM proc, SCM arg1, SCM arg2);
  202. extern SCM scm_call_3 (SCM proc, SCM arg1, SCM arg2, SCM arg3);
  203. extern SCM scm_call_4 (SCM proc, SCM arg1, SCM arg2, SCM arg3, SCM arg4);
  204. extern SCM scm_apply_0 (SCM proc, SCM args);
  205. extern SCM scm_apply_1 (SCM proc, SCM arg1, SCM args);
  206. extern SCM scm_apply_2 (SCM proc, SCM arg1, SCM arg2, SCM args);
  207. extern SCM scm_apply_3 (SCM proc, SCM arg1, SCM arg2, SCM arg3, SCM args);
  208. extern SCM scm_nconc2last (SCM lst);
  209. extern SCM scm_apply (SCM proc, SCM arg1, SCM args);
  210. extern SCM scm_dapply (SCM proc, SCM arg1, SCM args);
  211. extern SCM scm_m_expand_body (SCM xorig, SCM env);
  212. extern SCM scm_macroexp (SCM x, SCM env);
  213. extern SCM scm_map (SCM proc, SCM arg1, SCM args);
  214. extern SCM scm_for_each (SCM proc, SCM arg1, SCM args);
  215. extern SCM scm_closure (SCM code, SCM env);
  216. extern SCM scm_makprom (SCM code);
  217. extern SCM scm_force (SCM x);
  218. extern SCM scm_promise_p (SCM x);
  219. extern SCM scm_cons_source (SCM xorig, SCM x, SCM y);
  220. extern SCM scm_copy_tree (SCM obj);
  221. #if SCM_DEBUG_DEPRECATED == 0
  222. extern SCM scm_eval_3 (SCM obj, int copyp, SCM env);
  223. extern SCM scm_eval2 (SCM obj, SCM env_thunk);
  224. #endif
  225. extern SCM scm_i_eval_x (SCM exp, SCM env);
  226. extern SCM scm_i_eval (SCM exp, SCM env);
  227. extern SCM scm_primitive_eval (SCM exp);
  228. extern SCM scm_primitive_eval_x (SCM exp);
  229. extern SCM scm_eval (SCM exp, SCM module);
  230. extern SCM scm_eval_x (SCM exp, SCM module);
  231. extern void scm_init_eval (void);
  232. #endif /* SCM_EVAL_H */
  233. /*
  234. Local Variables:
  235. c-file-style: "gnu"
  236. End:
  237. */