8198433: Remove WhiteBox extension point
authorsjohanss
Fri, 02 Mar 2018 10:09:05 +0100
changeset 49322 38933ade5bf5
parent 49321 c3baee120706
child 49323 565336327354
8198433: Remove WhiteBox extension point Reviewed-by: ehelin, dholmes, tschatzl
src/hotspot/share/prims/whitebox.cpp
src/hotspot/share/prims/whitebox_ext.cpp
test/lib/sun/hotspot/WhiteBox.java
--- a/src/hotspot/share/prims/whitebox.cpp	Fri Mar 02 10:09:04 2018 +0100
+++ b/src/hotspot/share/prims/whitebox.cpp	Fri Mar 02 10:09:05 2018 +0100
@@ -2162,7 +2162,6 @@
       Handle loader(THREAD, ik->class_loader());
       if (loader.is_null()) {
         WhiteBox::register_methods(env, wbclass, thread, methods, sizeof(methods) / sizeof(methods[0]));
-        WhiteBox::register_extended(env, wbclass, thread);
         WhiteBox::set_used();
       }
     }
--- a/src/hotspot/share/prims/whitebox_ext.cpp	Fri Mar 02 10:09:04 2018 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,29 +0,0 @@
-/*
- * Copyright (c) 2012, 2014, 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.
- *
- * 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.
- *
- */
-
-#include "precompiled.hpp"
-
-#include "prims/whitebox.hpp"
-
-void WhiteBox::register_extended(JNIEnv* env, jclass wbclass, JavaThread* thread) { }
--- a/test/lib/sun/hotspot/WhiteBox.java	Fri Mar 02 10:09:04 2018 +0100
+++ b/test/lib/sun/hotspot/WhiteBox.java	Fri Mar 02 10:09:05 2018 +0100
@@ -439,16 +439,6 @@
   // CPU features
   public native String getCPUFeatures();
 
-  // Native extensions
-  public native long getHeapUsageForContext(int context);
-  public native long getHeapRegionCountForContext(int context);
-  private native int getContextForObject0(Object obj);
-  public         int getContextForObject(Object obj) {
-    Objects.requireNonNull(obj);
-    return getContextForObject0(obj);
-  }
-  public native void printRegionInfo(int context);
-
   // VM flags
   public native boolean isConstantVMFlag(String name);
   public native boolean isLockedVMFlag(String name);