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 2006/04/05 07:15:06 UTC

svn commit: r391504 - /incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/method.h

Author: dlydick
Date: Tue Apr  4 22:15:04 2006
New Revision: 391504

URL: http://svn.apache.org/viewcvs?rev=391504&view=rev
Log:
Added method_implied_opcode_from_XXX() functions.

Simplified method_parm_size() function.

Minor comment changes.

Modified:
    incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/method.h

Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/method.h
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/method.h?rev=391504&r1=391503&r2=391504&view=diff
==============================================================================
--- incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/method.h (original)
+++ incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/method.h Tue Apr  4 22:15:04 2006
@@ -87,8 +87,17 @@
                                     jvm_constant_pool_index mthdescidx);
 
 extern rint method_parm_size(jvm_class_index         clsidx,
-                             jvm_constant_pool_index mthdescidx,
-                             u2                      access_flags);
+                             jvm_constant_pool_index mthdescidx);
+
+extern jvm_virtual_opcode method_implied_opcode_from_prchar(
+                                        rchar            *mthname,
+                                        jvm_access_flags  access_flags);
+
+extern jvm_virtual_opcode method_implied_opcode_from_cp_entry_pcfs(
+                                  ClassFile              *pcfs,
+                                  jvm_constant_pool_index mthnameidx,
+                                  jvm_access_flags        access_flags);
+
 #endif /* _method_h_included_ */
 
 /* EOF */