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

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

[dotgnu-pnet-commits] pnet ChangeLog engine/jitc_pinvoke.c


From: Klaus Treichel
Subject: [dotgnu-pnet-commits] pnet ChangeLog engine/jitc_pinvoke.c
Date: Thu, 15 Feb 2007 20:47:33 +0000

CVSROOT:        /cvsroot/dotgnu-pnet
Module name:    pnet
Changes by:     Klaus Treichel <ktreichel>      07/02/15 20:47:33

Modified files:
        .              : ChangeLog 
        engine         : jitc_pinvoke.c 

Log message:
        Remove dump from the on demand compiler function.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pnet/ChangeLog?cvsroot=dotgnu-pnet&r1=1.3419&r2=1.3420
http://cvs.savannah.gnu.org/viewcvs/pnet/engine/jitc_pinvoke.c?cvsroot=dotgnu-pnet&r1=1.7&r2=1.8

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/ChangeLog,v
retrieving revision 1.3419
retrieving revision 1.3420
diff -u -b -r1.3419 -r1.3420
--- ChangeLog   15 Feb 2007 19:04:47 -0000      1.3419
+++ ChangeLog   15 Feb 2007 20:47:32 -0000      1.3420
@@ -4,6 +4,9 @@
        manager change. The functions to lookup the methods *MUST* not lock the
        metadata.
 
+       * engine/jitc_pinvoke.c: remove the dumps from the on demand compiler
+       function because this is handled now in the on demand driver function.
+
 2007-02-13  Klaus Treichel  <address@hidden>
 
        * engine/jitc_delegate.c: remove the dumps from the on demand compiler

Index: engine/jitc_pinvoke.c
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/engine/jitc_pinvoke.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- engine/jitc_pinvoke.c       16 Jan 2007 06:46:08 -0000      1.7
+++ engine/jitc_pinvoke.c       15 Feb 2007 20:47:33 -0000      1.8
@@ -386,28 +386,6 @@
        else jit_insn_return(func, returnValue);
        jit_type_free(callSignature);
 
-#if !defined(IL_CONFIG_REDUCE_CODE) && !defined(IL_WITHOUT_TOOLS) && 
defined(_IL_JIT_ENABLE_DEBUG)
-#ifdef _IL_JIT_DUMP_FUNCTION
-       if(jitCoder->flags & IL_CODER_FLAG_STATS)
-       {
-               ILMutexLock(globalTraceMutex);
-               jit_dump_function(stdout, func, methodName);
-               ILMutexUnlock(globalTraceMutex);
-       }
-#endif
-#ifdef _IL_JIT_DISASSEMBLE_FUNCTION
-       if(jitCoder->flags & IL_CODER_FLAG_STATS)
-       {
-               if(!jit_function_compile(func))
-               {
-                       return JIT_RESULT_COMPILE_ERROR;
-               }
-               ILMutexLock(globalTraceMutex);
-               jit_dump_function(stdout, func, methodName);
-               ILMutexUnlock(globalTraceMutex);
-       }
-#endif
-#endif
        return JIT_RESULT_OK;
 }
 




reply via email to

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