diff jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotProfilingInfo.java @ 23782:286dce1eca9b

Sync with JDK9 MDO changes
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Wed, 05 Oct 2016 11:38:45 -0700
parents c64c9fac1ab9
children
line wrap: on
line diff
--- a/jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotProfilingInfo.java	Wed Oct 05 17:30:21 2016 +0200
+++ b/jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotProfilingInfo.java	Wed Oct 05 11:38:45 2016 -0700
@@ -61,12 +61,12 @@
         return methodData.getDecompileCount();
     }
 
-    public int getOverflowCompileCount() {
-        return methodData.getOverflowCompileCount();
+    public int getOverflowRecompileCount() {
+        return methodData.getOverflowRecompileCount();
     }
 
-    public int getOverflowTrapsCount() {
-        return methodData.getOverflowTrapsCount();
+    public int getOverflowTrapCount() {
+        return methodData.getOverflowTrapCount();
     }
 
     @Override