public static class BlockScopeNode.FrameBlockScopeNode extends BlockScopeNode implements FrameDescriptorProvider
BlockScopeNode.FrameBlockScopeNode| Modifier and Type | Field and Description |
|---|---|
protected com.oracle.truffle.api.frame.FrameDescriptor |
frameDescriptor |
protected com.oracle.truffle.api.frame.FrameSlot |
parentSlot |
blockINTERMEDIATE_VALUE| Modifier | Constructor and Description |
|---|---|
protected |
FrameBlockScopeNode(JavaScriptNode block,
com.oracle.truffle.api.frame.FrameDescriptor frameDescriptor,
com.oracle.truffle.api.frame.FrameSlot parentSlot) |
| Modifier and Type | Method and Description |
|---|---|
com.oracle.truffle.api.frame.VirtualFrame |
appendScopeFrame(com.oracle.truffle.api.frame.VirtualFrame frame) |
protected JavaScriptNode |
copyUninitialized(Set<Class<? extends com.oracle.truffle.api.instrumentation.Tag>> materializedTags) |
Object |
execute(com.oracle.truffle.api.frame.VirtualFrame frame)
Executes this node using the specified context and frame and returns the result value.
|
void |
executeVoid(com.oracle.truffle.api.frame.VirtualFrame frame)
Like
JavaScriptNode.execute(VirtualFrame) except that it throws away the result. |
void |
exitScope(com.oracle.truffle.api.frame.VirtualFrame frame) |
com.oracle.truffle.api.frame.FrameDescriptor |
getFrameDescriptor() |
com.oracle.truffle.api.instrumentation.InstrumentableNode |
materializeInstrumentableNodes(Set<Class<? extends com.oracle.truffle.api.instrumentation.Tag>> materializedTags) |
Object |
resume(com.oracle.truffle.api.frame.VirtualFrame frame) |
create, executeRepeating, getBlock, isResultAlwaysOfTypeaddCallTag, addExpressionTag, addRootBodyTag, addStatementTag, cloneUninitialized, cloneUninitialized, copy, createWrapper, executeBoolean, executeDouble, executeInt, executeLong, executeSafeInteger, executeString, expressionToString, findBlockScopeNode, getSourceSection, hasSourceSection, hasTag, isInstrumentable, onReplace, removeSourceSection, setSourceSection, setSourceSection, toString, transferSourceSection, transferSourceSectionAddExpressionTag, transferSourceSectionAndTagsaccept, adoptChildren, atomic, atomic, deepCopy, getChildren, getCost, getDebugProperties, getDescription, getEncapsulatingSourceSection, getLock, getParent, getRootNode, insert, insert, isAdoptable, isSafelyReplaceableBy, lookupContextReference, lookupLanguageReference, notifyInserted, replace, replace, reportPolymorphicSpecializeclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitgetState, getStateAndReset, getStateAsInt, getStateAsIntAndReset, parent, resetState, setStateprotected final com.oracle.truffle.api.frame.FrameDescriptor frameDescriptor
protected final com.oracle.truffle.api.frame.FrameSlot parentSlot
protected FrameBlockScopeNode(JavaScriptNode block, com.oracle.truffle.api.frame.FrameDescriptor frameDescriptor, com.oracle.truffle.api.frame.FrameSlot parentSlot)
public com.oracle.truffle.api.instrumentation.InstrumentableNode materializeInstrumentableNodes(Set<Class<? extends com.oracle.truffle.api.instrumentation.Tag>> materializedTags)
materializeInstrumentableNodes in interface com.oracle.truffle.api.instrumentation.InstrumentableNodepublic com.oracle.truffle.api.frame.VirtualFrame appendScopeFrame(com.oracle.truffle.api.frame.VirtualFrame frame)
appendScopeFrame in class BlockScopeNodepublic void exitScope(com.oracle.truffle.api.frame.VirtualFrame frame)
exitScope in class BlockScopeNodepublic Object execute(com.oracle.truffle.api.frame.VirtualFrame frame)
JavaScriptNodeexecute in class BlockScopeNodeframe - the frame of the currently executing guest language methodpublic void executeVoid(com.oracle.truffle.api.frame.VirtualFrame frame)
JavaScriptNodeJavaScriptNode.execute(VirtualFrame) except that it throws away the result. A node can
override this method if it has a better way to execute without producing a value.executeVoid in class BlockScopeNodeframe - the frame of the currently executing guest language methodpublic com.oracle.truffle.api.frame.FrameDescriptor getFrameDescriptor()
getFrameDescriptor in interface FrameDescriptorProviderpublic Object resume(com.oracle.truffle.api.frame.VirtualFrame frame)
resume in interface ResumableNodeprotected JavaScriptNode copyUninitialized(Set<Class<? extends com.oracle.truffle.api.instrumentation.Tag>> materializedTags)
copyUninitialized in class JavaScriptNode