adlc.make revision 1526
4632N/A#
4632N/A# Copyright (c) 1999, 2009, Oracle and/or its affiliates. All rights reserved.
4632N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4632N/A#
4632N/A# This code is free software; you can redistribute it and/or modify it
4632N/A# under the terms of the GNU General Public License version 2 only, as
4632N/A# published by the Free Software Foundation.
4632N/A#
4632N/A# This code is distributed in the hope that it will be useful, but WITHOUT
4632N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4632N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
4632N/A# version 2 for more details (a copy is included in the LICENSE file that
4632N/A# accompanied this code).
4632N/A#
4632N/A# You should have received a copy of the GNU General Public License version
4632N/A# 2 along with this work; if not, write to the Free Software Foundation,
4632N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4632N/A#
4632N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4632N/A# or visit www.oracle.com if you need additional information or have any
4632N/A# questions.
4632N/A#
4632N/A#
4632N/A
4632N/A# This makefile (adlc.make) is included from the adlc.make in the
4632N/A# build directories.
4632N/A# It knows how to compile, link, and run the adlc.
4632N/A
4632N/Ainclude $(GAMMADIR)/make/$(Platform_os_family)/makefiles/rules.make
4632N/A
4632N/A# #########################################################################
4632N/A
4632N/A# OUTDIR must be the same as AD_Dir = $(GENERATED)/adfiles in top.make:
4632N/AGENERATED = ../generated
4632N/AOUTDIR = $(GENERATED)/adfiles
4632N/A
4632N/AARCH = $(Platform_arch)
4632N/AOS = $(Platform_os_family)
4632N/A
4632N/ASOURCE.AD = $(OUTDIR)/$(OS)_$(Platform_arch_model).ad
4632N/A
4632N/ASOURCES.AD = $(GAMMADIR)/src/cpu/$(ARCH)/vm/$(Platform_arch_model).ad \
4632N/A $(GAMMADIR)/src/os_cpu/$(OS)_$(ARCH)/vm/$(OS)_$(Platform_arch_model).ad
4632N/A
4632N/ASrc_Dirs += $(GAMMADIR)/src/share/vm/adlc
4632N/A
4632N/AEXEC = $(OUTDIR)/adlc
4632N/A
4632N/A# set VPATH so make knows where to look for source files
4632N/ASrc_Dirs_V = ${Src_Dirs} $(GENERATED)/incls
4632N/AVPATH += $(Src_Dirs_V:%=%:)
4632N/A
4632N/A# set INCLUDES for C preprocessor
4632N/ASrc_Dirs_I = ${Src_Dirs} $(GENERATED)
4632N/AINCLUDES += $(Src_Dirs_I:%=-I%)
4632N/A
4632N/A# set flags for adlc compilation
4632N/ACPPFLAGS = $(SYSDEFS) $(INCLUDES)
4632N/A
4632N/A# Force assertions on.
4632N/ACPPFLAGS += -DASSERT
4632N/A
4632N/A# CFLAGS_WARN holds compiler options to suppress/enable warnings.
4632N/A# Compiler warnings are treated as errors
4632N/ACFLAGS_WARN = -Werror
4632N/ACFLAGS += $(CFLAGS_WARN)
4632N/A
4632N/AOBJECTNAMES = \
4632N/A adlparse.o \
4632N/A archDesc.o \
4632N/A arena.o \
4632N/A dfa.o \
4632N/A dict2.o \
4632N/A filebuff.o \
4632N/A forms.o \
4632N/A formsopt.o \
4632N/A formssel.o \
4632N/A main.o \
4632N/A adlc-opcodes.o \
4632N/A output_c.o \
4632N/A output_h.o \
4632N/A
4632N/AOBJECTS = $(OBJECTNAMES:%=$(OUTDIR)/%)
4632N/A
4632N/AGENERATEDNAMES = \
4632N/A ad_$(Platform_arch_model).cpp \
4632N/A ad_$(Platform_arch_model).hpp \
4632N/A ad_$(Platform_arch_model)_clone.cpp \
4632N/A ad_$(Platform_arch_model)_expand.cpp \
4632N/A ad_$(Platform_arch_model)_format.cpp \
4632N/A ad_$(Platform_arch_model)_gen.cpp \
4632N/A ad_$(Platform_arch_model)_misc.cpp \
4632N/A ad_$(Platform_arch_model)_peephole.cpp \
4632N/A ad_$(Platform_arch_model)_pipeline.cpp \
4632N/A adGlobals_$(Platform_arch_model).hpp \
4632N/A dfa_$(Platform_arch_model).cpp \
4632N/A
4632N/AGENERATEDFILES = $(GENERATEDNAMES:%=$(OUTDIR)/%)
4632N/A
4632N/A# #########################################################################
4632N/A
4632N/Aall: $(EXEC)
4632N/A
4632N/A$(EXEC) : $(OBJECTS)
4632N/A @echo Making adlc
4632N/A $(QUIETLY) $(LINK_NOPROF.CC) -o $(EXEC) $(OBJECTS)
4632N/A
4632N/A# Random dependencies:
4632N/A$(OBJECTS): opcodes.hpp classes.hpp adlc.hpp adlcVMDeps.hpp adlparse.hpp archDesc.hpp arena.hpp dict2.hpp filebuff.hpp forms.hpp formsopt.hpp formssel.hpp
4632N/A
4632N/A# The source files refer to ostream.h, which sparcworks calls iostream.h
4632N/A$(OBJECTS): ostream.h
4632N/A
4632N/Aostream.h :
4632N/A @echo >$@ '#include <iostream.h>'
4632N/A
4632N/Adump:
4632N/A : OUTDIR=$(OUTDIR)
4632N/A : OBJECTS=$(OBJECTS)
4632N/A : products = $(GENERATEDFILES)
4632N/A
4632N/Aall: $(GENERATEDFILES)
4632N/A
4632N/A$(GENERATEDFILES): refresh_adfiles
4632N/A
4632N/A# Get a unique temporary directory name, so multiple makes can run in parallel.
4632N/A# Note that product files are updated via "mv", which is atomic.
4632N/ATEMPDIR := $(OUTDIR)/mktmp$(shell echo $$$$)
4632N/A
4632N/A# Debuggable by default
4632N/ACFLAGS += -g
4632N/A
4632N/A# Pass -D flags into ADLC.
4632N/AADLCFLAGS += $(SYSDEFS)
4632N/A
4632N/A# Note "+="; it is a hook so flags.make can add more flags, like -g or -DFOO.
4632N/AADLCFLAGS += -q -T
4632N/A
4632N/A# Normally, debugging is done directly on the ad_<arch>*.cpp files.
4632N/A# But -g will put #line directives in those files pointing back to <arch>.ad.
4632N/A# Some builds of gcc 3.2 have a bug that gets tickled by the extra #line directives
4632N/A# so skip it for 3.2 and ealier.
4632N/Aifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 3 \) \))" "0"
4632N/AADLCFLAGS += -g
4632N/Aendif
4632N/A
4632N/Aifdef LP64
4632N/AADLCFLAGS += -D_LP64
4632N/Aelse
4632N/AADLCFLAGS += -U_LP64
4632N/Aendif
4632N/A
4632N/A#
4632N/A# adlc_updater is a simple sh script, under sccs control. It is
4632N/A# used to selectively update generated adlc files. This should
4632N/A# provide a nice compilation speed improvement.
4632N/A#
4632N/AADLC_UPDATER_DIRECTORY = $(GAMMADIR)/make/$(OS)
4632N/AADLC_UPDATER = adlc_updater
4632N/A$(ADLC_UPDATER): $(ADLC_UPDATER_DIRECTORY)/$(ADLC_UPDATER)
4632N/A $(QUIETLY) cp $< $@; chmod +x $@
4632N/A
4632N/A# This action refreshes all generated adlc files simultaneously.
4632N/A# The way it works is this:
4632N/A# 1) create a scratch directory to work in.
4632N/A# 2) if the current working directory does not have $(ADLC_UPDATER), copy it.
4632N/A# 3) run the compiled adlc executable. This will create new adlc files in the scratch directory.
4632N/A# 4) call $(ADLC_UPDATER) on each generated adlc file. It will selectively update changed or missing files.
4632N/A# 5) If we actually updated any files, echo a notice.
4632N/A#
4632N/Arefresh_adfiles: $(EXEC) $(SOURCE.AD) $(ADLC_UPDATER)
4632N/A @rm -rf $(TEMPDIR); mkdir $(TEMPDIR)
4632N/A $(QUIETLY) $(EXEC) $(ADLCFLAGS) $(SOURCE.AD) \
4632N/A -c$(TEMPDIR)/ad_$(Platform_arch_model).cpp -h$(TEMPDIR)/ad_$(Platform_arch_model).hpp -a$(TEMPDIR)/dfa_$(Platform_arch_model).cpp -v$(TEMPDIR)/adGlobals_$(Platform_arch_model).hpp \
4632N/A || { rm -rf $(TEMPDIR); exit 1; }
4632N/A $(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model).cpp $(TEMPDIR) $(OUTDIR)
4632N/A $(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model).hpp $(TEMPDIR) $(OUTDIR)
4632N/A $(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_clone.cpp $(TEMPDIR) $(OUTDIR)
4632N/A $(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_expand.cpp $(TEMPDIR) $(OUTDIR)
4632N/A $(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_format.cpp $(TEMPDIR) $(OUTDIR)
4632N/A $(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_gen.cpp $(TEMPDIR) $(OUTDIR)
4632N/A $(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_misc.cpp $(TEMPDIR) $(OUTDIR)
4632N/A $(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_peephole.cpp $(TEMPDIR) $(OUTDIR)
4632N/A $(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_pipeline.cpp $(TEMPDIR) $(OUTDIR)
4632N/A $(QUIETLY) ./$(ADLC_UPDATER) adGlobals_$(Platform_arch_model).hpp $(TEMPDIR) $(OUTDIR)
4632N/A $(QUIETLY) ./$(ADLC_UPDATER) dfa_$(Platform_arch_model).cpp $(TEMPDIR) $(OUTDIR)
4632N/A $(QUIETLY) [ -f $(TEMPDIR)/made-change ] \
4632N/A || echo "Rescanned $(SOURCE.AD) but encountered no changes."
4632N/A $(QUIETLY) rm -rf $(TEMPDIR)
4632N/A
4632N/A
4632N/A# #########################################################################
4632N/A
4632N/A$(SOURCE.AD): $(SOURCES.AD)
4632N/A $(QUIETLY) $(PROCESS_AD_FILES) $(SOURCES.AD) > $(SOURCE.AD)
4632N/A
4632N/A#PROCESS_AD_FILES = cat
4632N/A# Pass through #line directives, in case user enables -g option above:
4632N/APROCESS_AD_FILES = awk '{ \
4632N/A if (CUR_FN != FILENAME) { CUR_FN=FILENAME; NR_BASE=NR-1; need_lineno=1 } \
4632N/A if (need_lineno && $$0 !~ /\/\//) \
4632N/A { print "\n\n\#line " (NR-NR_BASE) " \"" FILENAME "\""; need_lineno=0 }; \
4632N/A print }'
4632N/A
4632N/A$(OUTDIR)/%.o: %.cpp
4632N/A @echo Compiling $<
4632N/A $(QUIETLY) $(REMOVE_TARGET)
4632N/A $(QUIETLY) $(COMPILE.CC) -o $@ $< $(COMPILE_DONE)
4632N/A
4632N/A# Some object files are given a prefix, to disambiguate
4632N/A# them from objects of the same name built for the VM.
4632N/A$(OUTDIR)/adlc-%.o: %.cpp
4632N/A @echo Compiling $<
4632N/A $(QUIETLY) $(REMOVE_TARGET)
4632N/A $(QUIETLY) $(COMPILE.CC) -o $@ $< $(COMPILE_DONE)
4632N/A
4632N/A# #########################################################################
4632N/A
4632N/Aclean :
4632N/A rm $(OBJECTS)
4632N/A
4632N/Acleanall :
4632N/A rm $(OBJECTS) $(EXEC)
4632N/A
4632N/A# #########################################################################
4632N/A
4632N/A.PHONY: all dump refresh_adfiles clean cleanall
4632N/A