1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
/***********************************************************************/
/* */
/* Coq Compiler */
/* */
/* Benjamin Gregoire, projets Logical and Cristal */
/* INRIA Rocquencourt */
/* */
/* */
/***********************************************************************/
#ifndef _COQ_FIX_CODE_
#define _COQ_FIX_CODE_
#include <caml/mlvalues.h>
void * coq_stat_alloc (asize_t sz);
#ifdef THREADED_CODE
void coq_init_thread_code(void ** instr_table, void * instr_base);
#endif /* THREADED_CODE */
extern code_t accumulate;
int coq_is_instruction(opcode_t, opcode_t);
value coq_tcode_of_code(value code);
value coq_accumulate(value);
value coq_makeaccu (value i);
value coq_pushpop (value i);
value coq_accucond (value i);
#endif /* _COQ_FIX_CODE_ */
|