Skip to content

Commit 69a9403

Browse files
author
Igor Veresov
committedJul 9, 2020
8248822: 8 vm/classfmt/atr_ann/atr_rtm_annot007/atr_rtm_annot00709 tests fail w/ AOT
Remove Remove jdk.internal.reflect.ConstantPool intrinsics. Reviewed-by: kvn
1 parent 9f0bafe commit 69a9403

File tree

2 files changed

+0
-409
lines changed

2 files changed

+0
-409
lines changed
 

‎src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/ConstantPoolSubstitutionsTests.java

-319
This file was deleted.

‎src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/HotSpotGraphBuilderPlugins.java

-90
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
import org.graalvm.compiler.hotspot.replacements.CRC32Substitutions;
5959
import org.graalvm.compiler.hotspot.replacements.CallSiteTargetNode;
6060
import org.graalvm.compiler.hotspot.replacements.CipherBlockChainingSubstitutions;
61-
import org.graalvm.compiler.hotspot.replacements.ClassGetHubNode;
6261
import org.graalvm.compiler.hotspot.replacements.CounterModeSubstitutions;
6362
import org.graalvm.compiler.hotspot.replacements.DigestBaseSubstitutions;
6463
import org.graalvm.compiler.hotspot.replacements.FastNotifyNode;
@@ -76,12 +75,9 @@
7675
import org.graalvm.compiler.hotspot.word.HotSpotWordTypes;
7776
import org.graalvm.compiler.nodes.ComputeObjectAddressNode;
7877
import org.graalvm.compiler.nodes.ConstantNode;
79-
import org.graalvm.compiler.nodes.NamedLocationIdentity;
8078
import org.graalvm.compiler.nodes.NodeView;
8179
import org.graalvm.compiler.nodes.ValueNode;
8280
import org.graalvm.compiler.nodes.calc.AddNode;
83-
import org.graalvm.compiler.nodes.calc.IntegerConvertNode;
84-
import org.graalvm.compiler.nodes.calc.LeftShiftNode;
8581
import org.graalvm.compiler.nodes.extended.ForeignCallNode;
8682
import org.graalvm.compiler.nodes.graphbuilderconf.ForeignCallPlugin;
8783
import org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.Plugins;
@@ -109,11 +105,8 @@
109105
import org.graalvm.compiler.replacements.nodes.MacroNode.MacroParams;
110106
import org.graalvm.compiler.serviceprovider.GraalServices;
111107
import org.graalvm.compiler.serviceprovider.JavaVersionUtil;
112-
import org.graalvm.compiler.word.WordOperationPlugin;
113108
import org.graalvm.compiler.word.WordTypes;
114-
import jdk.internal.vm.compiler.word.LocationIdentity;
115109

116-
import jdk.vm.ci.code.CodeUtil;
117110
import jdk.vm.ci.code.TargetDescription;
118111
import jdk.vm.ci.hotspot.VMIntrinsicMethod;
119112
import jdk.vm.ci.meta.ConstantReflectionProvider;
@@ -191,7 +184,6 @@ public void run() {
191184
registerCallSitePlugins(invocationPlugins);
192185
}
193186
registerReflectionPlugins(invocationPlugins, replacements);
194-
registerConstantPoolPlugins(invocationPlugins, wordTypes, config, replacements);
195187
registerAESPlugins(invocationPlugins, config, replacements);
196188
registerCRC32Plugins(invocationPlugins, config, replacements);
197189
registerCRC32CPlugins(invocationPlugins, config, replacements);
@@ -369,85 +361,6 @@ public boolean apply(GraphBuilderContext b, ResolvedJavaMethod targetMethod, Rec
369361
});
370362
}
371363

372-
private static final LocationIdentity INSTANCE_KLASS_CONSTANTS = NamedLocationIdentity.immutable("InstanceKlass::_constants");
373-
private static final LocationIdentity CONSTANT_POOL_LENGTH = NamedLocationIdentity.immutable("ConstantPool::_length");
374-
375-
/**
376-
* Emits a node to get the metaspace {@code ConstantPool} pointer given the value of the
377-
* {@code constantPoolOop} field in a ConstantPool value.
378-
*
379-
* @param constantPoolOop value of the {@code constantPoolOop} field in a ConstantPool value
380-
* @return a node representing the metaspace {@code ConstantPool} pointer associated with
381-
* {@code constantPoolOop}
382-
*/
383-
private static ValueNode getMetaspaceConstantPool(GraphBuilderContext b, ValueNode constantPoolOop, WordTypes wordTypes, GraalHotSpotVMConfig config) {
384-
// ConstantPool.constantPoolOop is in fact the holder class.
385-
ValueNode value = b.nullCheckedValue(constantPoolOop, DeoptimizationAction.None);
386-
ValueNode klass = b.add(ClassGetHubNode.create(value, b.getMetaAccess(), b.getConstantReflection(), false));
387-
388-
boolean notCompressible = false;
389-
AddressNode constantsAddress = b.add(new OffsetAddressNode(klass, b.add(ConstantNode.forLong(config.instanceKlassConstantsOffset))));
390-
return WordOperationPlugin.readOp(b, wordTypes.getWordKind(), constantsAddress, INSTANCE_KLASS_CONSTANTS, BarrierType.NONE, notCompressible);
391-
}
392-
393-
/**
394-
* Emits a node representing an element in a metaspace {@code ConstantPool}.
395-
*
396-
* @param constantPoolOop value of the {@code constantPoolOop} field in a ConstantPool value
397-
*/
398-
private static boolean readMetaspaceConstantPoolElement(GraphBuilderContext b, ValueNode constantPoolOop, ValueNode index, JavaKind elementKind, WordTypes wordTypes, GraalHotSpotVMConfig config) {
399-
ValueNode constants = getMetaspaceConstantPool(b, constantPoolOop, wordTypes, config);
400-
int shift = CodeUtil.log2(wordTypes.getWordKind().getByteCount());
401-
ValueNode scaledIndex = b.add(new LeftShiftNode(IntegerConvertNode.convert(index, StampFactory.forKind(JavaKind.Long), NodeView.DEFAULT), b.add(ConstantNode.forInt(shift))));
402-
ValueNode offset = b.add(new AddNode(scaledIndex, b.add(ConstantNode.forLong(config.constantPoolSize))));
403-
AddressNode elementAddress = b.add(new OffsetAddressNode(constants, offset));
404-
boolean notCompressible = false;
405-
ValueNode elementValue = WordOperationPlugin.readOp(b, elementKind, elementAddress, NamedLocationIdentity.getArrayLocation(elementKind), BarrierType.NONE, notCompressible);
406-
b.addPush(elementKind, elementValue);
407-
return true;
408-
}
409-
410-
private static void registerConstantPoolPlugins(InvocationPlugins plugins, WordTypes wordTypes, GraalHotSpotVMConfig config, Replacements replacements) {
411-
Registration r = new Registration(plugins, constantPoolClass, replacements);
412-
413-
r.register2("getSize0", Receiver.class, Object.class, new InvocationPlugin() {
414-
@Override
415-
public boolean apply(GraphBuilderContext b, ResolvedJavaMethod targetMethod, Receiver receiver, ValueNode constantPoolOop) {
416-
boolean notCompressible = false;
417-
ValueNode constants = getMetaspaceConstantPool(b, constantPoolOop, wordTypes, config);
418-
AddressNode lengthAddress = b.add(new OffsetAddressNode(constants, b.add(ConstantNode.forLong(config.constantPoolLengthOffset))));
419-
ValueNode length = WordOperationPlugin.readOp(b, JavaKind.Int, lengthAddress, CONSTANT_POOL_LENGTH, BarrierType.NONE, notCompressible);
420-
b.addPush(JavaKind.Int, length);
421-
return true;
422-
}
423-
});
424-
425-
r.register3("getIntAt0", Receiver.class, Object.class, int.class, new InvocationPlugin() {
426-
@Override
427-
public boolean apply(GraphBuilderContext b, ResolvedJavaMethod targetMethod, Receiver receiver, ValueNode constantPoolOop, ValueNode index) {
428-
return readMetaspaceConstantPoolElement(b, constantPoolOop, index, JavaKind.Int, wordTypes, config);
429-
}
430-
});
431-
r.register3("getLongAt0", Receiver.class, Object.class, int.class, new InvocationPlugin() {
432-
@Override
433-
public boolean apply(GraphBuilderContext b, ResolvedJavaMethod targetMethod, Receiver receiver, ValueNode constantPoolOop, ValueNode index) {
434-
return readMetaspaceConstantPoolElement(b, constantPoolOop, index, JavaKind.Long, wordTypes, config);
435-
}
436-
});
437-
r.register3("getFloatAt0", Receiver.class, Object.class, int.class, new InvocationPlugin() {
438-
@Override
439-
public boolean apply(GraphBuilderContext b, ResolvedJavaMethod targetMethod, Receiver receiver, ValueNode constantPoolOop, ValueNode index) {
440-
return readMetaspaceConstantPoolElement(b, constantPoolOop, index, JavaKind.Float, wordTypes, config);
441-
}
442-
});
443-
r.register3("getDoubleAt0", Receiver.class, Object.class, int.class, new InvocationPlugin() {
444-
@Override
445-
public boolean apply(GraphBuilderContext b, ResolvedJavaMethod targetMethod, Receiver receiver, ValueNode constantPoolOop, ValueNode index) {
446-
return readMetaspaceConstantPoolElement(b, constantPoolOop, index, JavaKind.Double, wordTypes, config);
447-
}
448-
});
449-
}
450-
451364
private static void registerSystemPlugins(InvocationPlugins plugins) {
452365
Registration r = new Registration(plugins, System.class);
453366
r.register0("currentTimeMillis", new ForeignCallPlugin(HotSpotHostForeignCallsProvider.JAVA_TIME_MILLIS));
@@ -514,15 +427,12 @@ public boolean apply(GraphBuilderContext b, ResolvedJavaMethod targetMethod, Rec
514427
}
515428

516429
public static final String reflectionClass;
517-
public static final String constantPoolClass;
518430

519431
static {
520432
if (JavaVersionUtil.JAVA_SPEC <= 8) {
521433
reflectionClass = "sun.reflect.Reflection";
522-
constantPoolClass = "sun.reflect.ConstantPool";
523434
} else {
524435
reflectionClass = "jdk.internal.reflect.Reflection";
525-
constantPoolClass = "jdk.internal.reflect.ConstantPool";
526436
}
527437
}
528438

0 commit comments

Comments
 (0)
Please sign in to comment.