]> sourceware.org Git - newlib-cygwin.git/commitdiff
Cygwin: make import_address a static inline function
authorCorinna Vinschen <corinna@vinschen.de>
Wed, 10 Aug 2022 14:55:04 +0000 (16:55 +0200)
committerCorinna Vinschen <corinna@vinschen.de>
Wed, 10 Aug 2022 16:05:12 +0000 (18:05 +0200)
It's used in malloc_init only and we never need it anywhere else,
hopefully.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
winsup/cygwin/local_includes/miscfuncs.h
winsup/cygwin/miscfuncs.cc
winsup/cygwin/mm/malloc_wrapper.cc

index eac1dbe20a71d97f891156edf9af08c9d5596559..947b52c2c071670acfdeea53b708976ce2487943 100644 (file)
@@ -77,9 +77,6 @@ public:
 
 extern "C" void yield ();
 
-#define import_address(x) __import_address ((void *)(x))
-void * __import_address (void *);
-
 #define caller_return_address() \
                __caller_return_address (__builtin_return_address (0))
 void * __caller_return_address (void *);
index f46e349e5f20aa63b7a0c8ffaec88b352a76935c..0af2e02175a729d93df98775eac4326769e3c0d6 100644 (file)
@@ -315,25 +315,6 @@ NT_readline::gets ()
     }
 }
 
-/* Return an address from the import jmp table of main program.  */
-void *
-__import_address (void *imp)
-{
-  __try
-    {
-      if (*((uint16_t *) imp) == 0x25ff)
-       {
-         const char *ptr = (const char *) imp;
-         const uintptr_t *jmpto = (uintptr_t *)
-                                  (ptr + 6 + *(int32_t *)(ptr + 2));
-         return (void *) *jmpto;
-       }
-    }
-  __except (NO_ERROR) {}
-  __endtry
-  return NULL;
-}
-
 /* Helper function to generate the correct caller address.  For external
    calls, the return address on the stack is _sigbe.  In that case the
    actual caller return address is on the cygtls stack.  Use this function
index 2842e5398501104975c72028b70eae5d2d496fa3..5af39d361e5c07fb162553fd94baf2fe2e706114 100644 (file)
@@ -27,6 +27,25 @@ extern "C" struct mallinfo dlmallinfo ();
 static bool use_internal = true;
 static bool internal_malloc_determined;
 
+/* Return an address from the import jmp table of main program.  */
+static inline void *
+import_address (void *imp)
+{
+  __try
+    {
+      if (*((uint16_t *) imp) == 0x25ff)
+       {
+         const char *ptr = (const char *) imp;
+         const uintptr_t *jmpto = (uintptr_t *)
+                                  (ptr + 6 + *(int32_t *)(ptr + 2));
+         return (void *) *jmpto;
+       }
+    }
+  __except (NO_ERROR) {}
+  __endtry
+  return NULL;
+}
+
 /* These routines are used by the application if it
    doesn't provide its own malloc. */
 
@@ -284,7 +303,8 @@ malloc_init ()
       /* Decide if we are using our own version of malloc by testing the import
         address from user_data.  */
       use_internal = user_data->malloc == malloc
-                    || import_address (user_data->malloc) == &_sigfe_malloc;
+                    || import_address ((void *) user_data->malloc)
+                       == &_sigfe_malloc;
       malloc_printf ("using %s malloc", use_internal ? "internal" : "external");
       internal_malloc_determined = true;
     }
This page took 0.031325 seconds and 5 git commands to generate.