* COUNT: Removed.
authortwisti <none@none>
Thu, 22 Dec 2005 14:00:06 +0000 (14:00 +0000)
committertwisti <none@none>
Thu, 22 Dec 2005 14:00:06 +0000 (14:00 +0000)
src/vm/jit/i386/emitfuncs.c
src/vm/jit/stack.h

index e4911ae51a5ef6c782230fca19827e718ae11c28..8c4b9f023b0169f65dc6339977301a532f93c5f7 100644 (file)
@@ -26,7 +26,7 @@
 
    Authors: Christian Thalinger
 
-   $Id: emitfuncs.c 3227 2005-09-19 14:03:36Z twisti $
+   $Id: emitfuncs.c 3994 2005-12-22 14:00:06Z twisti $
 
 */
 
 #include "vm/jit/i386/codegen.h"
 
 
-#ifdef STATISTICS
-#define COUNT(a) (a)++
-#else
-#define COUNT(a)
-#endif
-
-
 void i386_emit_ialu(codegendata *cd, s4 alu_op, stackptr src, instruction *iptr)
 {
        if (iptr->dst->flags & INMEMORY) {
index 9533ba62817159f16015c419aa5ba717fa6877d9..9bbef887ec7e9cf5e321e09891e59c49ed39654d 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes: Christian Ullrich
 
-   $Id: stack.h 3969 2005-12-21 00:07:23Z twisti $
+   $Id: stack.h 3994 2005-12-22 14:00:06Z twisti $
 
 */
 
 
 #include "vm/exceptions.h"
 #include "vm/global.h"
+#include "vm/jit/jit.h"
 #include "vm/jit/reg.h"
 
 
-/**********************************************************************/
-/* Macros used internally by analyse_stack                            */
-/**********************************************************************/
-
-#ifdef STATISTICS
-#define COUNT(cnt) cnt++
-#else
-#define COUNT(cnt)
-#endif
+/* macros used internally by analyse_stack ************************************/
 
 #if defined(ENABLE_LSRA)
 # define INC_LIFETIMES(a) { m->maxlifetimes += (a); }
@@ -65,6 +58,7 @@
 #define CURKIND    curstack->varkind
 #define CURTYPE    curstack->type
 
+
 /*--------------------------------------------------*/
 /* SIGNALING ERRORS                                 */
 /*--------------------------------------------------*/