< prev index next >

src/jdk.vm.ci/share/classes/module-info.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 22,37 **** * or visit www.oracle.com if you need additional information or have any * questions. */ module jdk.vm.ci { ! uses jdk.vm.ci.hotspot.HotSpotVMEventListener; ! uses jdk.vm.ci.hotspot.HotSpotJVMCIBackendFactory; ! uses jdk.vm.ci.runtime.JVMCICompilerFactory; ! provides jdk.vm.ci.hotspot.HotSpotJVMCIBackendFactory with ! jdk.vm.ci.hotspot.aarch64.AArch64HotSpotJVMCIBackendFactory; ! provides jdk.vm.ci.hotspot.HotSpotJVMCIBackendFactory with ! jdk.vm.ci.hotspot.amd64.AMD64HotSpotJVMCIBackendFactory; ! provides jdk.vm.ci.hotspot.HotSpotJVMCIBackendFactory with ! jdk.vm.ci.hotspot.sparc.SPARCHotSpotJVMCIBackendFactory; } --- 22,41 ---- * or visit www.oracle.com if you need additional information or have any * questions. */ module jdk.vm.ci { ! exports jdk.vm.ci.code to jdk.vm.ci.hotspot; ! exports jdk.vm.ci.code.site to jdk.vm.ci.hotspot; ! exports jdk.vm.ci.code.stack to jdk.vm.ci.hotspot; ! exports jdk.vm.ci.common to jdk.vm.ci.hotspot; ! exports jdk.vm.ci.inittimer to jdk.vm.ci.hotspot; ! exports jdk.vm.ci.meta to jdk.vm.ci.hotspot; ! exports jdk.vm.ci.runtime to jdk.vm.ci.hotspot; ! exports jdk.vm.ci.services to jdk.vm.ci.hotspot; ! ! exports jdk.vm.ci.aarch64 to jdk.vm.ci.hotspot; ! exports jdk.vm.ci.amd64 to jdk.vm.ci.hotspot; ! exports jdk.vm.ci.sparc to jdk.vm.ci.hotspot; ! uses jdk.vm.ci.runtime.JVMCICompilerFactory; }
< prev index next >