Skip to content

Commit 55f0659

Browse files
committed
Implemented rb_frame_method_and_id internal API.
This commit implements rb_frame_method_and_id internal API, that is needed by the rice gem. The corresponding changeset represents a first but hopefully significant step to get torch.rb working on Truffleruby.
1 parent 26f8683 commit 55f0659

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

src/main/c/cext/call.c

+4
Original file line numberDiff line numberDiff line change
@@ -214,3 +214,7 @@ VALUE rb_eval_cmd_kw(VALUE cmd, VALUE args, int kw_splat) {
214214
return RUBY_CEXT_INVOKE("rb_eval_string", cmd);
215215
}
216216
}
217+
218+
int rb_frame_method_id_and_class(ID *idp, VALUE *klassp) {
219+
return RUBY_CEXT_INVOKE("rb_frame_method_id_and_class", idp, klassp);
220+
}

src/main/java/org/truffleruby/cext/CExtNodes.java

+31
Original file line numberDiff line numberDiff line change
@@ -2071,4 +2071,35 @@ RubyArray zlibGetCRCTable() {
20712071
}
20722072
}
20732073

2074+
@CoreMethod(names = "rb_frame_method_and_id", onSingleton = true, required = 2)
2075+
public abstract static class FrameMethodAndId extends CoreMethodArrayArgumentsNode {
2076+
2077+
@Specialization
2078+
boolean frameMethodAndId(Object frameMethod, Object frameId) {
2079+
final Frame callingMethodFrame = findCallingMethodFrame();
2080+
frameMethod = RubyArguments.getMethod(callingMethodFrame);
2081+
frameId = System.identityHashCode(RubyArguments.tryGetSelf(callingMethodFrame));
2082+
return true;
2083+
}
2084+
2085+
@TruffleBoundary
2086+
private static Frame findCallingMethodFrame() {
2087+
return Truffle.getRuntime().iterateFrames(frameInstance -> {
2088+
final Frame frame = frameInstance.getFrame(FrameAccess.READ_ONLY);
2089+
2090+
final InternalMethod method = RubyArguments.tryGetMethod(frame);
2091+
2092+
if (method == null) {
2093+
return null;
2094+
} else if (method.getName().equals(/* Truffle::CExt. */ "rb_frame_method_and_id") ||
2095+
method.getName().equals(/* Truffle::Interop */ "execute_without_conversion")) {
2096+
// TODO CS 11-Mar-17 must have a more precise check to skip these methods
2097+
return null;
2098+
} else {
2099+
return frame;
2100+
}
2101+
});
2102+
}
2103+
}
2104+
20742105
}

0 commit comments

Comments
 (0)