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

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

Print this page
rev 6131 : 8035857: Add tests to verify correctness of operations with BMI1 and LZCNT instructions
Reviewed-by: duke
Contributed-by: filipp.zhinkin@oracle.com


 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 }


 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 }
test/testlibrary/whitebox/sun/hotspot/WhiteBox.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File