Skip to content

Commit 012a050

Browse files
committed
enable boxing elimination
1 parent 57e0d30 commit 012a050

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/bytecode_dsl/PBytecodeDSLRootNode.java

+1
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@
217217
languageClass = PythonLanguage.class, //
218218
enableYield = true, //
219219
enableSerialization = true, //
220+
boxingEliminationTypes = {int.class, boolean.class}, //
220221
storeBciInFrame = true //
221222
)
222223
@TypeSystemReference(PythonTypes.class)

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/frame/MaterializeFrameNode.java

-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
import com.oracle.graal.python.runtime.PythonOptions;
5050
import com.oracle.graal.python.runtime.object.PythonObjectFactory;
5151
import com.oracle.graal.python.util.PythonUtils;
52-
import com.oracle.truffle.api.CompilerAsserts;
5352
import com.oracle.truffle.api.Truffle;
5453
import com.oracle.truffle.api.bytecode.BytecodeNode;
5554
import com.oracle.truffle.api.dsl.Bind;

0 commit comments

Comments
 (0)