summaryrefslogtreecommitdiff
path: root/yjit_core.h
diff options
context:
space:
mode:
authorMaxime Chevalier-Boisvert <maxime.chevalierboisvert@shopify.com>2021-04-09 11:44:35 -0400
committerAlan Wu <XrXr@users.noreply.github.com>2021-10-20 18:19:33 -0400
commit6164274c76d31bc447a92c59c8d277670a93f229 (patch)
tree187c238cfd80a5a73b039b02821503f294ea70e4 /yjit_core.h
parent0805cba73572a5150975a0dfdc4461ae0872e90c (diff)
Re-enable local type tracking, until first call
Diffstat (limited to 'yjit_core.h')
-rw-r--r--yjit_core.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/yjit_core.h b/yjit_core.h
index ab849b9414..2297caebcd 100644
--- a/yjit_core.h
+++ b/yjit_core.h
@@ -240,6 +240,7 @@ x86opnd_t ctx_stack_opnd(ctx_t* ctx, int32_t idx);
val_type_t ctx_get_opnd_type(const ctx_t* ctx, insn_opnd_t opnd);
void ctx_set_opnd_type(ctx_t* ctx, insn_opnd_t opnd, val_type_t type);
void ctx_set_local_type(ctx_t* ctx, size_t idx, val_type_t type);
+void ctx_clear_local_types(ctx_t* ctx);
int ctx_diff(const ctx_t* src, const ctx_t* dst);
block_t* find_block_version(blockid_t blockid, const ctx_t* ctx);