author | iignatyev |
Fri, 15 Nov 2019 14:22:24 -0800 | |
changeset 59116 | 8e7f29b1ad4a |
parent 52475 | 9887f04b0e0f |
permissions | -rw-r--r-- |
43972 | 1 |
/* |
50104 | 2 |
* Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved. |
43972 | 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. Oracle designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
|
10 |
* |
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
24 |
*/ |
|
25 |
||
26 |
module jdk.internal.vm.compiler { |
|
27 |
requires java.instrument; |
|
28 |
requires java.management; |
|
45630
0aa7752bc392
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
43972
diff
changeset
|
29 |
requires jdk.internal.vm.ci; |
43972 | 30 |
requires jdk.management; |
45630
0aa7752bc392
8182416: Clean up module-info.java like move requires transitive adjacent to exports
mchung
parents:
43972
diff
changeset
|
31 |
requires jdk.unsupported; // sun.misc.Unsafe is used |
43972 | 32 |
|
33 |
uses org.graalvm.compiler.code.DisassemblerProvider; |
|
34 |
uses org.graalvm.compiler.core.match.MatchStatementSet; |
|
50903
0221f6a72e4b
8203504: [Graal] org.graalvm.compiler.debug.test.DebugContextTest fails with java.util.ServiceConfigurationError
rraghavan
parents:
50182
diff
changeset
|
35 |
uses org.graalvm.compiler.debug.DebugHandlersFactory; |
43972 | 36 |
uses org.graalvm.compiler.debug.TTYStreamProvider; |
37 |
uses org.graalvm.compiler.hotspot.CompilerConfigurationFactory; |
|
38 |
uses org.graalvm.compiler.hotspot.HotSpotBackendFactory; |
|
46553 | 39 |
uses org.graalvm.compiler.hotspot.HotSpotCodeCacheListener; |
49873 | 40 |
uses org.graalvm.compiler.hotspot.HotSpotGraalManagementRegistration; |
43972 | 41 |
uses org.graalvm.compiler.nodes.graphbuilderconf.NodeIntrinsicPluginFactory; |
52475
9887f04b0e0f
8213588: compiler/graalunit/HotspotTest.java fails after 8213348 / 8211781 were pushed
dlong
parents:
51736
diff
changeset
|
42 |
uses org.graalvm.compiler.phases.common.jmx.HotSpotMBeanOperationProvider; |
51436 | 43 |
uses org.graalvm.compiler.serviceprovider.JMXService; |
43972 | 44 |
|
49873 | 45 |
exports jdk.internal.vm.compiler.collections to jdk.internal.vm.compiler.management; |
43972 | 46 |
exports org.graalvm.compiler.api.directives to jdk.aot; |
47 |
exports org.graalvm.compiler.api.runtime to jdk.aot; |
|
48 |
exports org.graalvm.compiler.api.replacements to jdk.aot; |
|
49 |
exports org.graalvm.compiler.asm.amd64 to jdk.aot; |
|
50104 | 50 |
exports org.graalvm.compiler.asm.aarch64 to jdk.aot; |
43972 | 51 |
exports org.graalvm.compiler.bytecode to jdk.aot; |
52 |
exports org.graalvm.compiler.code to jdk.aot; |
|
53 |
exports org.graalvm.compiler.core to jdk.aot; |
|
49873 | 54 |
exports org.graalvm.compiler.core.common to |
55 |
jdk.aot, |
|
56 |
jdk.internal.vm.compiler.management; |
|
43972 | 57 |
exports org.graalvm.compiler.core.target to jdk.aot; |
49873 | 58 |
exports org.graalvm.compiler.debug to |
59 |
jdk.aot, |
|
60 |
jdk.internal.vm.compiler.management; |
|
43972 | 61 |
exports org.graalvm.compiler.graph to jdk.aot; |
47557
8b2054b7d02c
8182701: Modify JVMCI to allow Graal Compiler to expose platform MBean
jtulach
parents:
47216
diff
changeset
|
62 |
exports org.graalvm.compiler.hotspot to |
8b2054b7d02c
8182701: Modify JVMCI to allow Graal Compiler to expose platform MBean
jtulach
parents:
47216
diff
changeset
|
63 |
jdk.aot, |
8b2054b7d02c
8182701: Modify JVMCI to allow Graal Compiler to expose platform MBean
jtulach
parents:
47216
diff
changeset
|
64 |
jdk.internal.vm.compiler.management; |
43972 | 65 |
exports org.graalvm.compiler.hotspot.meta to jdk.aot; |
66 |
exports org.graalvm.compiler.hotspot.replacements to jdk.aot; |
|
67 |
exports org.graalvm.compiler.hotspot.stubs to jdk.aot; |
|
68 |
exports org.graalvm.compiler.hotspot.word to jdk.aot; |
|
69 |
exports org.graalvm.compiler.java to jdk.aot; |
|
70 |
exports org.graalvm.compiler.lir.asm to jdk.aot; |
|
71 |
exports org.graalvm.compiler.lir.phases to jdk.aot; |
|
72 |
exports org.graalvm.compiler.nodes to jdk.aot; |
|
73 |
exports org.graalvm.compiler.nodes.graphbuilderconf to jdk.aot; |
|
49873 | 74 |
exports org.graalvm.compiler.options to |
75 |
jdk.aot, |
|
76 |
jdk.internal.vm.compiler.management; |
|
43972 | 77 |
exports org.graalvm.compiler.phases to jdk.aot; |
51736 | 78 |
exports org.graalvm.compiler.phases.common.jmx to jdk.internal.vm.compiler.management; |
43972 | 79 |
exports org.graalvm.compiler.phases.tiers to jdk.aot; |
46640 | 80 |
exports org.graalvm.compiler.printer to jdk.aot; |
43972 | 81 |
exports org.graalvm.compiler.runtime to jdk.aot; |
82 |
exports org.graalvm.compiler.replacements to jdk.aot; |
|
49873 | 83 |
exports org.graalvm.compiler.serviceprovider to |
84 |
jdk.aot, |
|
85 |
jdk.internal.vm.compiler.management; |
|
43972 | 86 |
exports org.graalvm.compiler.word to jdk.aot; |
49873 | 87 |
exports jdk.internal.vm.compiler.word to jdk.aot; |
43972 | 88 |
} |