test/testlibrary/whitebox/sun/hotspot/WhiteBox.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8038240 Sdiff test/testlibrary/whitebox/sun/hotspot

test/testlibrary/whitebox/sun/hotspot/WhiteBox.java

Print this page
rev 6136 : 8038240: new WB API to get nmethod
Reviewed-by:


 118   public        void    makeMethodNotCompilable(Executable method, int compLevel) {
 119     makeMethodNotCompilable(method, compLevel, false /*not osr*/);
 120   }
 121   public native void    makeMethodNotCompilable(Executable method, int compLevel, boolean isOsr);
 122   public        int     getMethodCompilationLevel(Executable method) {
 123     return getMethodCompilationLevel(method, false /*not ost*/);
 124   }
 125   public native int     getMethodCompilationLevel(Executable method, boolean isOsr);
 126   public native boolean testSetDontInlineMethod(Executable method, boolean value);
 127   public        int     getCompileQueuesSize() {
 128     return getCompileQueueSize(-1 /*any*/);
 129   }
 130   public native int     getCompileQueueSize(int compLevel);
 131   public native boolean testSetForceInlineMethod(Executable method, boolean value);
 132   public boolean        enqueueMethodForCompilation(Executable method, int compLevel) {
 133     return enqueueMethodForCompilation(method, compLevel, -1 /*InvocationEntryBci*/);
 134   }
 135   public native boolean enqueueMethodForCompilation(Executable method, int compLevel, int entry_bci);
 136   public native void    clearMethodState(Executable method);
 137   public native int     getMethodEntryBci(Executable method);

 138 
 139   // Intered strings
 140   public native boolean isInStringTable(String str);
 141 
 142   // Memory
 143   public native void readReservedMemory();
 144 
 145   // force Full GC
 146   public native void fullGC();
 147 
 148   // Tests on ReservedSpace/VirtualSpace classes
 149   public native int stressVirtualSpaceResize(long reservedSpaceSize, long magnitude, long iterations);
 150   public native void runMemoryUnitTests();
 151   public native void readFromNoaccessArea();
 152 
 153   // CPU features
 154   public native String getCPUFeatures();
 155 
 156 }


 118   public        void    makeMethodNotCompilable(Executable method, int compLevel) {
 119     makeMethodNotCompilable(method, compLevel, false /*not osr*/);
 120   }
 121   public native void    makeMethodNotCompilable(Executable method, int compLevel, boolean isOsr);
 122   public        int     getMethodCompilationLevel(Executable method) {
 123     return getMethodCompilationLevel(method, false /*not ost*/);
 124   }
 125   public native int     getMethodCompilationLevel(Executable method, boolean isOsr);
 126   public native boolean testSetDontInlineMethod(Executable method, boolean value);
 127   public        int     getCompileQueuesSize() {
 128     return getCompileQueueSize(-1 /*any*/);
 129   }
 130   public native int     getCompileQueueSize(int compLevel);
 131   public native boolean testSetForceInlineMethod(Executable method, boolean value);
 132   public boolean        enqueueMethodForCompilation(Executable method, int compLevel) {
 133     return enqueueMethodForCompilation(method, compLevel, -1 /*InvocationEntryBci*/);
 134   }
 135   public native boolean enqueueMethodForCompilation(Executable method, int compLevel, int entry_bci);
 136   public native void    clearMethodState(Executable method);
 137   public native int     getMethodEntryBci(Executable method);
 138   public native byte[]  getNMethod(Executable method, boolean isOsr);
 139 
 140   // Intered strings
 141   public native boolean isInStringTable(String str);
 142 
 143   // Memory
 144   public native void readReservedMemory();
 145 
 146   // force Full GC
 147   public native void fullGC();
 148 
 149   // Tests on ReservedSpace/VirtualSpace classes
 150   public native int stressVirtualSpaceResize(long reservedSpaceSize, long magnitude, long iterations);
 151   public native void runMemoryUnitTests();
 152   public native void readFromNoaccessArea();
 153 
 154   // CPU features
 155   public native String getCPUFeatures();
 156 
 157 }
test/testlibrary/whitebox/sun/hotspot/WhiteBox.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File