author | vdeshpande |
Fri, 26 Aug 2016 12:20:09 -0700 | |
changeset 41362 | e09e871860a7 |
parent 40059 | c2304140ed64 |
child 40631 | ed82623d7831 |
permissions | -rw-r--r-- |
33452 | 1 |
/* |
2 |
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. |
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
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 |
package compiler.compilercontrol.share; |
|
25 |
||
26 |
import compiler.compilercontrol.share.method.MethodDescriptor; |
|
27 |
import compiler.compilercontrol.share.method.MethodGenerator; |
|
40059 | 28 |
import compiler.compilercontrol.share.pool.PoolHelper; |
33452 | 29 |
import jdk.test.lib.Pair; |
30 |
||
31 |
import java.lang.reflect.Executable; |
|
32 |
import java.util.List; |
|
33 |
import java.util.concurrent.Callable; |
|
34 |
||
35 |
public abstract class AbstractTestBase { |
|
36 |
protected static final MethodGenerator METHOD_GEN = new MethodGenerator(); |
|
37 |
protected static final int ATTEMPTS = 25; |
|
38 |
protected static final List<Pair<Executable, Callable<?>>> METHODS |
|
39 |
= new PoolHelper().getAllMethods(PoolHelper.METHOD_FILTER); |
|
40 |
||
41 |
public abstract void test(); |
|
42 |
||
43 |
/** |
|
44 |
* Generate random valid method descriptor |
|
45 |
* |
|
46 |
* @param exec method to make descriptor for |
|
47 |
* @return a valid {@link MethodDescriptor#isValid()} descriptor instance |
|
48 |
*/ |
|
49 |
public static MethodDescriptor getValidMethodDescriptor(Executable exec) { |
|
50 |
MethodDescriptor md = METHOD_GEN.generateRandomDescriptor(exec); |
|
51 |
for (int i = 0; !md.isValid() && i < ATTEMPTS; i++) { |
|
52 |
md = METHOD_GEN.generateRandomDescriptor(exec); |
|
53 |
} |
|
36298
a647a4f8c0c2
8144621: CompilerControl: inline tests timeout with Xcomp
ppunegov
parents:
33452
diff
changeset
|
54 |
if (!md.isValid() || "any.method()".matches(md.getRegexp())) { |
a647a4f8c0c2
8144621: CompilerControl: inline tests timeout with Xcomp
ppunegov
parents:
33452
diff
changeset
|
55 |
/* if we haven't got a valid pattern or it matches any method |
a647a4f8c0c2
8144621: CompilerControl: inline tests timeout with Xcomp
ppunegov
parents:
33452
diff
changeset
|
56 |
leading to timeouts, then use plain standard descriptor */ |
33452 | 57 |
md = MethodGenerator.commandDescriptor(exec); |
58 |
} |
|
59 |
return md; |
|
60 |
} |
|
61 |
} |