i386.c (is_va_list_char_pointer): New.
authorKai Tietz <kai.tietz@onevision.com>
Mon, 7 Jul 2008 19:22:48 +0000 (19:22 +0000)
committerKai Tietz <ktietz@gcc.gnu.org>
Mon, 7 Jul 2008 19:22:48 +0000 (21:22 +0200)
2008-07-07  Kai Tietz  <kai.tietz@onevision.com>

* config/i386/i386.c (is_va_list_char_pointer): New.
(ix86_va_start): Replace compare with ms_va_list_type_node
by is_va_list_char_pointer.
(ix86_gimplify_va_arg): Likewise.

From-SVN: r137593

gcc/ChangeLog
gcc/config/i386/i386.c

index 7c37e08446f5e60678f5265ea6551858bd21a5a5..e2a48fdb0b3485f46e1466ed5b52e5867a19c8ea 100644 (file)
@@ -1,3 +1,10 @@
+2008-07-07  Kai Tietz  <kai.tietz@onevision.com>
+
+       * config/i386/i386.c (is_va_list_char_pointer): New.
+       (ix86_va_start): Replace compare with ms_va_list_type_node
+       by is_va_list_char_pointer.
+       (ix86_gimplify_va_arg): Likewise.
+
 2008-07-07  Martin Jambor  <mjambor@suse.cz>
 
        * cgraph.c (cgraph_edge_max_uid): New variable.
index 7bedb76ce99848ce8b1e26c7c8ae583215858f58..26999e71d5b6b1b19389f637349596c3617b6cf0 100644 (file)
@@ -5408,6 +5408,21 @@ ix86_setup_incoming_varargs (CUMULATIVE_ARGS *cum, enum machine_mode mode,
     setup_incoming_varargs_64 (&next_cum);
 }
 
+/* Checks if TYPE is of kind va_list char *.  */
+
+static bool
+is_va_list_char_pointer (tree type)
+{
+  tree canonic;
+
+  /* For 32-bit it is always true.  */
+  if (!TARGET_64BIT)
+    return true;
+  canonic = ix86_canonical_va_list_type (type);
+  return (canonic == ms_va_list_type_node
+          || (DEFAULT_ABI == MS_ABI && canonic == va_list_type_node));
+}
+
 /* Implement va_start.  */
 
 static void
@@ -5419,8 +5434,7 @@ ix86_va_start (tree valist, rtx nextarg)
   tree type;
 
   /* Only 64bit target needs something special.  */
-  if (!TARGET_64BIT ||
-      ix86_canonical_va_list_type (TREE_TYPE (valist)) == ms_va_list_type_node)
+  if (!TARGET_64BIT || is_va_list_char_pointer (TREE_TYPE (valist)))
     {
       std_expand_builtin_va_start (valist, nextarg);
       return;
@@ -5499,8 +5513,7 @@ ix86_gimplify_va_arg (tree valist, tree type, tree *pre_p, tree *post_p)
   enum machine_mode nat_mode;
 
   /* Only 64bit target needs something special.  */
-  if (!TARGET_64BIT ||
-      ix86_canonical_va_list_type (TREE_TYPE (valist)) == ms_va_list_type_node)
+  if (!TARGET_64BIT || is_va_list_char_pointer (TREE_TYPE (valist)))
     return std_gimplify_va_arg_expr (valist, type, pre_p, post_p);
 
   f_gpr = TYPE_FIELDS (TREE_TYPE (sysv_va_list_type_node));