Skip to content

Instantly share code, notes, and snippets.

@niner
Created September 16, 2019 19:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niner/19c93f7b96ae26d8b0031e7986d10e76 to your computer and use it in GitHub Desktop.
Save niner/19c93f7b96ae26d8b0031e7986d10e76 to your computer and use it in GitHub Desktop.
diff --git a/src/spesh/plugin.c b/src/spesh/plugin.c
index 1e34816fe..accd0435b 100644
--- a/src/spesh/plugin.c
+++ b/src/spesh/plugin.c
@@ -123,9 +123,15 @@ static MVMObject * evaluate_guards(MVMThreadContext *tc, MVMSpeshPluginGuardSet
/* Tries to resolve a plugin by looking at the guards for the position. */
static MVMObject * resolve_using_guards(MVMThreadContext *tc, MVMuint32 cur_position,
MVMCallsite *callsite, MVMuint16 *guard_offset, MVMStaticFrame *sf) {
- MVMSpeshPluginState *ps = get_plugin_state(tc, sf);
- MVMSpeshPluginGuardSet *gs = guard_set_for_position(tc, cur_position, ps);
- return gs ? evaluate_guards(tc, gs, callsite, guard_offset) : NULL;
+ MVMStaticFrameSpesh temp_root = {{{0}, STABLE(tc->instance->StaticFrameSpesh)}, {0}};
+ MVMStaticFrameSpesh *temp_root_ptr = &temp_root;
+ MVMObject *result;
+ MVMROOT(tc, temp_root, {
+ MVMSpeshPluginState *ps = temp_root.body.plugin_state = get_plugin_state(tc, sf);
+ MVMSpeshPluginGuardSet *gs = guard_set_for_position(tc, cur_position, ps);
+ result = gs ? evaluate_guards(tc, gs, callsite, guard_offset) : NULL;
+ });
+ return result;
}
/* Produces an updated guard set with the given resolution result. Returns
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment