-
-
Save niner/19c93f7b96ae26d8b0031e7986d10e76 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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