comparison graal/com.oracle.max.cri/src/com/oracle/max/cri/ci/package-info.java @ 5060:4ed4295ce15f

Update import statements.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 08 Mar 2012 19:11:12 +0100
parents 430b5db3e6f8
children d89b20486d87
comparison
equal deleted inserted replaced
5059:ed559a528128 5060:4ed4295ce15f
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 */ 22 */
23 /** 23 /**
24 * The compiler-provided part of the bi-directional interface between the compiler and the runtime system of a virtual machine for the instruction set defined in 24 * The compiler-provided part of the bi-directional interface between the compiler and the runtime system of a virtual machine for the instruction set defined in
25 * {@link com.oracle.max.graal.compiler.graphbuilder.Bytecodes}. 25 * {@link com.oracle.graal.compiler.graphbuilder.Bytecodes}.
26 * 26 *
27 * The target hardware architecture is represented by {@link com.oracle.max.cri.ci.CiArchitecture} and the specific target machine 27 * The target hardware architecture is represented by {@link com.oracle.max.cri.ci.CiArchitecture} and the specific target machine
28 * environment for a compiler instance is represented by {@link com.oracle.max.cri.ci.CiTarget}. 28 * environment for a compiler instance is represented by {@link com.oracle.max.cri.ci.CiTarget}.
29 * <p> 29 * <p>
30 * A {@code CiResult} encapsulates 30 * A {@code CiResult} encapsulates
38 * <ul> 38 * <ul>
39 * <li>{@link com.oracle.max.cri.ci.CiConstant}: a constant value. 39 * <li>{@link com.oracle.max.cri.ci.CiConstant}: a constant value.
40 * <li>{@link com.oracle.max.cri.ci.CiRegisterValue}: a value stored in a {@linkplain com.oracle.max.cri.ci.CiRegister target machine register}. 40 * <li>{@link com.oracle.max.cri.ci.CiRegisterValue}: a value stored in a {@linkplain com.oracle.max.cri.ci.CiRegister target machine register}.
41 * <li>{@link com.oracle.max.cri.ci.CiStackSlot}: a spill slot or an outgoing stack-based argument in a method's frame. 41 * <li>{@link com.oracle.max.cri.ci.CiStackSlot}: a spill slot or an outgoing stack-based argument in a method's frame.
42 * <li>{@link com.oracle.max.cri.ci.CiAddress}: an address in target machine memory. 42 * <li>{@link com.oracle.max.cri.ci.CiAddress}: an address in target machine memory.
43 * <li>{@link com.oracle.max.graal.compiler.lir.CiVariable}: a value (cf. virtual register) that is yet to be bound to a target machine location (physical register or memory address). 43 * <li>{@link com.oracle.graal.compiler.lir.CiVariable}: a value (cf. virtual register) that is yet to be bound to a target machine location (physical register or memory address).
44 *</ul> 44 *</ul>
45 */ 45 */
46 package com.oracle.max.cri.ci; 46 package com.oracle.max.cri.ci;
47 47