author | jlahoda |
Thu, 28 Jun 2018 15:18:17 +0200 | |
changeset 50883 | 5d7442ac179a |
parent 50182 | 28cd297a1086 |
child 50903 | 0221f6a72e4b |
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; |
|
35 |
uses org.graalvm.compiler.debug.TTYStreamProvider; |
|
36 |
uses org.graalvm.compiler.hotspot.CompilerConfigurationFactory; |
|
37 |
uses org.graalvm.compiler.hotspot.HotSpotBackendFactory; |
|
46553 | 38 |
uses org.graalvm.compiler.hotspot.HotSpotCodeCacheListener; |
49873 | 39 |
uses org.graalvm.compiler.hotspot.HotSpotGraalManagementRegistration; |
43972 | 40 |
uses org.graalvm.compiler.nodes.graphbuilderconf.NodeIntrinsicPluginFactory; |
50182
28cd297a1086
8202305: [Graal] org.graalvm.compiler.core.test.GraphResetDebugTest fails with java.util.ServiceConfigurationError
dlong
parents:
50104
diff
changeset
|
41 |
uses org.graalvm.compiler.serviceprovider.GraalServices.JMXService; |
43972 | 42 |
|
49873 | 43 |
exports jdk.internal.vm.compiler.collections to jdk.internal.vm.compiler.management; |
43972 | 44 |
exports org.graalvm.compiler.api.directives to jdk.aot; |
45 |
exports org.graalvm.compiler.api.runtime to jdk.aot; |
|
46 |
exports org.graalvm.compiler.api.replacements to jdk.aot; |
|
47 |
exports org.graalvm.compiler.asm.amd64 to jdk.aot; |
|
50104 | 48 |
exports org.graalvm.compiler.asm.aarch64 to jdk.aot; |
43972 | 49 |
exports org.graalvm.compiler.bytecode to jdk.aot; |
50 |
exports org.graalvm.compiler.code to jdk.aot; |
|
51 |
exports org.graalvm.compiler.core to jdk.aot; |
|
49873 | 52 |
exports org.graalvm.compiler.core.common to |
53 |
jdk.aot, |
|
54 |
jdk.internal.vm.compiler.management; |
|
43972 | 55 |
exports org.graalvm.compiler.core.target to jdk.aot; |
49873 | 56 |
exports org.graalvm.compiler.debug to |
57 |
jdk.aot, |
|
58 |
jdk.internal.vm.compiler.management; |
|
43972 | 59 |
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
|
60 |
exports org.graalvm.compiler.hotspot to |
8b2054b7d02c
8182701: Modify JVMCI to allow Graal Compiler to expose platform MBean
jtulach
parents:
47216
diff
changeset
|
61 |
jdk.aot, |
8b2054b7d02c
8182701: Modify JVMCI to allow Graal Compiler to expose platform MBean
jtulach
parents:
47216
diff
changeset
|
62 |
jdk.internal.vm.compiler.management; |
43972 | 63 |
exports org.graalvm.compiler.hotspot.meta to jdk.aot; |
64 |
exports org.graalvm.compiler.hotspot.replacements to jdk.aot; |
|
65 |
exports org.graalvm.compiler.hotspot.stubs to jdk.aot; |
|
66 |
exports org.graalvm.compiler.hotspot.word to jdk.aot; |
|
67 |
exports org.graalvm.compiler.java to jdk.aot; |
|
68 |
exports org.graalvm.compiler.lir.asm to jdk.aot; |
|
69 |
exports org.graalvm.compiler.lir.phases to jdk.aot; |
|
70 |
exports org.graalvm.compiler.nodes to jdk.aot; |
|
71 |
exports org.graalvm.compiler.nodes.graphbuilderconf to jdk.aot; |
|
49873 | 72 |
exports org.graalvm.compiler.options to |
73 |
jdk.aot, |
|
74 |
jdk.internal.vm.compiler.management; |
|
43972 | 75 |
exports org.graalvm.compiler.phases to jdk.aot; |
76 |
exports org.graalvm.compiler.phases.tiers to jdk.aot; |
|
46640 | 77 |
exports org.graalvm.compiler.printer to jdk.aot; |
43972 | 78 |
exports org.graalvm.compiler.runtime to jdk.aot; |
79 |
exports org.graalvm.compiler.replacements to jdk.aot; |
|
49873 | 80 |
exports org.graalvm.compiler.serviceprovider to |
81 |
jdk.aot, |
|
82 |
jdk.internal.vm.compiler.management; |
|
43972 | 83 |
exports org.graalvm.compiler.word to jdk.aot; |
49873 | 84 |
exports jdk.internal.vm.compiler.word to jdk.aot; |
43972 | 85 |
} |