author | ctornqvi |
Fri, 19 Aug 2016 10:06:30 -0400 | |
changeset 40631 | ed82623d7831 |
parent 40364 | 5bf8fa4fddfd |
child 43455 | 96560cffef4d |
permissions | -rw-r--r-- |
31962
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
1 |
/* |
40364
5bf8fa4fddfd
8162881: Effect of -XX:CICompilerCount depends on ordering of other flags
thartmann
parents:
40067
diff
changeset
|
2 |
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. |
31962
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
4 |
* |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
8 |
* |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
13 |
* accompanied this code). |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
14 |
* |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
18 |
* |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
21 |
* questions. |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
22 |
*/ |
35563
d5ac28780cda
8145331: SEGV in DirectivesStack::release(DirectiveSet*)
neliasso
parents:
34185
diff
changeset
|
23 |
|
31962
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
24 |
/* |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
25 |
* @test |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
26 |
* @bug 8130832 |
38152
80e5da81fb2c
8154258: [TESTBUG] Various serviceability tests fail compilation
dsamersoff
parents:
35563
diff
changeset
|
27 |
* @modules java.base/jdk.internal.misc |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40364
diff
changeset
|
28 |
* @library /test/lib / |
40059 | 29 |
* |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40364
diff
changeset
|
30 |
* @build sun.hotspot.WhiteBox |
39438 | 31 |
* @run driver ClassFileInstaller sun.hotspot.WhiteBox |
32 |
* sun.hotspot.WhiteBox$WhiteBoxPermission |
|
31962
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
33 |
* @run main/othervm -Xbootclasspath/a:. |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
34 |
* -XX:+UnlockDiagnosticVMOptions |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
35 |
* -XX:+WhiteBoxAPI |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
36 |
* -XX:+UseCRC32Intrinsics |
40059 | 37 |
* compiler.intrinsics.IntrinsicAvailableTest |
31962
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
38 |
* @run main/othervm -Xbootclasspath/a:. |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
39 |
* -XX:+UnlockDiagnosticVMOptions |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
40 |
* -XX:+WhiteBoxAPI |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
41 |
* -XX:-UseCRC32Intrinsics |
40059 | 42 |
* compiler.intrinsics.IntrinsicAvailableTest |
31962
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
43 |
*/ |
39438 | 44 |
|
40059 | 45 |
|
46 |
package compiler.intrinsics; |
|
47 |
||
48 |
import compiler.whitebox.CompilerWhiteBoxTest; |
|
49 |
import jdk.test.lib.Platform; |
|
50 |
||
39438 | 51 |
import java.lang.reflect.Executable; |
52 |
import java.util.concurrent.Callable; |
|
53 |
||
31962
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
54 |
public class IntrinsicAvailableTest extends CompilerWhiteBoxTest { |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
55 |
|
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
56 |
public IntrinsicAvailableTest(IntrinsicAvailableTestTestCase testCase) { |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
57 |
super(testCase); |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
58 |
} |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
59 |
|
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
60 |
public static class IntrinsicAvailableTestTestCase implements TestCase { |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
61 |
|
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
62 |
public String name() { |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
63 |
return "IntrinsicAvailableTestTestCase"; |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
64 |
} |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
65 |
|
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
66 |
public Executable getExecutable() { |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
67 |
// Using a single method to test the |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
68 |
// WhiteBox.isIntrinsicAvailable(Executable method, int compLevel) |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
69 |
// call for the compilation level corresponding to both the C1 and C2 |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
70 |
// compiler keeps the current test simple. |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
71 |
// |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
72 |
// The tested method is java.util.zip.CRC32.update(int, int) because |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
73 |
// both C1 and C2 define an intrinsic for the method and |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
74 |
// the UseCRC32Intrinsics flag can be used to enable/disable |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
75 |
// intrinsification of the method in both product and fastdebug |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
76 |
// builds. |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
77 |
try { |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
78 |
return Class.forName("java.util.zip.CRC32").getDeclaredMethod("update", int.class, int.class); |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
79 |
} catch (NoSuchMethodException e) { |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
80 |
throw new RuntimeException("Test bug, method unavailable. " + e); |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
81 |
} catch (ClassNotFoundException e) { |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
82 |
throw new RuntimeException("Test bug, class unavailable. " + e); |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
83 |
} |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
84 |
} |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
85 |
|
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
86 |
public Callable<Integer> getCallable() { |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
87 |
return null; |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
88 |
} |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
89 |
|
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
90 |
public boolean isOsr() { |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
91 |
return false; |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
92 |
} |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
93 |
|
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
94 |
} |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
95 |
|
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
96 |
protected void checkIntrinsicForCompilationLevel(Executable method, int compLevel) throws Exception { |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
97 |
boolean intrinsicEnabled = Boolean.valueOf(getVMOption("UseCRC32Intrinsics")); |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
98 |
boolean intrinsicAvailable = WHITE_BOX.isIntrinsicAvailable(method, |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
99 |
compLevel); |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
100 |
|
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
101 |
String intrinsicEnabledMessage = intrinsicEnabled ? "enabled" : "disabled"; |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
102 |
String intrinsicAvailableMessage = intrinsicAvailable ? "available" : "not available"; |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
103 |
|
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
104 |
if (intrinsicEnabled == intrinsicAvailable) { |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
105 |
System.out.println("Expected result: intrinsic for java.util.zip.CRC32.update() is " + |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
106 |
intrinsicEnabledMessage + " and intrinsic is " + intrinsicAvailableMessage + |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
107 |
" at compilation level " + compLevel); |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
108 |
} else { |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
109 |
throw new RuntimeException("Unexpected result: intrinsic for java.util.zip.CRC32.update() is " + |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
110 |
intrinsicEnabledMessage + " but intrinsic is " + intrinsicAvailableMessage + |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
111 |
" at compilation level " + compLevel); |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
112 |
} |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
113 |
} |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
114 |
|
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
115 |
public void test() throws Exception { |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
116 |
Executable intrinsicMethod = testCase.getExecutable(); |
40364
5bf8fa4fddfd
8162881: Effect of -XX:CICompilerCount depends on ordering of other flags
thartmann
parents:
40067
diff
changeset
|
117 |
if (Platform.isServer() && (TIERED_STOP_AT_LEVEL == COMP_LEVEL_FULL_OPTIMIZATION)) { |
31962
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
118 |
if (TIERED_COMPILATION) { |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
119 |
checkIntrinsicForCompilationLevel(intrinsicMethod, COMP_LEVEL_SIMPLE); |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
120 |
} |
35563
d5ac28780cda
8145331: SEGV in DirectivesStack::release(DirectiveSet*)
neliasso
parents:
34185
diff
changeset
|
121 |
// Dont bother check JVMCI compiler - returns false on all intrinsics. |
d5ac28780cda
8145331: SEGV in DirectivesStack::release(DirectiveSet*)
neliasso
parents:
34185
diff
changeset
|
122 |
if (!Boolean.valueOf(getVMOption("UseJVMCICompiler"))) { |
d5ac28780cda
8145331: SEGV in DirectivesStack::release(DirectiveSet*)
neliasso
parents:
34185
diff
changeset
|
123 |
checkIntrinsicForCompilationLevel(intrinsicMethod, COMP_LEVEL_FULL_OPTIMIZATION); |
d5ac28780cda
8145331: SEGV in DirectivesStack::release(DirectiveSet*)
neliasso
parents:
34185
diff
changeset
|
124 |
} |
31962
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
125 |
} else { |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
126 |
checkIntrinsicForCompilationLevel(intrinsicMethod, COMP_LEVEL_SIMPLE); |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
127 |
} |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
128 |
} |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
129 |
|
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
130 |
public static void main(String args[]) throws Exception { |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
131 |
new IntrinsicAvailableTest(new IntrinsicAvailableTestTestCase()).test(); |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
132 |
} |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
diff
changeset
|
133 |
} |