public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] use build_function_type less in c-family and LTO
@ 2011-05-10 14:05 Nathan Froyd
  2011-05-10 15:17 ` Diego Novillo
  2011-05-10 15:25 ` Joseph S. Myers
  0 siblings, 2 replies; 3+ messages in thread
From: Nathan Froyd @ 2011-05-10 14:05 UTC (permalink / raw)
  To: gcc-patches; +Cc: dnovillo

As $SUBJECT suggests.  Eradicating build_function_type from the C FE
entirely will take a bit more work.

The lto change is included because def_fn_type there is clearly a copy
of the C version; I am going to assume that given other approvals of
copy-paste code, this one is obvious.

Tested on x86_64-unknown-linux-gnu.  OK to commit?

-Nathan

gcc/c-family/
	* c-common.c (def_fn_type): Don't call build_function_type, call
	build_function_type_vec or build_varargs_function_type_vec instead.
	(c_common_nodes_and_builtins): Likewise.

gcc/lto/
	* lto-lang.c (def_fn_type): Don't call build_function_type, call
	build_function_type_vec or build_varargs_function_type_vec instead.

diff --git a/gcc/c-family/c-common.c b/gcc/c-family/c-common.c
index 41cb717..a04801e 100644
--- a/gcc/c-family/c-common.c
+++ b/gcc/c-family/c-common.c
@@ -4414,7 +4414,8 @@ static tree builtin_types[(int) BT_LAST + 1];
 static void
 def_fn_type (builtin_type def, builtin_type ret, bool var, int n, ...)
 {
-  tree args = NULL, t;
+  tree t;
+  tree *args = XALLOCAVEC (tree, n);
   va_list list;
   int i;
 
@@ -4425,18 +4426,17 @@ def_fn_type (builtin_type def, builtin_type ret, bool var, int n, ...)
       t = builtin_types[a];
       if (t == error_mark_node)
 	goto egress;
-      args = tree_cons (NULL_TREE, t, args);
+      args[i] = t;
     }
   va_end (list);
 
-  args = nreverse (args);
-  if (!var)
-    args = chainon (args, void_list_node);
-
   t = builtin_types[ret];
   if (t == error_mark_node)
     goto egress;
-  t = build_function_type (t, args);
+  if (var)
+    t = build_varargs_function_type_array (t, n, args);
+  else
+    t = build_function_type_array (t, n, args);
 
  egress:
   builtin_types[def] = t;
@@ -4931,7 +4931,8 @@ c_common_nodes_and_builtins (void)
     uintptr_type_node =
       TREE_TYPE (identifier_global_value (c_get_ident (UINTPTR_TYPE)));
 
-  default_function_type = build_function_type (integer_type_node, NULL_TREE);
+  default_function_type
+    = build_varargs_function_type_list (integer_type_node, NULL_TREE);
   ptrdiff_type_node
     = TREE_TYPE (identifier_global_value (get_identifier (PTRDIFF_TYPE)));
   unsigned_ptrdiff_type_node = c_common_unsigned_type (ptrdiff_type_node);
diff --git a/gcc/lto/lto-lang.c b/gcc/lto/lto-lang.c
index 5872928..5fe89b8 100644
--- a/gcc/lto/lto-lang.c
+++ b/gcc/lto/lto-lang.c
@@ -433,7 +433,8 @@ handle_format_arg_attribute (tree * ARG_UNUSED (node), tree ARG_UNUSED (name),
 static void
 def_fn_type (builtin_type def, builtin_type ret, bool var, int n, ...)
 {
-  tree args = NULL, t;
+  tree t;
+  tree *args = XALLOCAVEC (tree, n);
   va_list list;
   int i;
 
@@ -444,18 +445,17 @@ def_fn_type (builtin_type def, builtin_type ret, bool var, int n, ...)
       t = builtin_types[a];
       if (t == error_mark_node)
 	goto egress;
-      args = tree_cons (NULL_TREE, t, args);
+      args[i] = t;
     }
   va_end (list);
 
-  args = nreverse (args);
-  if (!var)
-    args = chainon (args, void_list_node);
-
   t = builtin_types[ret];
   if (t == error_mark_node)
     goto egress;
-  t = build_function_type (t, args);
+  if (var)
+    t = build_varargs_function_type_array (t, n, args);
+  else
+    t = build_function_type_array (t, n, args);
 
  egress:
   builtin_types[def] = t;

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] use build_function_type less in c-family and LTO
  2011-05-10 14:05 [PATCH] use build_function_type less in c-family and LTO Nathan Froyd
@ 2011-05-10 15:17 ` Diego Novillo
  2011-05-10 15:25 ` Joseph S. Myers
  1 sibling, 0 replies; 3+ messages in thread
From: Diego Novillo @ 2011-05-10 15:17 UTC (permalink / raw)
  To: Nathan Froyd; +Cc: gcc-patches

On Tue, May 10, 2011 at 10:14, Nathan Froyd <froydnj@codesourcery.com> wrote:

> gcc/c-family/
>        * c-common.c (def_fn_type): Don't call build_function_type, call
>        build_function_type_vec or build_varargs_function_type_vec instead.
>        (c_common_nodes_and_builtins): Likewise.
>
> gcc/lto/
>        * lto-lang.c (def_fn_type): Don't call build_function_type, call
>        build_function_type_vec or build_varargs_function_type_vec instead.

OK for LTO.


Diego.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] use build_function_type less in c-family and LTO
  2011-05-10 14:05 [PATCH] use build_function_type less in c-family and LTO Nathan Froyd
  2011-05-10 15:17 ` Diego Novillo
@ 2011-05-10 15:25 ` Joseph S. Myers
  1 sibling, 0 replies; 3+ messages in thread
From: Joseph S. Myers @ 2011-05-10 15:25 UTC (permalink / raw)
  To: Nathan Froyd; +Cc: gcc-patches, dnovillo

On Tue, 10 May 2011, Nathan Froyd wrote:

> gcc/c-family/
> 	* c-common.c (def_fn_type): Don't call build_function_type, call
> 	build_function_type_vec or build_varargs_function_type_vec instead.
> 	(c_common_nodes_and_builtins): Likewise.

The c-family changes are OK.

-- 
Joseph S. Myers
joseph@codesourcery.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-05-10 15:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-10 14:05 [PATCH] use build_function_type less in c-family and LTO Nathan Froyd
2011-05-10 15:17 ` Diego Novillo
2011-05-10 15:25 ` Joseph S. Myers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).