comparison graal/com.oracle.max.cri/src/com/oracle/max/cri/package-info.java @ 4199:aaac4894175c

Renamed cri packages from sun to oracle.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Tue, 03 Jan 2012 16:29:28 +0100
parents 8c9c0e1eaab1
children 4ed4295ce15f
comparison
equal deleted inserted replaced
4198:8c9c0e1eaab1 4199:aaac4894175c
24 * A virtual machine compiler-runtime interface (CRI). 24 * A virtual machine compiler-runtime interface (CRI).
25 * <p> 25 * <p>
26 * Specifically, this package defines an interface between the compiler and the runtime system of a virtual machine for 26 * Specifically, this package defines an interface between the compiler and the runtime system of a virtual machine for
27 * the instruction set defined in {@link com.oracle.max.graal.compiler.graphbuilder.Bytecodes}. The interface has three components: 27 * the instruction set defined in {@link com.oracle.max.graal.compiler.graphbuilder.Bytecodes}. The interface has three components:
28 * <ol> 28 * <ol>
29 * <li>the {@link com.sun.cri.ci compiler-provided interface} that must be used by the runtime. 29 * <li>the {@link com.oracle.max.cri.ci compiler-provided interface} that must be used by the runtime.
30 * <li>the {@link com.sun.cri.ri runtime-provided interface} that must be used by the compiler. 30 * <li>the {@link com.oracle.max.cri.ri runtime-provided interface} that must be used by the compiler.
31 * <li>the {@link com.sun.cri.xir XIR interface} for translating object operations. 31 * <li>the {@link com.oracle.max.cri.xir XIR interface} for translating object operations.
32 * </ol> 32 * </ol>
33 * 33 *
34 * The interface is independent of any particular compiler or runtime implementation. 34 * The interface is independent of any particular compiler or runtime implementation.
35 * <p> 35 * <p>
36 * For more details see <a href="http://wikis.sun.com/download/attachments/173802383/vee2010.pdf">Improving Compiler-Runtime Separation with XIR</a>. 36 * For more details see <a href="http://wikis.sun.com/download/attachments/173802383/vee2010.pdf">Improving Compiler-Runtime Separation with XIR</a>.