Skip to content

Commit 616f133

Browse files
committed
Update signatures
1 parent d77c5e2 commit 616f133

File tree

1 file changed

+28
-2
lines changed

1 file changed

+28
-2
lines changed

truffle/src/com.oracle.truffle.api.bytecode/snapshot.sigtest

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,26 @@ meth public static com.oracle.truffle.api.bytecode.BytecodeEncodingException cre
7171
supr java.lang.RuntimeException
7272
hfds serialVersionUID
7373

74+
CLSS public final com.oracle.truffle.api.bytecode.BytecodeFrame
75+
meth public com.oracle.truffle.api.bytecode.BytecodeFrame copy()
76+
meth public com.oracle.truffle.api.bytecode.BytecodeLocation getLocation()
77+
meth public com.oracle.truffle.api.bytecode.BytecodeNode getBytecodeNode()
78+
meth public int getArgumentCount()
79+
meth public int getBytecodeIndex()
80+
meth public int getLocalCount()
81+
meth public java.lang.Object getArgument(int)
82+
meth public java.lang.Object getFrameDescriptorInfo()
83+
meth public java.lang.Object getLocalValue(int)
84+
meth public java.lang.Object[] getLocalNames()
85+
meth public static com.oracle.truffle.api.bytecode.BytecodeFrame get(com.oracle.truffle.api.TruffleStackTraceElement)
86+
meth public static com.oracle.truffle.api.bytecode.BytecodeFrame get(com.oracle.truffle.api.frame.FrameInstance,com.oracle.truffle.api.frame.FrameInstance$FrameAccess)
87+
meth public static com.oracle.truffle.api.bytecode.BytecodeFrame getNonVirtual(com.oracle.truffle.api.TruffleStackTraceElement)
88+
meth public static com.oracle.truffle.api.bytecode.BytecodeFrame getNonVirtual(com.oracle.truffle.api.frame.FrameInstance)
89+
meth public void setArgument(int,java.lang.Object)
90+
meth public void setLocalValue(int,java.lang.Object)
91+
supr java.lang.Object
92+
hfds bytecode,bytecodeIndex,frame
93+
7494
CLSS public abstract com.oracle.truffle.api.bytecode.BytecodeLabel
7595
cons public init(java.lang.Object)
7696
supr java.lang.Object
@@ -106,6 +126,7 @@ cons protected init(java.lang.Object)
106126
meth protected abstract boolean isLocalClearedInternal(com.oracle.truffle.api.frame.Frame,int,int)
107127
meth protected abstract boolean validateBytecodeIndex(int)
108128
meth protected abstract com.oracle.truffle.api.bytecode.Instruction findInstruction(int)
129+
meth protected abstract com.oracle.truffle.api.frame.Frame resolveFrameImpl(com.oracle.truffle.api.frame.FrameInstance,com.oracle.truffle.api.frame.FrameInstance$FrameAccess)
109130
meth protected abstract int findBytecodeIndex(com.oracle.truffle.api.frame.Frame,com.oracle.truffle.api.nodes.Node)
110131
meth protected abstract int findBytecodeIndex(com.oracle.truffle.api.frame.FrameInstance)
111132
meth protected abstract int translateBytecodeIndex(com.oracle.truffle.api.bytecode.BytecodeNode,int)
@@ -116,6 +137,8 @@ meth protected abstract void clearLocalValueInternal(com.oracle.truffle.api.fram
116137
meth protected abstract void setLocalValueInternal(com.oracle.truffle.api.frame.Frame,int,int,java.lang.Object)
117138
meth protected boolean getLocalValueInternalBoolean(com.oracle.truffle.api.frame.Frame,int,int) throws com.oracle.truffle.api.nodes.UnexpectedResultException
118139
meth protected byte getLocalValueInternalByte(com.oracle.truffle.api.frame.Frame,int,int) throws com.oracle.truffle.api.nodes.UnexpectedResultException
140+
meth protected com.oracle.truffle.api.frame.Frame resolveFrameImpl(com.oracle.truffle.api.TruffleStackTraceElement)
141+
meth protected com.oracle.truffle.api.frame.Frame resolveNonVirtualFrameImpl(com.oracle.truffle.api.TruffleStackTraceElement)
119142
meth protected double getLocalValueInternalDouble(com.oracle.truffle.api.frame.Frame,int,int) throws com.oracle.truffle.api.nodes.UnexpectedResultException
120143
meth protected final com.oracle.truffle.api.bytecode.BytecodeLocation findLocation(int)
121144
meth protected final static java.lang.Object createDefaultStackTraceElement(com.oracle.truffle.api.TruffleStackTraceElement)
@@ -143,6 +166,8 @@ meth public abstract java.util.List<com.oracle.truffle.api.bytecode.LocalVariabl
143166
meth public abstract java.util.List<com.oracle.truffle.api.bytecode.SourceInformation> getSourceInformation()
144167
meth public abstract void setLocalValue(int,com.oracle.truffle.api.frame.Frame,int,java.lang.Object)
145168
meth public abstract void setUncachedThreshold(int)
169+
meth public final com.oracle.truffle.api.bytecode.BytecodeFrame createCopiedFrame(int,com.oracle.truffle.api.frame.Frame)
170+
meth public final com.oracle.truffle.api.bytecode.BytecodeFrame createMaterializedFrame(int,com.oracle.truffle.api.frame.MaterializedFrame)
146171
meth public final com.oracle.truffle.api.bytecode.BytecodeLocation getBytecodeLocation(com.oracle.truffle.api.frame.Frame,com.oracle.truffle.api.nodes.Node)
147172
meth public final com.oracle.truffle.api.bytecode.BytecodeLocation getBytecodeLocation(com.oracle.truffle.api.frame.FrameInstance)
148173
meth public final com.oracle.truffle.api.bytecode.BytecodeLocation getBytecodeLocation(int)
@@ -332,6 +357,7 @@ CLSS public abstract interface !annotation com.oracle.truffle.api.bytecode.Gener
332357
intf java.lang.annotation.Annotation
333358
meth public abstract !hasdefault boolean additionalAssertions()
334359
meth public abstract !hasdefault boolean allowUnsafe()
360+
meth public abstract !hasdefault boolean captureFramesForTrace()
335361
meth public abstract !hasdefault boolean enableBlockScoping()
336362
meth public abstract !hasdefault boolean enableBytecodeDebugListener()
337363
meth public abstract !hasdefault boolean enableInstructionTracing()
@@ -758,7 +784,7 @@ meth public void printHistogram(java.io.PrintStream)
758784
meth public void reset()
759785
supr java.lang.Object
760786
hfds cache,counters,descriptor,filterClause,groupClauses,rootCounters
761-
hcls Counters,LRUCache
787+
hcls Counters,LastTraceCache
762788

763789
CLSS public final static com.oracle.truffle.api.bytecode.debug.HistogramInstructionTracer$Builder
764790
outer com.oracle.truffle.api.bytecode.debug.HistogramInstructionTracer
@@ -793,7 +819,7 @@ meth public void onInstructionEnter(com.oracle.truffle.api.bytecode.InstructionT
793819
meth public void reset()
794820
supr java.lang.Object
795821
hfds cache,executedInstructions,filter,out
796-
hcls LRUCache
822+
hcls LastTraceCache
797823

798824
CLSS public final static com.oracle.truffle.api.bytecode.debug.PrintInstructionTracer$Builder
799825
outer com.oracle.truffle.api.bytecode.debug.PrintInstructionTracer

0 commit comments

Comments
 (0)