File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/lib Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change 53
53
import com .oracle .graal .python .nodes .object .GetClassNode ;
54
54
import com .oracle .graal .python .runtime .exception .PException ;
55
55
import com .oracle .graal .python .runtime .object .PythonObjectFactory ;
56
- import com .oracle .truffle .api .HostCompilerDirectives .BytecodeInterpreterSwitch ;
57
56
import com .oracle .truffle .api .dsl .Cached ;
58
57
import com .oracle .truffle .api .dsl .GenerateUncached ;
59
58
import com .oracle .truffle .api .dsl .ImportStatic ;
67
66
@ GenerateUncached
68
67
@ ImportStatic (SpecialMethodSlot .class )
69
68
public abstract class PyObjectGetIter extends Node {
70
- @ BytecodeInterpreterSwitch
71
69
public abstract Object execute (Frame frame , Object receiver );
72
70
73
71
@ Specialization
Original file line number Diff line number Diff line change 60
60
import com .oracle .graal .python .nodes .util .CannotCastException ;
61
61
import com .oracle .graal .python .nodes .util .CastToJavaBooleanNode ;
62
62
import com .oracle .graal .python .nodes .util .CastToJavaIntLossyNode ;
63
- import com .oracle .truffle .api .HostCompilerDirectives .BytecodeInterpreterSwitch ;
64
63
import com .oracle .truffle .api .dsl .Cached ;
65
64
import com .oracle .truffle .api .dsl .Cached .Shared ;
66
65
import com .oracle .truffle .api .dsl .GenerateUncached ;
80
79
@ GenerateUncached
81
80
@ ImportStatic (SpecialMethodSlot .class )
82
81
public abstract class PyObjectIsTrueNode extends PNodeWithContext {
83
- @ BytecodeInterpreterSwitch
84
82
public abstract boolean execute (Frame frame , Object object );
85
83
86
84
protected abstract Object executeObject (Frame frame , Object object );
You can’t perform that action at this time.
0 commit comments