public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Bill Schmidt <wschmidt@linux.ibm.com>
To: gcc-patches@gcc.gnu.org
Cc: segher@kernel.crashing.org, dje.gcc@gmail.com, willschm@linux.ibm.com
Subject: [PATCH 20/28] rs6000: Incorporate new builtins code into the build machinery
Date: Wed, 17 Jun 2020 14:46:43 -0500	[thread overview]
Message-ID: <4397e3f80d560d15b8f36499083dda3d4440b8f7.1592419212.git.wschmidt@linux.ibm.com> (raw)
In-Reply-To: <cover.1592419211.git.wschmidt@linux.ibm.com>
In-Reply-To: <cover.1592419211.git.wschmidt@linux.ibm.com>

2020-06-17  Bill Schmidt  <wschmidt@linux.ibm.com>

	* config.gcc (powerpc*-*-*): Add rs6000-builtins.o to extra_objs.
	* config/rs6000/t-rs6000 (rs6000-gen-builtins.o): New target.
	(rbtree.o): Likewise.
	(rs6000-gen-builtins): Likewise.
	(rs6000-builtins.c): Likewise.
	(rs6000-builtins.o): Likewise.
	(rs6000-call.o): Add dependency on rs6000-builtins.c.
---
 gcc/config.gcc             |  3 ++-
 gcc/config/rs6000/t-rs6000 | 25 ++++++++++++++++++++++++-
 2 files changed, 26 insertions(+), 2 deletions(-)

diff --git a/gcc/config.gcc b/gcc/config.gcc
index 06ad813ad39..0536b86ca92 100644
--- a/gcc/config.gcc
+++ b/gcc/config.gcc
@@ -505,7 +505,8 @@ or1k*-*-*)
 	;;
 powerpc*-*-*)
 	cpu_type=rs6000
-	extra_objs="rs6000-string.o rs6000-p8swap.o rs6000-logue.o rs6000-call.o"
+	extra_objs="rs6000-string.o rs6000-p8swap.o rs6000-logue.o"
+	extra_objs="${extra_objs} rs6000-call.o rs6000-builtins.o"
 	extra_headers="ppc-asm.h altivec.h htmintrin.h htmxlintrin.h"
 	extra_headers="${extra_headers} bmi2intrin.h bmiintrin.h"
 	extra_headers="${extra_headers} xmmintrin.h mm_malloc.h emmintrin.h"
diff --git a/gcc/config/rs6000/t-rs6000 b/gcc/config/rs6000/t-rs6000
index 170a69591dd..1a86d7adace 100644
--- a/gcc/config/rs6000/t-rs6000
+++ b/gcc/config/rs6000/t-rs6000
@@ -43,7 +43,30 @@ rs6000-logue.o: $(srcdir)/config/rs6000/rs6000-logue.c
 	$(COMPILE) $<
 	$(POSTCOMPILE)
 
-rs6000-call.o: $(srcdir)/config/rs6000/rs6000-call.c
+rs6000-gen-builtins.o: $(srcdir)/config/rs6000/rs6000-gen-builtins.c
+	$(COMPILE) $<
+	$(POSTCOMPILE)
+
+rbtree.o: $(srcdir)/config/rs6000/rbtree.c
+	$(COMPILE) $<
+	$(POSTCOMPILE)
+
+rs6000-gen-builtins: rs6000-gen-builtins.o rbtree.o
+	+$(LINKER_FOR_BUILD) $(BUILD_LINKERFLAGS) $(BUILD_LDFLAGS) -o $@ \
+	    $(filter-out $(BUILD_LIBDEPS), $^) $(BUILD_LIBS)
+
+rs6000-builtins.c: rs6000-gen-builtins \
+		   $(srcdir)/config/rs6000/rs6000-builtin-new.def \
+		   $(srcdir)/config/rs6000/rs6000-overload.def
+	./rs6000-gen-builtins $(srcdir)/config/rs6000/rs6000-builtin-new.def \
+		$(srcdir)/config/rs6000/rs6000-overload.def rs6000-builtins.h \
+		rs6000-builtins.c rs6000-vecdefines.h
+
+rs6000-builtins.o: rs6000-builtins.c
+	$(COMPILE) $<
+	$(POSTCOMPILE)
+
+rs6000-call.o: $(srcdir)/config/rs6000/rs6000-call.c rs6000-builtins.c
 	$(COMPILE) $<
 	$(POSTCOMPILE)
 
-- 
2.17.1


  parent reply	other threads:[~2020-06-17 19:47 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-17 19:46 [PATCH 00/28] rs6000: Auto-generate builtins from descriptions Bill Schmidt
2020-06-17 19:46 ` [PATCH 01/28] rs6000: Initial create of rs6000-gen-builtins.c Bill Schmidt
2020-06-17 19:46 ` [PATCH 02/28] rs6000: Add initial input files Bill Schmidt
2020-06-17 19:46 ` [PATCH 03/28] rs6000: Add file support and functions for diagnostic support Bill Schmidt
2020-06-17 19:46 ` [PATCH 04/28] rs6000: Add helper functions for parsing Bill Schmidt
2020-06-17 19:46 ` [PATCH 05/28] rs6000: Add functions for matching types, part 1 of 3 Bill Schmidt
2020-06-17 19:46 ` [PATCH 06/28] rs6000: Add functions for matching types, part 2 " Bill Schmidt
2020-06-17 19:46 ` [PATCH 07/28] rs6000: Add functions for matching types, part 3 " Bill Schmidt
2020-06-17 19:46 ` [PATCH 08/28] rs6000: Red-black tree implementation for balanced tree search Bill Schmidt
2020-06-17 19:46 ` [PATCH 09/28] rs6000: Main function with stubs for parsing and output Bill Schmidt
2020-06-17 19:46 ` [PATCH 10/28] rs6000: Parsing built-in input file, part 1 of 3 Bill Schmidt
2020-06-17 19:46 ` [PATCH 11/28] rs6000: Parsing built-in input file, part 2 " Bill Schmidt
2020-06-17 19:46 ` [PATCH 12/28] rs6000: Parsing built-in input file, part 3 " Bill Schmidt
2020-06-17 19:46 ` [PATCH 13/28] rs6000: Parsing of overload input file Bill Schmidt
2020-06-17 19:46 ` [PATCH 14/28] rs6000: Build and store function type identifiers Bill Schmidt
2020-06-17 19:46 ` [PATCH 15/28] rs6000: Write output to the vector definition include file Bill Schmidt
2020-06-17 19:46 ` [PATCH 16/28] rs6000: Write output to the builtins header file Bill Schmidt
2020-06-17 19:46 ` [PATCH 17/28] rs6000: Write output to the builtins init file, part 1 of 3 Bill Schmidt
2020-06-17 19:46 ` [PATCH 18/28] rs6000: Write output to the builtins init file, part 2 " Bill Schmidt
2020-06-17 19:46 ` [PATCH 19/28] rs6000: Write output to the builtins init file, part 3 " Bill Schmidt
2020-06-17 19:46 ` Bill Schmidt [this message]
2020-06-17 19:46 ` [PATCH 21/28] rs6000: Add remaining MASK_ALTIVEC builtins Bill Schmidt
2020-06-17 19:46 ` [PATCH 22/28] rs6000: Add MASK_VSX builtins Bill Schmidt
2020-06-17 19:46 ` [PATCH 23/28] rs6000: Add available-everywhere and ancient builtins Bill Schmidt
2020-06-17 19:46 ` [PATCH 24/28] rs6000: Add Power7 builtins Bill Schmidt
2020-06-17 19:46 ` [PATCH 25/28] rs6000: Add MASK_P8_VECTOR builtins Bill Schmidt
2020-06-17 19:46 ` [PATCH 26/28] rs6000: Add MASK_P9_VECTOR and MASK_P9_MISC builtins Bill Schmidt
2020-06-17 19:46 ` [PATCH 27/28] rs6000: Add remaining builtins Bill Schmidt
2020-06-17 19:46 ` [PATCH 28/28] rs6000: Add comments to help with transition Bill Schmidt
2020-06-18 16:08 ` [PATCH 00/28] rs6000: Auto-generate builtins from descriptions will schmidt
2020-06-18 22:01   ` Bill Schmidt
2020-06-18 22:48     ` will schmidt
2020-06-23 20:21       ` Bill Schmidt
2020-07-01 14:47 ` Bill Schmidt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4397e3f80d560d15b8f36499083dda3d4440b8f7.1592419212.git.wschmidt@linux.ibm.com \
    --to=wschmidt@linux.ibm.com \
    --cc=dje.gcc@gmail.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=segher@kernel.crashing.org \
    --cc=willschm@linux.ibm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).