< prev index next >

test/compiler/compilercontrol/matcher/MethodMatcherTest.java

Print this page




   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 8135068
  27  * @summary Tests CompilerCommand's method matcher
  28  * @modules java.base/jdk.internal.misc
  29  * @library /testlibrary /test/lib /
  30  *
  31  * @build compiler.compilercontrol.matcher.MethodMatcherTest
  32  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  33  *                                sun.hotspot.WhiteBox$WhiteBoxPermission
  34  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  35  *           -XX:+WhiteBoxAPI compiler.compilercontrol.matcher.MethodMatcherTest
  36  */
  37 
  38 package compiler.compilercontrol.matcher;
  39 
  40 import compiler.compilercontrol.share.method.MethodDescriptor;
  41 import compiler.compilercontrol.share.method.MethodGenerator;
  42 import compiler.compilercontrol.share.pool.PoolHelper;
  43 import jdk.test.lib.Pair;
  44 import sun.hotspot.WhiteBox;
  45 
  46 import java.lang.reflect.Executable;
  47 import java.util.ArrayList;
  48 import java.util.List;
  49 import java.util.concurrent.Callable;
  50 import java.util.regex.Matcher;
  51 import java.util.regex.Pattern;
  52 
  53 public class MethodMatcherTest {
  54     private static final WhiteBox WB = WhiteBox.getWhiteBox();
  55     private static final PoolHelper POOL = new PoolHelper();
  56     private static final List<Pair<Executable, Callable<?>>> METHODS =
  57             POOL.getAllMethods();
  58     private static final int AMOUNT = Integer.parseInt(System
  59             .getProperty("test.amount", "25"));
  60 
  61     public static void main(String[] args) {
  62         MethodGenerator gen = new MethodGenerator();
  63         List<Pair<Executable, Callable<?>>> testMethods =




   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 8135068
  27  * @summary Tests CompilerCommand's method matcher
  28  * @modules java.base/jdk.internal.misc
  29  * @library /test/lib /
  30  *
  31  * @build sun.hotspot.WhiteBox
  32  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  33  *                                sun.hotspot.WhiteBox$WhiteBoxPermission
  34  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
  35  *           -XX:+WhiteBoxAPI compiler.compilercontrol.matcher.MethodMatcherTest
  36  */
  37 
  38 package compiler.compilercontrol.matcher;
  39 
  40 import compiler.compilercontrol.share.method.MethodDescriptor;
  41 import compiler.compilercontrol.share.method.MethodGenerator;
  42 import compiler.compilercontrol.share.pool.PoolHelper;
  43 import jdk.test.lib.util.Pair;
  44 import sun.hotspot.WhiteBox;
  45 
  46 import java.lang.reflect.Executable;
  47 import java.util.ArrayList;
  48 import java.util.List;
  49 import java.util.concurrent.Callable;
  50 import java.util.regex.Matcher;
  51 import java.util.regex.Pattern;
  52 
  53 public class MethodMatcherTest {
  54     private static final WhiteBox WB = WhiteBox.getWhiteBox();
  55     private static final PoolHelper POOL = new PoolHelper();
  56     private static final List<Pair<Executable, Callable<?>>> METHODS =
  57             POOL.getAllMethods();
  58     private static final int AMOUNT = Integer.parseInt(System
  59             .getProperty("test.amount", "25"));
  60 
  61     public static void main(String[] args) {
  62         MethodGenerator gen = new MethodGenerator();
  63         List<Pair<Executable, Callable<?>>> testMethods =


< prev index next >