comparison graal/com.oracle.max.cri/src/com/oracle/max/cri/ci/package-info.java @ 5502:13aee5aba8cc

Moved RiConstant to cri.ri package.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 07 Jun 2012 17:07:42 +0200
parents d89b20486d87
children 438ab53efdd0
comparison
equal deleted inserted replaced
5501:d89b20486d87 5502:13aee5aba8cc
34 * runtime to support debugging and deoptimization of the compiled code. 34 * runtime to support debugging and deoptimization of the compiled code.
35 * <p> 35 * <p>
36 * The compiler manipulates {@link com.oracle.max.cri.ci.CiValue} instances that have a {@link com.oracle.max.cri.ci.CiKind}, and are 36 * The compiler manipulates {@link com.oracle.max.cri.ci.CiValue} instances that have a {@link com.oracle.max.cri.ci.CiKind}, and are
37 * immutable. A concrete {@link com.oracle.max.cri.ci.CiValue value} is one of the following subclasses: 37 * immutable. A concrete {@link com.oracle.max.cri.ci.CiValue value} is one of the following subclasses:
38 * <ul> 38 * <ul>
39 * <li>{@link com.oracle.max.cri.ci.RiConstant}: a constant value. 39 * <li>{@link com.oracle.max.cri.ri.RiConstant}: 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.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>