dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[dotgnu-pnet-commits] libjit ChangeLog jit/jit-insn.c jit/jit-rules-i...


From: Aleksey Demakov
Subject: [dotgnu-pnet-commits] libjit ChangeLog jit/jit-insn.c jit/jit-rules-i...
Date: Mon, 12 Feb 2007 21:38:45 +0000

CVSROOT:        /sources/dotgnu-pnet
Module name:    libjit
Changes by:     Aleksey Demakov <avd>   07/02/12 21:38:45

Modified files:
        .              : ChangeLog 
        jit            : jit-insn.c jit-rules-interp.c 
        jitplus        : jit-plus-function.cpp jit-plus-value.cpp 

Log message:
        fix texinfo comments

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/libjit/ChangeLog?cvsroot=dotgnu-pnet&r1=1.305&r2=1.306
http://cvs.savannah.gnu.org/viewcvs/libjit/jit/jit-insn.c?cvsroot=dotgnu-pnet&r1=1.50&r2=1.51
http://cvs.savannah.gnu.org/viewcvs/libjit/jit/jit-rules-interp.c?cvsroot=dotgnu-pnet&r1=1.30&r2=1.31
http://cvs.savannah.gnu.org/viewcvs/libjit/jitplus/jit-plus-function.cpp?cvsroot=dotgnu-pnet&r1=1.11&r2=1.12
http://cvs.savannah.gnu.org/viewcvs/libjit/jitplus/jit-plus-value.cpp?cvsroot=dotgnu-pnet&r1=1.1.1.1&r2=1.2

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/dotgnu-pnet/libjit/ChangeLog,v
retrieving revision 1.305
retrieving revision 1.306
diff -u -b -r1.305 -r1.306
--- ChangeLog   12 Feb 2007 21:24:55 -0000      1.305
+++ ChangeLog   12 Feb 2007 21:38:44 -0000      1.306
@@ -4,6 +4,10 @@
        automake --add-missing as well as auto_gen.sh add an up-to-date
        version of it.
 
+       * jit/jit-insn.c, jit/jit-rules-interp.c: 
+       * jitplus/jit-plus-value.cpp, jitplus/jit-plus-function.cpp: fix
+       texinfo comments.
+
 2007-02-12  Aleksey Demakov  <address@hidden>
 
        * jit/jit-dump.c (jit_dump_function): flush the output stream upon

Index: jit/jit-insn.c
===================================================================
RCS file: /sources/dotgnu-pnet/libjit/jit/jit-insn.c,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -b -r1.50 -r1.51
--- jit/jit-insn.c      15 Sep 2006 16:17:21 -0000      1.50
+++ jit/jit-insn.c      12 Feb 2007 21:38:45 -0000      1.51
@@ -4069,8 +4069,8 @@
 }
 
 /*@
- * @deftypefun jit_insn_jump_table(jit_function_t func, jit_value_t value, 
jit_label_t *labels, unsigned int num_labels)
- *
+ * @deftypefun int jit_insn_jump_table (jit_function_t func, jit_value_t 
value, {jit_label_t *} labels, unsigned int num_labels)
+ * Branch to a label from the @code{labels} table. The @code{value} is the 
index of the label.
  * @end deftypefun
 @*/
 int jit_insn_jump_table
@@ -8013,7 +8013,6 @@
 int jit_insn_mark_offset(jit_function_t func, jit_int offset)
 {
 #if 1
-/*!USE_NEW_REG_ALLOC*/
        if(!jit_insn_new_block(func))
        {
                return 0;

Index: jit/jit-rules-interp.c
===================================================================
RCS file: /sources/dotgnu-pnet/libjit/jit/jit-rules-interp.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -b -r1.30 -r1.31
--- jit/jit-rules-interp.c      16 Oct 2006 02:27:24 -0000      1.30
+++ jit/jit-rules-interp.c      12 Feb 2007 21:38:45 -0000      1.31
@@ -846,7 +846,7 @@
 }
 
 /*@
- * @deftypefun _jit_gen_spill_top (jit_gencode_t gen, int reg, jit_value_t 
value, int pop)
+ * @deftypefun void _jit_gen_spill_top (jit_gencode_t gen, int reg, 
jit_value_t value, int pop)
  * Generate instructions to spill the top stack register to the local
  * variable frame. The @code{pop} argument indicates if the top register
  * is popped from the stack.

Index: jitplus/jit-plus-function.cpp
===================================================================
RCS file: /sources/dotgnu-pnet/libjit/jitplus/jit-plus-function.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- jitplus/jit-plus-function.cpp       4 Oct 2004 02:26:41 -0000       1.11
+++ jitplus/jit-plus-function.cpp       12 Feb 2007 21:38:45 -0000      1.12
@@ -52,7 +52,7 @@
 jit_type_t const jit_function::end_params = (jit_type_t)0;
 
 /*@
- * @defop Constructor jit_function jit_function ({jit_context&} context, 
jit_type_t signature)
+ * @defop Constructor jit_function jit_function ({jit_context& context}, 
jit_type_t signature)
  * Constructs a new function handler with the specified @code{signature} in
  * the given @code{context}.  It then calls @code{create(signature)} to
  * create the actual function.
@@ -69,7 +69,7 @@
 }
 
 /*@
- * @defop Constructor jit_function jit_function ({jit_context&} context)
+ * @defop Constructor jit_function jit_function ({jit_context& context})
  * Constructs a new function handler in the specified @code{context}.
  * The actual function is not created until you call @code{create()}.
  * @end defop

Index: jitplus/jit-plus-value.cpp
===================================================================
RCS file: /sources/dotgnu-pnet/libjit/jitplus/jit-plus-value.cpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -b -r1.1.1.1 -r1.2
--- jitplus/jit-plus-value.cpp  30 Apr 2004 23:30:37 -0000      1.1.1.1
+++ jitplus/jit-plus-value.cpp  12 Feb 2007 21:38:45 -0000      1.2
@@ -35,7 +35,7 @@
 Construct a value by wrapping up a raw C @code{jit_value_t} object.
 @end defop
 
address@hidden Constructor jit_value jit_value ({const jit_value&} value)
address@hidden Constructor jit_value jit_value ({const jit_value& value})
 Create a copy of @code{value}.
 @end defop
 
@@ -44,7 +44,7 @@
 value alone.
 @end defop
 
address@hidden Operator jit_value {jit_value& operator=} ({const jit_value&} 
value)
address@hidden Operator jit_value {jit_value& operator=} ({const jit_value& 
value})
 Copy @code{jit_value} objects.
 @end defop
 
@@ -92,24 +92,24 @@
 Extract the constant stored in this value.
 @end deftypemethod
 
address@hidden Operator jit_value {jit_value operator+} ({const jit_value&} 
value1, {const jit_value&} value2)
address@hidden Operator jit_value {jit_value operator-} ({const jit_value&} 
value1, {const jit_value&} value2)
address@hidden Operator jit_value {jit_value operator*} ({const jit_value&} 
value1, {const jit_value&} value2)
address@hidden Operator jit_value {jit_value operator/} ({const jit_value&} 
value1, {const jit_value&} value2)
address@hidden Operator jit_value {jit_value operator%} ({const jit_value&} 
value1, {const jit_value&} value2)
address@hidden Operator jit_value {jit_value operator-} ({const jit_value&} 
value1)
address@hidden Operator jit_value {jit_value operator&} ({const jit_value&} 
value1, {const jit_value&} value2)
address@hidden Operator jit_value {jit_value operator|} ({const jit_value&} 
value1, {const jit_value&} value2)
address@hidden Operator jit_value {jit_value operator^} ({const jit_value&} 
value1, {const jit_value&} value2)
address@hidden Operator jit_value {jit_value operator~} ({const jit_value&} 
value1)
address@hidden Operator jit_value {jit_value operator<<} ({const jit_value&} 
value1, {const jit_value&} value2)
address@hidden Operator jit_value {jit_value operator>>} ({const jit_value&} 
value1, {const jit_value&} value2)
address@hidden Operator jit_value {jit_value operator==} ({const jit_value&} 
value1, {const jit_value&} value2)
address@hidden Operator jit_value {jit_value operator!=} ({const jit_value&} 
value1, {const jit_value&} value2)
address@hidden Operator jit_value {jit_value operator<} ({const jit_value&} 
value1, {const jit_value&} value2)
address@hidden Operator jit_value {jit_value operator<=} ({const jit_value&} 
value1, {const jit_value&} value2)
address@hidden Operator jit_value {jit_value operator>} ({const jit_value&} 
value1, {const jit_value&} value2)
address@hidden Operator jit_value {jit_value operator>=} ({const jit_value&} 
value1, {const jit_value&} value2)
address@hidden Operator jit_value {jit_value operator+} ({const jit_value& 
value1}, {const jit_value& value2})
address@hidden Operator jit_value {jit_value operator-} ({const jit_value& 
value1}, {const jit_value& value2})
address@hidden Operator jit_value {jit_value operator*} ({const jit_value& 
value1}, {const jit_value& value2})
address@hidden Operator jit_value {jit_value operator/} ({const jit_value& 
value1}, {const jit_value& value2})
address@hidden Operator jit_value {jit_value operator%} ({const jit_value& 
value1}, {const jit_value& value2})
address@hidden Operator jit_value {jit_value operator-} ({const jit_value& 
value1})
address@hidden Operator jit_value {jit_value operator&} ({const jit_value& 
value1}, {const jit_value& value2})
address@hidden Operator jit_value {jit_value operator|} ({const jit_value& 
value1}, {const jit_value& value2})
address@hidden Operator jit_value {jit_value operator^} ({const jit_value& 
value1}, {const jit_value& value2})
address@hidden Operator jit_value {jit_value operator~} ({const jit_value& 
value1})
address@hidden Operator jit_value {jit_value operator<<} ({const jit_value& 
value1}, {const jit_value& value2})
address@hidden Operator jit_value {jit_value operator>>} ({const jit_value& 
value1}, {const jit_value& value2})
address@hidden Operator jit_value {jit_value operator==} ({const jit_value& 
value1}, {const jit_value& value2})
address@hidden Operator jit_value {jit_value operator!=} ({const jit_value& 
value1}, {const jit_value& value2})
address@hidden Operator jit_value {jit_value operator<} ({const jit_value& 
value1}, {const jit_value& value2})
address@hidden Operator jit_value {jit_value operator<=} ({const jit_value& 
value1}, {const jit_value& value2})
address@hidden Operator jit_value {jit_value operator>} ({const jit_value& 
value1}, {const jit_value& value2})
address@hidden Operator jit_value {jit_value operator>=} ({const jit_value& 
value1}, {const jit_value& value2})
 Generate an arithmetic, bitwise, or comparison instruction based on
 one or two @code{jit_value} objects.  These operators are shortcuts
 for calling @code{insn_add}, @code{insn_sub}, etc on the




reply via email to

[Prev in Thread] Current Thread [Next in Thread]