OSDN Git Service

Build system tweaks to make it more convenient for the plugin authors.
authorMikhail Glushenkov <foldr@codedgers.com>
Thu, 2 Oct 2008 21:15:05 +0000 (21:15 +0000)
committerMikhail Glushenkov <foldr@codedgers.com>
Thu, 2 Oct 2008 21:15:05 +0000 (21:15 +0000)
Plugins can be now compiled in with a slight Makefile change.
For example, to compile the new Clang driver, use:

cd $LLVMC2_DIR
make TOOLNAME=ccc2 BUILTIN_PLUGINS=Clang

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56967 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CompilerDriver/Common.td [moved from tools/llvmc2/Common.td with 100% similarity]
include/llvm/CompilerDriver/Tools.td [moved from tools/llvmc2/Tools.td with 100% similarity]
tools/llvmc2/AutoGenerated.cpp [deleted file]
tools/llvmc2/Makefile
tools/llvmc2/plugins/Base/AutoGenerated.cpp [new file with mode: 0644]
tools/llvmc2/plugins/Base/Base.td [moved from tools/llvmc2/Graph.td with 95% similarity]
tools/llvmc2/plugins/Base/Makefile [new file with mode: 0644]
tools/llvmc2/plugins/Clang/AutoGenerated.cpp [new file with mode: 0644]
tools/llvmc2/plugins/Clang/Clang.td [moved from tools/llvmc2/examples/Clang.td with 93% similarity]
tools/llvmc2/plugins/Clang/Makefile [new file with mode: 0644]
tools/llvmc2/plugins/Hello/Makefile

diff --git a/tools/llvmc2/AutoGenerated.cpp b/tools/llvmc2/AutoGenerated.cpp
deleted file mode 100644 (file)
index 9f34e58..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-//===--- AutoGenerated.cpp - The LLVM Compiler Driver -----------*- C++ -*-===//
-//
-//                     The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open
-// Source License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-//  Auto-generated tool descriptions - implementation.
-//
-//===----------------------------------------------------------------------===//
-
-// The auto-generated file
-#include "AutoGenerated.inc"
index 0d64088..9350165 100644 (file)
@@ -6,24 +6,39 @@
 # Source License. See LICENSE.TXT for details.
 #
 ##===----------------------------------------------------------------------===##
+
+# Compiled-in plugins
+BUILTIN_PLUGINS = Base
+
 LEVEL = ../..
 TOOLNAME = llvmc2
-BUILT_SOURCES = AutoGenerated.inc
 LINK_COMPONENTS = support system
 REQUIRES_EH := 1
 
+ifneq ($(BUILTIN_PLUGINS),)
+
+export BUILTIN_LLVMC_PLUGIN=1
+USEDLIBS = $(patsubst %,LLVMC%,$(BUILTIN_PLUGINS))
+
+endif
+
 include $(LEVEL)/Makefile.common
 
-GRAPH=Graph.td
-$(GRAPH) : Common.td
-Graph.td : Tools.td
-TOOLS_SOURCE=$(GRAPH)
+TD_COMMON = $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td)
+
+# There is probably a better way to do this: currently we enter the
+# subdirectory 2 times - the second time is not needed.
+# This probably also needs to be integrated into Makefile.rules.
+define PLUGIN_template
+PLUGIN_$(1)_SOURCES=$$(wildcard plugins/$(1)/*.cpp)
+PLUGIN_$(1)_TD_SOURCES=$$(wildcard plugins/$(1)/*.cpp)
+
+$$(LibDir)/LLVMC$(1).o: $$(PLUGIN_$(1)_SOURCES) $$(PLUGIN_$(1)_TD_SOURCES) \
+                       $$(TD_COMMON)
+       @$$(MAKE) -C plugins/$(1)
 
-# TOFIX: integrate this part into Makefile.rules?
-# The degree of horrorshowness in that file is too much for me atm.
-$(ObjDir)/AutoGenerated.inc.tmp: $(TOOLS_SOURCE) $(ObjDir)/.dir $(TBLGEN)
-       $(Echo) "Building LLVMC configuration library with tblgen"
-       $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
+$$(RecursiveTargets) ::
+       @$$(MAKE) -C plugins/$(1) $$@
+endef
 
-AutoGenerated.inc : $(ObjDir)/AutoGenerated.inc.tmp
-       $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
+$(foreach plugin,$(BUILTIN_PLUGINS),$(eval $(call PLUGIN_template,$(plugin))))
diff --git a/tools/llvmc2/plugins/Base/AutoGenerated.cpp b/tools/llvmc2/plugins/Base/AutoGenerated.cpp
new file mode 100644 (file)
index 0000000..add8acb
--- /dev/null
@@ -0,0 +1 @@
+#include "AutoGenerated.inc"
similarity index 95%
rename from tools/llvmc2/Graph.td
rename to tools/llvmc2/plugins/Base/Base.td
index b09d8ce..bc40dd5 100644 (file)
@@ -11,8 +11,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-include "Common.td"
-include "Tools.td"
+include "llvm/CompilerDriver/Common.td"
+include "llvm/CompilerDriver/Tools.td"
 
 // Toolchains
 
diff --git a/tools/llvmc2/plugins/Base/Makefile b/tools/llvmc2/plugins/Base/Makefile
new file mode 100644 (file)
index 0000000..e72f4fe
--- /dev/null
@@ -0,0 +1,12 @@
+##===- tools/llvmc2/plugins/Base/Makefile ------------------*- Makefile -*-===##
+#
+#                     The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
+
+LLVMC_PLUGIN = Base
+
+include ../Makefile.common
diff --git a/tools/llvmc2/plugins/Clang/AutoGenerated.cpp b/tools/llvmc2/plugins/Clang/AutoGenerated.cpp
new file mode 100644 (file)
index 0000000..add8acb
--- /dev/null
@@ -0,0 +1 @@
+#include "AutoGenerated.inc"
similarity index 93%
rename from tools/llvmc2/examples/Clang.td
rename to tools/llvmc2/plugins/Clang/Clang.td
index 383984a..9985d70 100644 (file)
@@ -1,11 +1,11 @@
 // A (first stab at a) replacement for the Clang's ccc script.
 // To compile, use this command:
-//    make TOOLNAME=ccc2 GRAPH=examples/Clang.td
+//    cd $LLVMC2_DIR
+//    make TOOLNAME=ccc2 BUILTIN_PLUGINS=Clang
 
-include "Common.td"
+include "llvm/CompilerDriver/Common.td"
 
 
-// TOFIX: Add an explicit option list for aliases and things like this.
 def Options : OptionList<[
 (switch_option "E",
     (help "Stop after the preprocessing stage, do not run the compiler"))
diff --git a/tools/llvmc2/plugins/Clang/Makefile b/tools/llvmc2/plugins/Clang/Makefile
new file mode 100644 (file)
index 0000000..8904588
--- /dev/null
@@ -0,0 +1,13 @@
+##===- tools/llvmc2/plugins/Clang/Makefile -----------------*- Makefile -*-===##
+#
+#                     The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
+
+LLVMC_PLUGIN = Clang
+
+include ../Makefile.common
+
index 3aeef24..8cd0b57 100644 (file)
@@ -1,4 +1,4 @@
-##===- lib/Transforms/Hello/Makefile -----------------------*- Makefile -*-===##
+##===- tools/llvmc2/plugins/Hello/Makefile -----------------*- Makefile -*-===##
 #
 #                     The LLVM Compiler Infrastructure
 #
@@ -7,11 +7,6 @@
 #
 ##===----------------------------------------------------------------------===##
 
-LEVEL = ../../../..
-LIBRARYNAME = LLVMCHello
-LOADABLE_MODULE = 1
-REQUIRES_EH = 1
-USEDLIBS =
-
-include $(LEVEL)/Makefile.common
+LLVMC_PLUGIN = Hello
 
+include ../Makefile.common