summaryrefslogtreecommitdiff
path: root/src/runtime/c/pgf
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2013-06-26 09:08:47 +0000
committerkr.angelov <kr.angelov@gmail.com>2013-06-26 09:08:47 +0000
commitcf0bc127afbc01320e15ddcc789809750909a4f9 (patch)
tree89d4b38823e99cfe20d21d50c09c4f7b90479e54 /src/runtime/c/pgf
parenta2af8e216fc14e59f636521417ac6ed941f58154 (diff)
forgot to add jit.h
Diffstat (limited to 'src/runtime/c/pgf')
-rw-r--r--src/runtime/c/pgf/jit.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/runtime/c/pgf/jit.h b/src/runtime/c/pgf/jit.h
new file mode 100644
index 000000000..eb9d7005e
--- /dev/null
+++ b/src/runtime/c/pgf/jit.h
@@ -0,0 +1,16 @@
+#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