|
58 | 58 | import org.graalvm.compiler.hotspot.replacements.CRC32Substitutions;
|
59 | 59 | import org.graalvm.compiler.hotspot.replacements.CallSiteTargetNode;
|
60 | 60 | import org.graalvm.compiler.hotspot.replacements.CipherBlockChainingSubstitutions;
|
61 |
| -import org.graalvm.compiler.hotspot.replacements.ClassGetHubNode; |
62 | 61 | import org.graalvm.compiler.hotspot.replacements.CounterModeSubstitutions;
|
63 | 62 | import org.graalvm.compiler.hotspot.replacements.DigestBaseSubstitutions;
|
64 | 63 | import org.graalvm.compiler.hotspot.replacements.FastNotifyNode;
|
|
76 | 75 | import org.graalvm.compiler.hotspot.word.HotSpotWordTypes;
|
77 | 76 | import org.graalvm.compiler.nodes.ComputeObjectAddressNode;
|
78 | 77 | import org.graalvm.compiler.nodes.ConstantNode;
|
79 |
| -import org.graalvm.compiler.nodes.NamedLocationIdentity; |
80 | 78 | import org.graalvm.compiler.nodes.NodeView;
|
81 | 79 | import org.graalvm.compiler.nodes.ValueNode;
|
82 | 80 | import org.graalvm.compiler.nodes.calc.AddNode;
|
83 |
| -import org.graalvm.compiler.nodes.calc.IntegerConvertNode; |
84 |
| -import org.graalvm.compiler.nodes.calc.LeftShiftNode; |
85 | 81 | import org.graalvm.compiler.nodes.extended.ForeignCallNode;
|
86 | 82 | import org.graalvm.compiler.nodes.graphbuilderconf.ForeignCallPlugin;
|
87 | 83 | import org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.Plugins;
|
|
109 | 105 | import org.graalvm.compiler.replacements.nodes.MacroNode.MacroParams;
|
110 | 106 | import org.graalvm.compiler.serviceprovider.GraalServices;
|
111 | 107 | import org.graalvm.compiler.serviceprovider.JavaVersionUtil;
|
112 |
| -import org.graalvm.compiler.word.WordOperationPlugin; |
113 | 108 | import org.graalvm.compiler.word.WordTypes;
|
114 |
| -import jdk.internal.vm.compiler.word.LocationIdentity; |
115 | 109 |
|
116 |
| -import jdk.vm.ci.code.CodeUtil; |
117 | 110 | import jdk.vm.ci.code.TargetDescription;
|
118 | 111 | import jdk.vm.ci.hotspot.VMIntrinsicMethod;
|
119 | 112 | import jdk.vm.ci.meta.ConstantReflectionProvider;
|
@@ -191,7 +184,6 @@ public void run() {
|
191 | 184 | registerCallSitePlugins(invocationPlugins);
|
192 | 185 | }
|
193 | 186 | registerReflectionPlugins(invocationPlugins, replacements);
|
194 |
| - registerConstantPoolPlugins(invocationPlugins, wordTypes, config, replacements); |
195 | 187 | registerAESPlugins(invocationPlugins, config, replacements);
|
196 | 188 | registerCRC32Plugins(invocationPlugins, config, replacements);
|
197 | 189 | registerCRC32CPlugins(invocationPlugins, config, replacements);
|
@@ -369,85 +361,6 @@ public boolean apply(GraphBuilderContext b, ResolvedJavaMethod targetMethod, Rec
|
369 | 361 | });
|
370 | 362 | }
|
371 | 363 |
|
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 |
| - |
451 | 364 | private static void registerSystemPlugins(InvocationPlugins plugins) {
|
452 | 365 | Registration r = new Registration(plugins, System.class);
|
453 | 366 | r.register0("currentTimeMillis", new ForeignCallPlugin(HotSpotHostForeignCallsProvider.JAVA_TIME_MILLIS));
|
@@ -514,15 +427,12 @@ public boolean apply(GraphBuilderContext b, ResolvedJavaMethod targetMethod, Rec
|
514 | 427 | }
|
515 | 428 |
|
516 | 429 | public static final String reflectionClass;
|
517 |
| - public static final String constantPoolClass; |
518 | 430 |
|
519 | 431 | static {
|
520 | 432 | if (JavaVersionUtil.JAVA_SPEC <= 8) {
|
521 | 433 | reflectionClass = "sun.reflect.Reflection";
|
522 |
| - constantPoolClass = "sun.reflect.ConstantPool"; |
523 | 434 | } else {
|
524 | 435 | reflectionClass = "jdk.internal.reflect.Reflection";
|
525 |
| - constantPoolClass = "jdk.internal.reflect.ConstantPool"; |
526 | 436 | }
|
527 | 437 | }
|
528 | 438 |
|
|
0 commit comments