< prev index next >

test/compiler/intrinsics/IntrinsicDisabledTest.java

Print this page
rev 9959 : 8148012: get rid of slash-dot-dot in @library directives
Reviewed-by:
rev 9218 : 8138651: -XX:DisableIntrinsic matches intrinsics overly eagerly
Summary: Improve parsing of DisableIntrinsic flag.
Reviewed-by: kvn, shade, neliasso


   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8138651
  27  * @library /testlibrary /../../test/lib
  28  * @build IntrinsicDisabledTest
  29  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  30  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  31  * @run main/othervm -Xbootclasspath/a:.
  32  *                   -XX:+UnlockDiagnosticVMOptions
  33  *                   -XX:+WhiteBoxAPI
  34  *                   -XX:DisableIntrinsic=_putCharVolatile,_putInt
  35  *                   -XX:DisableIntrinsic=_putIntVolatile
  36  *                   -XX:CompileCommand=option,sun.misc.Unsafe::putChar,ccstrlist,DisableIntrinsic,_getCharVolatile,_getInt
  37  *                   -XX:CompileCommand=option,sun.misc.Unsafe::putCharVolatile,ccstrlist,DisableIntrinsic,_getIntVolatile
  38  *                   IntrinsicDisabledTest
  39  */
  40 
  41 import java.lang.reflect.Executable;
  42 import java.util.Objects;
  43 
  44 import sun.hotspot.WhiteBox;
  45 
  46 import jdk.test.lib.Platform;
  47 




   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 8138651
  27  * @library /testlibrary /test/lib
  28  * @build IntrinsicDisabledTest
  29  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  30  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  31  * @run main/othervm -Xbootclasspath/a:.
  32  *                   -XX:+UnlockDiagnosticVMOptions
  33  *                   -XX:+WhiteBoxAPI
  34  *                   -XX:DisableIntrinsic=_putCharVolatile,_putInt
  35  *                   -XX:DisableIntrinsic=_putIntVolatile
  36  *                   -XX:CompileCommand=option,sun.misc.Unsafe::putChar,ccstrlist,DisableIntrinsic,_getCharVolatile,_getInt
  37  *                   -XX:CompileCommand=option,sun.misc.Unsafe::putCharVolatile,ccstrlist,DisableIntrinsic,_getIntVolatile
  38  *                   IntrinsicDisabledTest
  39  */
  40 
  41 import java.lang.reflect.Executable;
  42 import java.util.Objects;
  43 
  44 import sun.hotspot.WhiteBox;
  45 
  46 import jdk.test.lib.Platform;
  47 


< prev index next >