mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-17 00:39:32 -06:00
17 lines
307 B
C
17 lines
307 B
C
#ifndef PGF_JIT_H_
|
|
#define PGF_JIT_H_
|
|
|
|
typedef struct PgfJitState PgfJitState;
|
|
|
|
PgfJitState*
|
|
pgf_jit_init(GuPool* tmp_pool, GuPool* pool);
|
|
|
|
void
|
|
pgf_jit_done(PgfJitState* state, PgfAbstr* abstr);
|
|
|
|
void
|
|
pgf_jit_predicate(PgfJitState* state,
|
|
PgfCIdMap* abscats, PgfAbsCat* abscat);
|
|
|
|
#endif
|