< prev index next >

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotDataBuilder.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019, 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.

@@ -49,16 +49,10 @@
     public HotSpotDataBuilder(TargetDescription target) {
         this.target = target;
     }
 
     @Override
-    public boolean needDetailedPatchingInformation() {
-        /* The HotSpot VM finds operands that need patching by decoding the instruction. */
-        return false;
-    }
-
-    @Override
     public Data createDataItem(Constant constant) {
         if (JavaConstant.isNull(constant)) {
             boolean compressed = COMPRESSED_NULL.equals(constant);
             int size = compressed ? 4 : target.wordSize;
             return ZeroData.create(size, size);
< prev index next >