< prev index next >

test/compiler/intrinsics/string/TestStringIntrinsics2.java

Print this page




  10  * This code is distributed in the hope that it will be useful, but WITHOUT
  11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13  * version 2 for more details (a copy is included in the LICENSE file that
  14  * accompanied this code).
  15  *
  16  * You should have received a copy of the GNU General Public License version
  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  */
  24 
  25 /*
  26  * @test
  27  * @bug 8145336
  28  * @summary PPC64: fix string intrinsics after CompactStrings change
  29  * @modules java.base/jdk.internal.misc
  30  * @library /testlibrary /test/lib
  31  *
  32  * @build sun.hotspot.WhiteBox
  33  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  34  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  35  *
  36  * @run main/othervm
  37  *        -Xbootclasspath/a:.
  38  *        -Xmixed
  39  *        -XX:+UnlockDiagnosticVMOptions
  40  *        -XX:+WhiteBoxAPI
  41  *        -XX:MaxInlineSize=70
  42  *        -XX:MinInliningThreshold=0
  43  *        compiler.intrinsics.string.TestStringIntrinsics2
  44  */
  45 
  46 package compiler.intrinsics.string;
  47 
  48 import sun.hotspot.WhiteBox;
  49 
  50 import java.lang.annotation.ElementType;




  10  * This code is distributed in the hope that it will be useful, but WITHOUT
  11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13  * version 2 for more details (a copy is included in the LICENSE file that
  14  * accompanied this code).
  15  *
  16  * You should have received a copy of the GNU General Public License version
  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  */
  24 
  25 /*
  26  * @test
  27  * @bug 8145336
  28  * @summary PPC64: fix string intrinsics after CompactStrings change
  29  * @modules java.base/jdk.internal.misc
  30  * @library /test/lib
  31  *
  32  * @build sun.hotspot.WhiteBox
  33  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  34  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  35  *
  36  * @run main/othervm
  37  *        -Xbootclasspath/a:.
  38  *        -Xmixed
  39  *        -XX:+UnlockDiagnosticVMOptions
  40  *        -XX:+WhiteBoxAPI
  41  *        -XX:MaxInlineSize=70
  42  *        -XX:MinInliningThreshold=0
  43  *        compiler.intrinsics.string.TestStringIntrinsics2
  44  */
  45 
  46 package compiler.intrinsics.string;
  47 
  48 import sun.hotspot.WhiteBox;
  49 
  50 import java.lang.annotation.ElementType;


< prev index next >