< prev index next >

test/compiler/compilercontrol/share/method/MethodGenerator.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke


   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 package compiler.compilercontrol.share.method;
  25 
  26 import compiler.compilercontrol.share.method.MethodDescriptor.PatternType;
  27 import compiler.compilercontrol.share.method.MethodDescriptor.Separator;

  28 import jdk.test.lib.Pair;
  29 import jdk.test.lib.Triple;
  30 import jdk.test.lib.Utils;
  31 import pool.PoolHelper;
  32 
  33 import java.lang.reflect.Executable;
  34 import java.util.ArrayList;
  35 import java.util.EnumSet;
  36 import java.util.List;
  37 import java.util.concurrent.Callable;
  38 import java.util.function.Function;
  39 
  40 /**
  41  * Generates combinations of method descriptors from the pool of methods
  42  */
  43 public class MethodGenerator {
  44     private static final List<Pair<Executable, Callable<?>>> METHODS =
  45             new PoolHelper().getAllMethods(PoolHelper.METHOD_FILTER);
  46     // Different combinations of patterns
  47     private static final List<Combination<PatternType>> PATTERNS_LIST;
  48     // Different combinations of separators
  49     private static final List<Combination<Separator>> SEPARATORS_LIST;
  50     // List of functions that modify elements
  51     private static final List<Function<String, String>> ELEMENT_MUTATORS;




   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 package compiler.compilercontrol.share.method;
  25 
  26 import compiler.compilercontrol.share.method.MethodDescriptor.PatternType;
  27 import compiler.compilercontrol.share.method.MethodDescriptor.Separator;
  28 import compiler.compilercontrol.share.pool.PoolHelper;
  29 import jdk.test.lib.Pair;
  30 import jdk.test.lib.Triple;
  31 import jdk.test.lib.Utils;

  32 
  33 import java.lang.reflect.Executable;
  34 import java.util.ArrayList;
  35 import java.util.EnumSet;
  36 import java.util.List;
  37 import java.util.concurrent.Callable;
  38 import java.util.function.Function;
  39 
  40 /**
  41  * Generates combinations of method descriptors from the pool of methods
  42  */
  43 public class MethodGenerator {
  44     private static final List<Pair<Executable, Callable<?>>> METHODS =
  45             new PoolHelper().getAllMethods(PoolHelper.METHOD_FILTER);
  46     // Different combinations of patterns
  47     private static final List<Combination<PatternType>> PATTERNS_LIST;
  48     // Different combinations of separators
  49     private static final List<Combination<Separator>> SEPARATORS_LIST;
  50     // List of functions that modify elements
  51     private static final List<Function<String, String>> ELEMENT_MUTATORS;


< prev index next >