You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by dl...@apache.org on 2007/08/12 22:31:59 UTC

svn commit: r565136 - in /harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src: attribute.c cfmsgs.c jrtypes.c jrtypes.h method.c object.h

Author: dlydick
Date: Sun Aug 12 13:31:58 2007
New Revision: 565136

URL: http://svn.apache.org/viewvc?view=rev&rev=565136
Log:
Minor comment changes.

Modified:
    harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/attribute.c
    harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/cfmsgs.c
    harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/jrtypes.c
    harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/jrtypes.h
    harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/method.c
    harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/object.h

Modified: harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/attribute.c
URL: http://svn.apache.org/viewvc/harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/attribute.c?view=diff&rev=565136&r1=565135&r2=565136
==============================================================================
--- harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/attribute.c (original)
+++ harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/attribute.c Sun Aug 12 13:31:58 2007
@@ -70,7 +70,7 @@
  *                  in field, method, or class.
  *
  *
- * @returns Attribute table index ofthie attribute or
+ * @returns Attribute table index of the attribute or
  *        @link #jvm_attribute_index_bad jvm_attribute_index_bad@endlink
  *          if not found.
  *
@@ -121,7 +121,7 @@
  *                  (e.g. LOCAL_CODE_ATTRIBUTE).
  *
  *
- * @returns Attribute table index ofthie attribute or
+ * @returns Attribute table index of the attribute or
  *        @link #jvm_attribute_index_bad jvm_attribute_index_bad@endlink
  *          if not found.
  *

Modified: harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/cfmsgs.c
URL: http://svn.apache.org/viewvc/harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/cfmsgs.c?view=diff&rev=565136&r1=565135&r2=565136
==============================================================================
--- harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/cfmsgs.c (original)
+++ harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/cfmsgs.c Sun Aug 12 13:31:58 2007
@@ -102,13 +102,13 @@
         return;
     }
 
-    rchar *msg_hdr = HEAP_GET_DATA(JVMCFG_STDIO_BFR, rfalse);
+    rchar   *msg_hdr = HEAP_GET_DATA(JVMCFG_STDIO_BFR, rfalse);
 
     u1 tag = CP_TAG(pcfs, cpidx);
 
     /*
      * Explicitly define length calculations of " %*.*s " constructions
-     * @em outside of the sprintf/fprintf that uses it to simplify
+     * @e outside of the sprintf/fprintf that uses it to simplify
      * the calling declarations.  Should make them somewhat easier
      * to read.  Use @c @b star_len for one " %*.*s " syntax,
      * and use both @c @b star_len and @c @b star_len2

Modified: harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/jrtypes.c
URL: http://svn.apache.org/viewvc/harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/jrtypes.c?view=diff&rev=565136&r1=565135&r2=565136
==============================================================================
--- harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/jrtypes.c (original)
+++ harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/jrtypes.c Sun Aug 12 13:31:58 2007
@@ -3,7 +3,7 @@
  *
  * @brief Java architecture types convenient for C/C++ source code.
  *
- * Full escriptions of all of the following variables
+ * Full descriptions of all of the following variables
  * may be found in @link jvm/src/jrtypes.h jrtypes.h@endlink
 
  *

Modified: harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/jrtypes.h
URL: http://svn.apache.org/viewvc/harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/jrtypes.h?view=diff&rev=565136&r1=565135&r2=565136
==============================================================================
--- harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/jrtypes.h (original)
+++ harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/jrtypes.h Sun Aug 12 13:31:58 2007
@@ -36,7 +36,7 @@
  * be restricted to system calls and library references such as
  * @c @b open(2) or @c @b strcmp(3), respectively-- also the command
  * line @c @b main() parameters, which get propagated into
- * @link #argv_helpmsg() argv_XXX()@endlink functions.
+ * @link #jvmargv_helpmsg() jvmargv_XXX()@endlink functions, etc.
  * Let the compiler perform any typing and sizing, which is unlikely,
  * but keep @e all other usages to the Java @c @b jTYPEDEF and real
  * machine @c @b rTYPEDEF representations.  This single exception should

Modified: harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/method.c
URL: http://svn.apache.org/viewvc/harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/method.c?view=diff&rev=565136&r1=565135&r2=565136
==============================================================================
--- harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/method.c (original)
+++ harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/method.c Sun Aug 12 13:31:58 2007
@@ -258,7 +258,11 @@
  * creating a stack frame for a virtual method call to compare against
  * that method's local variable requirements, which must be equal or
  * greater than the parameter block requirements.  (Otherwise a
- * @b VerifyError occurs.)
+ * @b VerifyError occurs.)  Remember that both
+ * @link #jdouble jdouble@endlink and a @link #jlong jlong@endlink
+ * data types take two words of stack, where all others take one
+ * word, including data types that are physically smaller than a
+ * word of the stack, namely the size of @link #jint jint@endlink.
  *
  * @param clsidx       Class table index of method to examine.
  *

Modified: harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/object.h
URL: http://svn.apache.org/viewvc/harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/object.h?view=diff&rev=565136&r1=565135&r2=565136
==============================================================================
--- harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/object.h (original)
+++ harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/object.h Sun Aug 12 13:31:58 2007
@@ -42,7 +42,7 @@
  *            stored in @link robject#object_instance_field_data
               object_instance_field_data@endlink.@link
               jvalue#_jobjhash _jobjhash@endlink.  Notice that a
- *            @c @b java.lang.Integer is @em not an (int), and
+ *            @c @b java.lang.Integer is @e not an (int), and
  *            has its several fields stored in this array as their
  *            normal types.
  *
@@ -309,7 +309,7 @@
                                  * the @c @b super object.
                                  * @link #JVMCFG_NULL_OBJECT
                                    JVMCFG_NULL_OBJECT@endlink indicates
-                                 * that the parent class is a
+                                 * that this class is a
                                  * @c @b java.lang.Object
                                  */
 
@@ -330,10 +330,9 @@
                                  */
 
     jvalue *object_instance_field_data; /**< Object instance data
-                                 * data contents array[].  The
-                                 * associated field lookup table is
-                                 * located in its rclass table entry
-                                 * @link
+                                 * contents array[].  The associated
+                                 * field lookup table is located in
+                                 * its rclass table entry @link
                                    #rclass.object_instance_field_lookup
                              rclass.object_instance_field_lookup@endlink