]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
d: Add TARGET_D_HAS_STDCALL_CONVENTION
authorIain Buclaw <ibuclaw@gdcproject.org>
Mon, 5 Apr 2021 16:46:18 +0000 (18:46 +0200)
committerIain Buclaw <ibuclaw@gdcproject.org>
Wed, 14 Apr 2021 12:43:37 +0000 (14:43 +0200)
This replaces the use of the D front-end `is64bit' parameter in
determining whether to insert the "stdcall" function attribute.

It is also used to determine whether `extern(System)' should be the same
as `extern(Windows)' in the implementation of Target::systemLinkage.

gcc/ChangeLog:

* config/i386/i386-d.c (ix86_d_has_stdcall_convention): New function.
* config/i386/i386-protos.h (ix86_d_has_stdcall_convention): Declare.
* config/i386/i386.h (TARGET_D_HAS_STDCALL_CONVENTION): Define.
* doc/tm.texi: Regenerate.
* doc/tm.texi.in (D language and ABI): Add @hook for
TARGET_D_HAS_STDCALL_CONVENTION.

gcc/d/ChangeLog:

* d-target.cc (Target::systemLinkage): Return LINKwindows if
d_has_stdcall_convention applies to LINKsystem.
* d-target.def (d_has_stdcall_convention): New hook.
* types.cc (TypeVisitor::visit (TypeFunction *)): Insert "stdcall"
function attribute if d_has_stdcall_convention applies to LINKwindows.

gcc/config/i386/i386-d.c
gcc/config/i386/i386-protos.h
gcc/config/i386/i386.h
gcc/d/d-target.cc
gcc/d/d-target.def
gcc/d/types.cc
gcc/doc/tm.texi
gcc/doc/tm.texi.in

index b79be85e66126269c887420c9db1ad37893e1525..58b4790fdad3137efec5331f92f1e687fd03ce26 100644 (file)
@@ -44,3 +44,23 @@ ix86_d_target_versions (void)
   else
     d_add_builtin_version ("D_SoftFloat");
 }
+
+/* Implement TARGET_D_HAS_STDCALL_CONVENTION for x86 targets.  */
+
+bool
+ix86_d_has_stdcall_convention (unsigned int *link_system,
+                              unsigned int *link_windows)
+{
+  if (ix86_abi == MS_ABI)
+    {
+      *link_system = 1;
+      *link_windows = (!TARGET_64BIT) ? 1 : 0;
+    }
+  else
+    {
+      *link_system = 0;
+      *link_windows = 0;
+    }
+
+  return true;
+}
index 9f8a69ea7dc6c22a3482972d8aeaba1b6ff7aa2b..acfb9f5fe87a9a24b1f8fc3a1367ea774203d3e4 100644 (file)
@@ -264,6 +264,7 @@ extern void ix86_register_pragmas (void);
 
 /* In i386-d.c  */
 extern void ix86_d_target_versions (void);
+extern bool ix86_d_has_stdcall_convention (unsigned int *, unsigned int *);
 
 /* In winnt.c  */
 extern void i386_pe_unique_section (tree, int);
index fab1b3c43d68826c5bca6d9439b0ed3b740b6e54..4b525d203a314ebcddb9178bff7617b459198314 100644 (file)
@@ -802,8 +802,9 @@ extern const char *host_detect_local_cpu (int argc, const char **argv);
 /* Target Pragmas.  */
 #define REGISTER_TARGET_PRAGMAS() ix86_register_pragmas ()
 
-/* Target CPU versions for D.  */
+/* Target hooks for D language.  */
 #define TARGET_D_CPU_VERSIONS ix86_d_target_versions
+#define TARGET_D_HAS_STDCALL_CONVENTION ix86_d_has_stdcall_convention
 
 #ifndef CC1_SPEC
 #define CC1_SPEC "%(cc1_cpu) "
index a1dc2ee286f0ec27a3c26e48cba226145b8f1a0d..f1814df110d95e55fa4648325708f5d61c461c62 100644 (file)
@@ -435,11 +435,21 @@ TargetCPP::derivedClassOffset(ClassDeclaration *base_class)
   return base_class->structsize;
 }
 
-/* Return the default system linkage for the target.  */
+/* Return the default `extern (System)' linkage for the target.  */
 
 LINK
 Target::systemLinkage (void)
 {
+  unsigned link_system, link_windows;
+
+  if (targetdm.d_has_stdcall_convention (&link_system, &link_windows))
+    {
+      /* In [attribute/linkage], `System' is the same as `Windows' on Windows
+        platforms, and `C' on other platforms.  */
+      if (link_system)
+       return LINKwindows;
+    }
+
   return LINKc;
 }
 
index d1426a17e99de766c15fe7c40068434b6c1801a7..f79ffb9cd7dd4ca43c92046c787b57da2c616a31 100644 (file)
@@ -71,5 +71,18 @@ as the name of the symbol indicating the end address of the module info\n\
 section",
  const char *, NULL)
 
+/* The "stdcall" convention is really supported on 32-bit x86/Windows only.
+   The following hook is a helper to determine whether to apply the attribute
+   on declarations with `extern(System)' and `extern(Windows)' linkage.  */
+DEFHOOK
+(d_has_stdcall_convention,
+ "Returns @code{true} if the target supports the stdcall calling convention.\n\
+The hook should also set @var{link_system} to @code{1} if the @code{stdcall}\n\
+attribute should be applied to functions with @code{extern(System)} linkage,\n\
+and @var{link_windows} to @code{1} to apply @code{stdcall} to functions with\n\
+@code{extern(Windows)} linkage.",
+ bool, (unsigned int *link_system, unsigned int *link_windows),
+ hook_bool_uintp_uintp_false)
+
 /* Close the 'struct gcc_targetdm' definition.  */
 HOOK_VECTOR_END (C90_EMPTY_HACK)
index ec617407b3dcee7106f169abb81b10f5742fce11..3b121f5b042d93e7bb042166f3a29fb5b853fbab 100644 (file)
@@ -40,6 +40,7 @@ along with GCC; see the file COPYING3.  If not see
 #include "attribs.h"
 
 #include "d-tree.h"
+#include "d-target.h"
 
 
 /* Return the signed or unsigned version of TYPE, an integral type, the
@@ -800,13 +801,19 @@ public:
     switch (t->linkage)
       {
       case LINKwindows:
-       /* [attribute/linkage]
+       {
+         /* [attribute/linkage]
 
-          The Windows convention is distinct from the C convention only
-          on Win32, where it is equivalent to the stdcall convention.  */
-       if (!global.params.is64bit)
-         t->ctype = insert_type_attribute (t->ctype, "stdcall");
-       break;
+            The Windows convention is distinct from the C convention only
+            on Win32, where it is equivalent to the stdcall convention.  */
+         unsigned link_system, link_windows;
+         if (targetdm.d_has_stdcall_convention (&link_system, &link_windows))
+           {
+             if (link_windows)
+               t->ctype = insert_type_attribute (t->ctype, "stdcall");
+           }
+         break;
+       }
 
       case LINKc:
       case LINKcpp:
index b272fa4806d08bea1783da74c7ce89326f0b4721..71607c4dc4e81b544acc554e65f7d453b1c69164 100644 (file)
@@ -10828,6 +10828,14 @@ as the name of the symbol indicating the end address of the module info
 section
 @end deftypevr
 
+@deftypefn {D Target Hook} bool TARGET_D_HAS_STDCALL_CONVENTION (unsigned int *@var{link_system}, unsigned int *@var{link_windows})
+Returns @code{true} if the target supports the stdcall calling convention.
+The hook should also set @var{link_system} to @code{1} if the @code{stdcall}
+attribute should be applied to functions with @code{extern(System)} linkage,
+and @var{link_windows} to @code{1} to apply @code{stdcall} to functions with
+@code{extern(Windows)} linkage.
+@end deftypefn
+
 @node Named Address Spaces
 @section Adding support for named address spaces
 @cindex named address spaces
index bf724dc093cb5320f47c736f64cb8d3f999ece60..c8880dafcd48bbac14c5d3850d2554e11f59abe4 100644 (file)
@@ -7363,6 +7363,8 @@ floating-point support; they are not included in this mechanism.
 
 @hook TARGET_D_MINFO_END_NAME
 
+@hook TARGET_D_HAS_STDCALL_CONVENTION
+
 @node Named Address Spaces
 @section Adding support for named address spaces
 @cindex named address spaces