forked from oracle/graal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GR-28523] Box out of cache range optimizations.
PullRequest: graal/8120
- Loading branch information
Showing
12 changed files
with
999 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Compiler Changelog | ||
|
||
This changelog summarizes newly introduced optimizations that may be relevant to other teams. | ||
|
||
## Version 21.1.0 | ||
* (GR-28523) Optimize Box nodes: Optimizes box operations by re-using boxed representations | ||
if the value of the boxed primitive is outside of the cache range of the Int/Long/Short/Char caches. | ||
Box node optimization is enabled per default. Disable it with `-Dgraal.ReuseOutOfCacheBoxedValues=false`. |
221 changes: 221 additions & 0 deletions
221
...g.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/OptimizedBoxNodeTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,221 @@ | ||
/* | ||
* Copyright (c) 2011, 2020, Oracle and/or its affiliates. All rights reserved. | ||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
* | ||
* This code is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. Oracle designates this | ||
* particular file as subject to the "Classpath" exception as provided | ||
* by Oracle in the LICENSE file that accompanied this code. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
package org.graalvm.compiler.core.test; | ||
|
||
import java.util.ArrayList; | ||
|
||
import org.graalvm.compiler.nodes.StructuredGraph; | ||
import org.graalvm.compiler.nodes.StructuredGraph.AllowAssumptions; | ||
import org.graalvm.compiler.nodes.extended.BoxNode; | ||
import org.graalvm.compiler.options.OptionValues; | ||
import org.graalvm.compiler.phases.common.BoxNodeOptimizationPhase; | ||
import org.graalvm.compiler.phases.util.GraphOrder; | ||
import org.junit.Assert; | ||
import org.junit.Test; | ||
|
||
import jdk.vm.ci.code.InstalledCode; | ||
import jdk.vm.ci.code.InvalidInstalledCodeException; | ||
|
||
public class OptimizedBoxNodeTest extends GraalCompilerTest { | ||
|
||
public static Object S; | ||
|
||
public static Integer boxStructural1(Object o) { | ||
// unbox | ||
int i = (Integer) o; | ||
// re-use unbox | ||
Object o1 = i; | ||
S = o1; | ||
// re-use unbox | ||
return i; | ||
} | ||
|
||
public static Integer boxStructural2(Object o) { | ||
// unbox here dominates box below | ||
int i = (Integer) o; | ||
S = o; | ||
// box again with optimized box | ||
return i; | ||
} | ||
|
||
public static Integer boxStructural3(int i) { | ||
Integer box1 = i; | ||
S = box1; | ||
// second box can be removed completely | ||
Integer box2 = i; | ||
return box2; | ||
} | ||
|
||
@Test | ||
public void testStructure() { | ||
parseOptimizeCheck("boxStructural1", 2, 0); | ||
parseOptimizeCheck("boxStructural2", 1, 0); | ||
parseOptimizeCheck("boxStructural3", 0, 1); | ||
} | ||
|
||
private void parseOptimizeCheck(String boxSnippet, int nrOptimizedAfter, int nrBoxAfter) { | ||
StructuredGraph g = parseEager(getResolvedJavaMethod(boxSnippet), AllowAssumptions.NO); | ||
createCanonicalizerPhase().apply(g, getDefaultHighTierContext()); | ||
new BoxNodeOptimizationPhase().apply(g, getDefaultHighTierContext()); | ||
Assert.assertTrue(GraphOrder.assertNonCyclicGraph(g)); | ||
Assert.assertEquals("expected number optimized box nodes", nrOptimizedAfter, g.getNodes().filter(BoxNode.OptimizedAllocatingBoxNode.class).count()); | ||
Assert.assertEquals("expected number of regular box nodes", nrBoxAfter + nrOptimizedAfter, g.getNodes().filter(BoxNode.class).count()); | ||
} | ||
|
||
public static Integer intBoxOptimized(Object o) { | ||
int i = (Integer) o; | ||
S = o; | ||
// box again, reuse if existing | ||
return i; | ||
} | ||
|
||
@Test | ||
public void testInteger() throws InvalidInstalledCodeException { | ||
testType("int", -1000, 1000, new BoxProducer() { | ||
|
||
@Override | ||
public Object produceBox(int i) { | ||
Integer o = i; | ||
return o; | ||
} | ||
}, -128, 127); | ||
} | ||
|
||
public static Long longBoxOptimized(Object o) { | ||
long i = (Long) o; | ||
S = o; | ||
// box again, reuse if existing | ||
return i; | ||
} | ||
|
||
@Test | ||
public void testLong() throws InvalidInstalledCodeException { | ||
testType("long", -1000, 1000, new BoxProducer() { | ||
|
||
@Override | ||
public Object produceBox(int i) { | ||
Long o = (long) i; | ||
return o; | ||
} | ||
}, -128, 127); | ||
} | ||
|
||
public static Short shortBoxOptimized(Object o) { | ||
short i = (Short) o; | ||
S = o; | ||
// box again, reuse if existing | ||
return i; | ||
} | ||
|
||
@Test | ||
public void testShort() throws InvalidInstalledCodeException { | ||
testType("short", -1000, 1000, new BoxProducer() { | ||
|
||
@Override | ||
public Object produceBox(int i) { | ||
Short o = (short) i; | ||
return o; | ||
} | ||
}, -128, 127); | ||
} | ||
|
||
public static Character charBoxOptimized(Object o) { | ||
char i = (char) o; | ||
S = o; | ||
// box again, reuse if existing | ||
return i; | ||
} | ||
|
||
@Test | ||
public void testChar() throws InvalidInstalledCodeException { | ||
testType("char", 0, 1000, new BoxProducer() { | ||
|
||
@Override | ||
public Object produceBox(int i) { | ||
Character o = (char) i; | ||
return o; | ||
} | ||
}, 0, 127); | ||
} | ||
|
||
@FunctionalInterface | ||
interface BoxProducer { | ||
Object produceBox(int i); | ||
} | ||
|
||
public void testType(String typePrefix, int lowBound, int highBound, BoxProducer producer, long cacheLow, long cacheHigh) throws InvalidInstalledCodeException { | ||
final int listLength = Math.abs(lowBound) + highBound; | ||
ArrayList<Object> integersInterpreter = new ArrayList<>(); | ||
for (int i = -listLength; i < listLength; i++) { | ||
Object boxed = producer.produceBox(i); | ||
// cache values in range, rebox on return | ||
integersInterpreter.add(boxed); | ||
} | ||
|
||
InstalledCode codeReuseExistingBox = getCode(getResolvedJavaMethod(typePrefix + "BoxOptimized"), | ||
new OptionValues(getInitialOptions(), BoxNodeOptimizationPhase.Options.ReuseOutOfCacheBoxedValues, true)); | ||
ArrayList<Object> integersReuse = new ArrayList<>(); | ||
for (int i = -listLength; i < listLength; i++) { | ||
Object boxed = integersInterpreter.get(i + listLength); | ||
// cache values in range, re-use if out of range | ||
integersReuse.add(codeReuseExistingBox.executeVarargs(boxed)); | ||
} | ||
|
||
resetCache(); | ||
|
||
ArrayList<Object> integersNoReuse = new ArrayList<>(); | ||
InstalledCode codeNoReuse = getCode(getResolvedJavaMethod(typePrefix + "BoxOptimized"), | ||
new OptionValues(getInitialOptions(), BoxNodeOptimizationPhase.Options.ReuseOutOfCacheBoxedValues, false)); | ||
for (int i = -listLength; i < listLength; i++) { | ||
Object boxed = integersInterpreter.get(i + listLength); | ||
// cache values in range, re-use if out of range | ||
integersNoReuse.add(codeNoReuse.executeVarargs(boxed)); | ||
} | ||
|
||
for (int i = 0; i < integersInterpreter.size(); i++) { | ||
Object interpreterObject = integersInterpreter.get(i); | ||
Object objectReuse = integersReuse.get(i); | ||
Object objectNoReuse = integersNoReuse.get(i); | ||
long originalVal; | ||
if (interpreterObject instanceof Character) { | ||
originalVal = ((Character) interpreterObject); | ||
} else { | ||
Number n = (Number) interpreterObject; | ||
originalVal = n.longValue(); | ||
} | ||
if (originalVal >= cacheLow && originalVal <= cacheHigh) { | ||
// in cache, all must be the same objects | ||
Assert.assertTrue("val=" + originalVal + " optimized version must remain cached object identities", interpreterObject == objectReuse); | ||
Assert.assertTrue("val=" + originalVal + " unoptimized version must remain cached object identities", interpreterObject == objectNoReuse); | ||
} else { | ||
Assert.assertTrue("val=" + originalVal + " out of cache, unoptimized version must not reuse the argument from the call and thus be different than the interpreter object", | ||
interpreterObject != objectNoReuse); | ||
Assert.assertTrue("val=" + originalVal + " out of cache, optimized version must re-use the argument from the call and thus be the same as the interpreter object", | ||
interpreterObject == objectReuse); | ||
} | ||
} | ||
|
||
} | ||
} |
116 changes: 116 additions & 0 deletions
116
...rc/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/TestAutoboxConf.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
/* | ||
* Copyright (c) 2012, 2020, Oracle and/or its affiliates. All rights reserved. | ||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
* | ||
* This code is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. Oracle designates this | ||
* particular file as subject to the "Classpath" exception as provided | ||
* by Oracle in the LICENSE file that accompanied this code. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
package org.graalvm.compiler.core.test; | ||
|
||
import java.lang.reflect.Field; | ||
import java.util.ArrayList; | ||
|
||
import org.graalvm.compiler.phases.common.BoxNodeOptimizationPhase; | ||
|
||
/** | ||
* Independent test program to test if the {@link BoxNodeOptimizationPhase} respects the caching | ||
* specified by {@link Integer#valueOf(int)} in a libgraal setting. | ||
*/ | ||
public class TestAutoboxConf { | ||
|
||
static Object S; | ||
|
||
public static Integer intBoxOptimized(Object o) { | ||
int i = (Integer) o; | ||
S = o; | ||
// box again, reuse if existing | ||
return i; | ||
} | ||
|
||
private static int getCacheHigh() { | ||
Class<?> cacheClass = Integer.class.getDeclaredClasses()[0]; | ||
try { | ||
Field f = cacheClass.getDeclaredField("cache"); | ||
f.setAccessible(true); | ||
Integer[] cache = (Integer[]) f.get(null); | ||
return cache[cache.length - 1]; | ||
} catch (NoSuchFieldException e) { | ||
e.printStackTrace(); | ||
} catch (SecurityException e) { | ||
e.printStackTrace(); | ||
} catch (IllegalArgumentException e) { | ||
e.printStackTrace(); | ||
} catch (IllegalAccessException e) { | ||
e.printStackTrace(); | ||
} | ||
return -1; | ||
} | ||
|
||
public static void main(String[] args) { | ||
final int cacheLow = -128; | ||
final int cacheHigh = getCacheHigh(); | ||
System.out.println("Working with cache=" + cacheHigh); | ||
final int listLength = 1000; | ||
ArrayList<Object> integersInterpreter = new ArrayList<>(); | ||
for (int i = -listLength; i < listLength; i++) { | ||
Object boxed = i; | ||
// cache values in range, rebox on return | ||
integersInterpreter.add(boxed); | ||
} | ||
|
||
// let it compile | ||
for (int i = 0; i < 10000; i++) { | ||
intBoxOptimized(i); | ||
} | ||
|
||
// wait for compile (and dump) | ||
try { | ||
Thread.sleep(5 * 1000); | ||
} catch (InterruptedException e) { | ||
e.printStackTrace(); | ||
} | ||
|
||
ArrayList<Object> integersReuse = new ArrayList<>(); | ||
for (int i = -listLength; i < listLength; i++) { | ||
Object boxed = integersInterpreter.get(i + listLength); | ||
// cache values in range, re-use if out of range | ||
integersReuse.add(intBoxOptimized(boxed)); | ||
} | ||
for (int i = 0; i < integersInterpreter.size(); i++) { | ||
Object interpreterObject = integersInterpreter.get(i); | ||
Object objectReuse = integersReuse.get(i); | ||
long originalVal; | ||
Number n = (Number) interpreterObject; | ||
originalVal = n.longValue(); | ||
if (originalVal >= cacheLow && originalVal <= cacheHigh) { | ||
// in cache, all must be the same objects | ||
if (interpreterObject != objectReuse) { | ||
throw new Error("val=" + originalVal + " optimized version must remain cached object identities"); | ||
} | ||
} else { | ||
if (interpreterObject != objectReuse) { | ||
throw new Error("val=" + originalVal + " out of cache, optimized version must re-use the argument from the call and thus be the same as the interpreter object"); | ||
} | ||
} | ||
} | ||
System.out.println("Successful execution!!"); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.