emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r108431: Clean up __executable_start,


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r108431: Clean up __executable_start, monstartup when --enable-profiling.
Date: Wed, 30 May 2012 12:23:37 -0700
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108431
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Wed 2012-05-30 12:23:37 -0700
message:
  Clean up __executable_start, monstartup when --enable-profiling.
  
  The following changes affect the code only when profiling.
  * dispnew.c (__executable_start): Rename from safe_bcopy.
  Define only on platforms that need it.
  * emacs.c: Include <sys/gmon.h> when profiling.
  (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
  (__executable_start): Remove decl, since lisp.h does it now.
  (safe_bcopy): Remove decl; no longer has that name.
  (main): Coalesce #if into single bit of code, for simplicity.
  Cast pointers to uintptr_t, since standard libraries want integers
  and not pointers.
  * lisp.h (__executable_start): New decl.
modified:
  src/ChangeLog
  src/dispnew.c
  src/emacs.c
  src/lisp.h
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-05-30 14:20:45 +0000
+++ b/src/ChangeLog     2012-05-30 19:23:37 +0000
@@ -1,3 +1,18 @@
+2012-05-30  Paul Eggert  <address@hidden>
+
+       Clean up __executable_start, monstartup when --enable-profiling.
+       The following changes affect the code only when profiling.
+       * dispnew.c (__executable_start): Rename from safe_bcopy.
+       Define only on platforms that need it.
+       * emacs.c: Include <sys/gmon.h> when profiling.
+       (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
+       (__executable_start): Remove decl, since lisp.h does it now.
+       (safe_bcopy): Remove decl; no longer has that name.
+       (main): Coalesce #if into single bit of code, for simplicity.
+       Cast pointers to uintptr_t, since standard libraries want integers
+       and not pointers.
+       * lisp.h (__executable_start): New decl.
+
 2012-05-30  Jim Meyering  <address@hidden>
 
        * callproc.c (Fcall_process_region): Include directory component

=== modified file 'src/dispnew.c'
--- a/src/dispnew.c     2012-05-25 18:19:24 +0000
+++ b/src/dispnew.c     2012-05-30 19:23:37 +0000
@@ -332,11 +332,13 @@
 #endif /* GLYPH_DEBUG == 0 */
 
 
-#if defined PROFILING && !HAVE___EXECUTABLE_START
-/* FIXME: only used to find text start for profiling.  */
-
+#if (defined PROFILING \
+     && (defined __FreeBSD__ || defined GNU_LINUX || defined __MINGW32__) \
+     && !HAVE___EXECUTABLE_START)
+/* This function comes first in the Emacs executable and is used only
+   to estimate the text start for profiling.  */
 void
-safe_bcopy (const char *from, char *to, int size)
+__executable_start (void)
 {
   abort ();
 }

=== modified file 'src/emacs.c'
--- a/src/emacs.c       2012-04-09 22:54:59 +0000
+++ b/src/emacs.c       2012-05-30 19:23:37 +0000
@@ -65,6 +65,12 @@
 #include "nsterm.h"
 #endif
 
+#if (defined PROFILING \
+     && (defined __FreeBSD__ || defined GNU_LINUX || defined __MINGW32__))
+# include <sys/gmon.h>
+extern void moncontrol (int mode);
+#endif
+
 #ifdef HAVE_X_WINDOWS
 #include "xterm.h"
 #endif
@@ -320,9 +326,9 @@
 #ifdef HAVE_NS
 /* NS autrelease pool, for memory management.  */
 static void *ns_pool;
-#endif  
-
- 
+#endif
+
+
 
 /* Handle bus errors, invalid instruction, etc.  */
 #ifndef FLOAT_CATCH_SIGILL
@@ -1664,32 +1670,14 @@
 #ifdef PROFILING
   if (initialized)
     {
-      extern void _mcleanup ();
 #ifdef __MINGW32__
       extern unsigned char etext asm ("etext");
 #else
       extern char etext;
 #endif
-#ifdef HAVE___EXECUTABLE_START
-      /* This symbol is defined by GNU ld to the start of the text
-        segment.  */
-      extern char __executable_start[];
-#else
-      extern void safe_bcopy ();
-#endif
 
       atexit (_mcleanup);
-#ifdef HAVE___EXECUTABLE_START
-      monstartup (__executable_start, &etext);
-#else
-      /* This uses safe_bcopy because that function comes first in the
-        Emacs executable.  It might be better to use something that
-        gives the start of the text segment, but start_of_text is not
-        defined on all systems now.  */
-      /* FIXME: Does not work on architectures with function
-        descriptors.  */
-      monstartup (safe_bcopy, &etext);
-#endif
+      monstartup ((uintptr_t) __executable_start, (uintptr_t) &etext);
     }
   else
     moncontrol (0);

=== modified file 'src/lisp.h'
--- a/src/lisp.h        2012-05-30 07:59:44 +0000
+++ b/src/lisp.h        2012-05-30 19:23:37 +0000
@@ -2758,6 +2758,10 @@
 extern void syms_of_insdel (void);
 
 /* Defined in dispnew.c */
+#if (defined PROFILING \
+     && (defined __FreeBSD__ || defined GNU_LINUX || defined __MINGW32__))
+void __executable_start (void) NO_RETURN;
+#endif
 extern Lisp_Object selected_frame;
 extern Lisp_Object Vwindow_system;
 EXFUN (Fding, 1);


reply via email to

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