# HG changeset patch # User Thomas Wuerthinger # Date 1339267254 -7200 # Node ID 883c11613de5bf63cf7ebd4378c6e0c0f9237bc2 # Parent 16a0847d754025dcd4869f6bd41378ad61f0aa8a Updated package documentation. diff -r 16a0847d7540 -r 883c11613de5 graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/package-info.java --- a/graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/package-info.java Sat Jun 09 20:35:39 2012 +0200 +++ b/graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/package-info.java Sat Jun 09 20:40:54 2012 +0200 @@ -21,27 +21,7 @@ * questions. */ /** - * 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 - * {@link com.oracle.graal.compiler.graphbuilder.Bytecodes}. - * - * The target hardware architecture is represented by {@link com.oracle.graal.api.code.Architecture} and the specific target machine - * environment for a compiler instance is represented by {@link com.oracle.graal.api.code.TargetDescription}. - *

- * A {@code CiResult} encapsulates - * {@linkplain com.oracle.max.cri.ci.CiStatistics compilation statistics}, possible {@linkplain com.oracle.graal.api.code.BailoutException error state} - * and the {@linkplain com.oracle.graal.api.code.CompilationResult compiled code and metadata}. - * {@link com.oracle.graal.api.code.BytecodePosition} and {@link com.oracle.graal.api.code.DebugInfo} provide detailed information to the - * runtime to support debugging and deoptimization of the compiled code. - *

- * The compiler manipulates {@link com.oracle.graal.api.meta.Value} instances that have a {@link com.oracle.graal.api.meta.Kind}, and are - * immutable. A concrete {@link com.oracle.graal.api.meta.Value value} is one of the following subclasses: - *

+ * Package that defines the interface between a Java application that wants to install code and the runtime. */ package com.oracle.graal.api.code; diff -r 16a0847d7540 -r 883c11613de5 graal/com.oracle.graal.api.meta/src/com/oracle/graal/api/meta/package-info.java --- a/graal/com.oracle.graal.api.meta/src/com/oracle/graal/api/meta/package-info.java Sat Jun 09 20:35:39 2012 +0200 +++ b/graal/com.oracle.graal.api.meta/src/com/oracle/graal/api/meta/package-info.java Sat Jun 09 20:40:54 2012 +0200 @@ -21,6 +21,6 @@ * questions. */ /** - * Package for interfaces that allow access to the meta data of the virtual machine. + * Package that defines the interface between a runtime and a Java application that wants to access meta information. */ package com.oracle.graal.api.meta;