Skip to content

Commit b8955eb

Browse files
committed
slightly increase our PIC sizes for attr access and call inline
1 parent 54b15eb commit b8955eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/PythonOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ private PythonOptions() {
100100
public static final OptionKey<Boolean> IntrinsifyBuiltinCalls = new OptionKey<>(true);
101101

102102
@Option(category = OptionCategory.EXPERT, help = "") //
103-
public static final OptionKey<Integer> AttributeAccessInlineCacheMaxDepth = new OptionKey<>(3);
103+
public static final OptionKey<Integer> AttributeAccessInlineCacheMaxDepth = new OptionKey<>(5);
104104

105105
@Option(category = OptionCategory.EXPERT, help = "") //
106-
public static final OptionKey<Integer> CallSiteInlineCacheMaxDepth = new OptionKey<>(3);
106+
public static final OptionKey<Integer> CallSiteInlineCacheMaxDepth = new OptionKey<>(4);
107107

108108
@Option(category = OptionCategory.EXPERT, help = "") //
109109
public static final OptionKey<Integer> VariableArgumentReadUnrollingLimit = new OptionKey<>(5);

0 commit comments

Comments
 (0)