From: Till Riedel Date: Mon, 17 Feb 2003 17:37:04 +0000 (+0000) Subject: Move build_firm_jni stuff to Makefile X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=afc57eade392aae2647c739b9103be6cf59d4c0f;p=libfirm Move build_firm_jni stuff to Makefile [r802] --- diff --git a/firmjni/Makefile.in b/firmjni/Makefile.in index 0e5f8d9e8..9deaad439 100644 --- a/firmjni/Makefile.in +++ b/firmjni/Makefile.in @@ -22,14 +22,8 @@ libdir = @libdir@ .PHONY: default all clean realclean depend -MEMBERS = Firm.m Firm.m Firm_common.m Dbginfo.m Ident.m Tv.m \ - Type.m Entity.m Type_or_entity.m Tpop.m Mangle.m \ - Irprog.m Irgraph.m Irnode.m Irmode.m Irop.m Ircons.m Ircgcons.m \ - Irflag.m Irvrfy.m Irdump.m Iropt.m Irgopt.m Ircgopt.m \ - Irouts.m Irdom.m Irloop.m Cgana.m \ - Irgmod.m Typegmod.m -# How to pass function pointers? Or how to obtain them? -# Irgwalk.m Typewalk.m +SHELL_TOUPPER = awk '{for (i=1;i<(NF+1);i=i+1) {printf(toupper(substr($$i,1,1)) substr($$i,2)" ")}}' +SHELL_TOLOWER = awk '{for (i=1;i<(NF+1);i=i+1) {printf(tolower(substr($$i,1,1)) substr($$i,2)" ")}}' OFILES = $(MEMBERS:.m=.o) HFILES = $(MEMBERS:.m=.h) @@ -38,27 +32,69 @@ CLASSFILES = $(MEMBERS:.m=.class) CPPFLAGS = -I$(top_srcdir)/ir/ir -I$(top_srcdir)/ir/common \ -I$(top_srcdir)/ir/ident -I$(top_srcdir)/ir/tr \ -I$(top_srcdir)/ir/tv -I$(top_srcdir)/ir/debug \ - -I$(top_srcdir)/ir/ana -I$(top_srcdir)/ir/st @CPPFLAGS@ + -I$(top_srcdir)/ir/ana -I$(top_srcdir)/ir/st @CPPFLAGS@ \ + -D_SIZE_T_ LDFLAGS += $(topdir) -all: classfiles jni +FIRM_HEADERS=$(notdir $(FIRM_PATH_HEADERS)) +MEMBERS=$(subst .h,.m,$(shell echo $(FIRM_HEADERS)|$(SHELL_TOUPPER))) + +# How to pass function pointers? Therefore removed. +# irgwalk.h typewalk.h + +# How to pass function pointers? Or how to obtain them? +# Irgwalk.m Typewalk.m +# +FIRM_PATH_HEADERS=common/firm.h common/firm_common.h \ + debug/dbginfo.h ident/ident.h tv/tv.h \ + tr/type.h tr/entity.h tr/type_or_entity.h tr/tpop.h tr/mangle.h \ + ir/irprog.h ir/irgraph.h ir/irnode.h ir/irmode.h ir/irop.h \ + ir/ircons.h ir/ircgcons.h ir/irflag.h ir/irvrfy.h ir/irdump.h \ + ir/iropt.h ir/irgopt.h ir/ircgopt.h \ + ana/irouts.h ana/irdom.h ana/irloop.h ana/cgana.h \ + ir/irgmod.h tr/typegmod.h +FIRM_SOURCE_DIR_HEADERS=$(addprefix $(SOURCE_DIR)/,$(FIRM_HEADERS)) -# call the generator to make the implementation files -#impl: -# -sh build_firm_jni +# The directory containing crecoder.jar and, for now, +# remove_cpp_comands.perl +FIRM_JNI_TOOLS_DIR=$(top_srcdir)/tools + +WORK_DIR=. + +############################################################################### + +SOURCE_DIR=sources + +REMOVE_CPP_COMMANDS=$(FIRM_JNI_TOOLS_DIR)/remove_cpp_comands.perl +CRECODER=$(FIRM_JNI_TOOLS_DIR)/crecoder.jar + +all: classfiles jni classfiles: $(CLASSFILES) %.class: %.java javac $< +# javah renames these files. the jnibuilder doesn't anticipate this +# and generates #includes with the original names. +Firm_common.h: Firm_common.class + ln -sf Firm_0005fcommon.h Firm_common.h + javah -classpath $(topdir) -o $@ $(PACKAGENAME).$(<:.class=) + +Type_or_entity.h: Type_or_entity.class + ln -sf Type_0005for_0005fentity.h Type_or_entity.h + javah -classpath $(topdir) -o $@ $(PACKAGENAME).$(<:.class=) + %.h: %.class - javah -classpath $(topdir) -o $(<:.class=.h) $(PACKAGENAME).$(<:.class=) + javah -classpath $(topdir) -o $@ $(PACKAGENAME).$(<:.class=) %.o: %.c %.h gcc $(CPPFLAGS) -c $< -o $@ +$(OFILES): + gcc $(CPPFLAGS) -c $(@:.o=.c) -o $@ + jni: $(HFILES) $(OFILES) # ../libfirm.a gcc -shared -fPIC -o $(LIBNAME) *.o -lfirm -L.. @@ -73,3 +109,38 @@ clean: realclean: clean rm -f *~ libfirmjni.so *.vcg *.java *.class + + +$(SOURCE_DIR): + rm -rf $(SOURCE_DIR) + mkdir $(SOURCE_DIR) + +$(SOURCE_DIR)/firm_typedefs.h: $(FIRM_SOURCE_HEADERS) + mv firm_typedefs.h $@ + +############################################################################### +# Get all the necessary Firm headers. +############################################################################### +# Remove C preprocessor commands. Overwrite the header files. +# This part should be removed if crecoder integrates the preprocessor. + +FIRM_SRC_HEADER=$(top_srcdir)/ir/$(filter %/$(notdir $@),$(FIRM_PATH_HEADERS)) + +$(FIRM_SOURCE_DIR_HEADERS): $(SOURCE_DIR) + troff -a -C -z $(FIRM_SRC_HEADER) >$(SOURCE_DIR)/$(notdir $@) + perl $(REMOVE_CPP_COMMANDS) $@ + +$(FIRM_HEADERS):$(FIRM_SOURCE_DIR_HEADERS) $(SOURCE_DIR)/firm_typedefs.h + gcc $(CPPFLAGS) -E -C -P $(SOURCE_DIR)/$@ -o $@ + +############################################################################### +# Call crecoder to construct from each header a .java file specifying the +# java native interface. Further crecoder constructs an implementation of +# the java native interface in C calling the real libfirm functions. +# For a file "file.h" files "File.java" and "File.c" are generated. + + +H_FROM_JAVA=$(subst .java,.h,$(shell echo $@|$(SHELL_TOLOWER))) + +%.java: $(FIRM_HEADERS) + env CLASSPATH=$(FIRM_JNI_TOOLS_DIR)/crecoder.jar:$$CLASSPATH java crecoder/tools/jniBuilder/BuildJNI $(H_FROM_JAVA);\ diff --git a/firmjni/build_firm_jni.in b/firmjni/build_firm_jni.in deleted file mode 100755 index 3ded39fc4..000000000 --- a/firmjni/build_firm_jni.in +++ /dev/null @@ -1,100 +0,0 @@ -#!/bin/sh - -# Project: FIRM -# File name: script/build_firm_jni -# Purpose: skript to build a java native interface for the public headers of firm. -# Author: Goetz Lindenmaier -# Modified by: -# Created: 30.10.2002 -# CVS-ID: $Id$ -# Copyright: (c) 2002 Universität Karlsruhe -# Licence: - -top_srcdir=@top_srcdir@ -srcdir=@srcdir@ -topdir=.. -subdir=firmjni - -# This is the list of firm headers a JNI interface is generated for -# If you change this list, also change FRIM_PATH_HEADERS and the list -# in Makefile.in -FIRM_HEADERS="firm.h firm_common.h dbginfo.h ident.h tv.h - type.h entity.h type_or_entity.h tpop.h mangle.h - irprog.h irgraph.h irnode.h irmode.h irop.h ircons.h ircgcons.h - irflag.h irvrfy.h irdump.h iropt.h irgopt.h ircgopt.h - irouts.h irdom.h irloop.h cgana.h - irgmod.h typegmod.h" -# How to pass function pointers? Therefore removed. -# irgwalk.h typewalk.h - -FIRM_PATH_HEADERS="common/firm.h common/firm_common.h - debug/dbginfo.h ident/ident.h tv/tv.h - tr/type.h tr/entity.h tr/type_or_entity.h tr/tpop.h tr/mangle.h - ir/irprog.h ir/irgraph.h ir/irnode.h ir/irmode.h ir/irop.h - ir/ircons.h ir/ircgcons.h ir/irflag.h ir/irvrfy.h ir/irdump.h - ir/iropt.h ir/irgopt.h ir/ircgopt.h - ana/irouts.h ana/irdom.h ana/irloop.h ana/cgana.h - ir/irgmod.h tr/typegmod.h" - -# The directory containing crecoder.jar and, for now, -# remove_cpp_comands.perl -FIRM_JNI_TOOLS_DIR=$top_srcdir/tools - -WORK_DIR=. - -############################################################################### - -SOURCE_DIR=sources - -REMOVE_CPP_COMMANDS=$FIRM_JNI_TOOLS_DIR/remove_cpp_comands.perl -CRECODER=$FIRM_JNI_TOOLS_DIR/crecoder.jar - - -############################################################################### -# Get all the necessary Firm headers. -cd $WORK_DIR - -rm -rf $SOURCE_DIR -mkdir $SOURCE_DIR - -for file in $FIRM_PATH_HEADERS; do - cp $top_srcdir/ir/$file $SOURCE_DIR -done; - -############################################################################### -# Remove C preprocessor commands. Overwrite the header files. -# This part should be removed if crecoder integrates the preprocessor. - -rm -f $SOURCE_DIR/firm_typedefs.h -for file in $FIRM_HEADERS; do - perl $REMOVE_CPP_COMMANDS $SOURCE_DIR/$file -done; -# the perl script dumps this file in the dir it is called from -mv firm_typedefs.h $SOURCE_DIR - -for file in $FIRM_HEADERS; do - gcc -E -C -P $SOURCE_DIR/$file -o $file -done; - - -############################################################################### -# Call crecoder to construct from each header a .java file specifying the -# java native interface. Further crecoder constructs an implementation of -# the java native interface in C calling the real libfirm functions. -# For a file "file.h" files "File.java" and "File.c" are generated. - -export CLASSPATH=$FIRM_JNI_TOOLS_DIR/crecoder.jar:$CLASSPATH -for file in $FIRM_HEADERS; do - java crecoder/tools/jniBuilder/BuildJNI $file -done; - -# Remove the C headers which are no more needed. They contain -# nonsense no C compiler ever should see ;-) -rm -f $FIRM_HEADERS - -# javah renames these files. the jnibuilder doesn't anticipate this -# and generates #includes with the original names. -ln -s Firm_0005fcommon.h Firm_common.h -ln -s Type_0005for_0005fentity.h Type_or_entity.h - -make