make/solaris/makefiles/adlc.make

Thu, 12 Mar 2009 18:16:36 -0700

author
trims
date
Thu, 12 Mar 2009 18:16:36 -0700
changeset 1063
7bb995fbd3c0
parent 1014
0fbdb4381b99
parent 1038
dbbe28fc66b5
child 1256
d1fe2c2fbdac
permissions
-rw-r--r--

Merge

     1 #
     2 # Copyright 1997-2009 Sun Microsystems, Inc.  All Rights Reserved.
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4 #
     5 # This code is free software; you can redistribute it and/or modify it
     6 # under the terms of the GNU General Public License version 2 only, as
     7 # published by the Free Software Foundation.
     8 #
     9 # This code is distributed in the hope that it will be useful, but WITHOUT
    10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12 # version 2 for more details (a copy is included in the LICENSE file that
    13 # accompanied this code).
    14 #
    15 # You should have received a copy of the GNU General Public License version
    16 # 2 along with this work; if not, write to the Free Software Foundation,
    17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18 #
    19 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    20 # CA 95054 USA or visit www.sun.com if you need additional information or
    21 # have any questions.
    22 #  
    23 #
    25 # This makefile (adlc.make) is included from the adlc.make in the
    26 # build directories.
    27 # It knows how to compile, link, and run the adlc.
    29 include $(GAMMADIR)/make/$(Platform_os_family)/makefiles/rules.make
    31 # #########################################################################
    33 # OUTDIR must be the same as AD_Dir = $(GENERATED)/adfiles in top.make:
    34 GENERATED = ../generated
    35 OUTDIR  = $(GENERATED)/adfiles
    37 ARCH = $(Platform_arch)
    38 OS = $(Platform_os_family)
    40 SOURCE.AD = $(OUTDIR)/$(OS)_$(Platform_arch_model).ad 
    42 SOURCES.AD = $(GAMMADIR)/src/cpu/$(ARCH)/vm/$(Platform_arch_model).ad \
    43 	     $(GAMMADIR)/src/os_cpu/$(OS)_$(ARCH)/vm/$(OS)_$(Platform_arch_model).ad 
    45 Src_Dirs += $(GAMMADIR)/src/share/vm/adlc
    47 EXEC	= $(OUTDIR)/adlc
    49 # set VPATH so make knows where to look for source files
    50 Src_Dirs_V = ${Src_Dirs} $(GENERATED)/incls
    51 VPATH    += $(Src_Dirs_V:%=%:)
    53 # set INCLUDES for C preprocessor
    54 Src_Dirs_I = ${Src_Dirs} $(GENERATED)
    55 INCLUDES += $(Src_Dirs_I:%=-I%)
    57 # set flags for adlc compilation
    58 CPPFLAGS = $(SYSDEFS) $(INCLUDES)
    60 # Force assertions on.
    61 CPPFLAGS += -DASSERT
    63 ifndef USE_GCC
    64   # We need libCstd.so for adlc 
    65   CFLAGS += -library=Cstd -g
    66   LFLAGS += -library=Cstd -g
    67 endif
    69 # CFLAGS_WARN holds compiler options to suppress/enable warnings.
    70 # Compiler warnings are treated as errors
    71 CFLAGS_WARN = +w -errwarn
    72 CFLAGS += $(CFLAGS_WARN)
    74 ifeq ("${Platform_compiler}", "sparcWorks")
    75 # Enable the following CFLAGS addition if you need to compare the
    76 # built ELF objects.
    77 #
    78 # The -g option makes static data global and the "-Qoption ccfe
    79 # -xglobalstatic" option tells the compiler to not globalize static
    80 # data using a unique globalization prefix. Instead force the use
    81 # of a static globalization prefix based on the source filepath so
    82 # the objects from two identical compilations are the same.
    83 #CFLAGS += -Qoption ccfe -xglobalstatic
    84 endif # Platform_compiler == sparcWorks
    86 OBJECTNAMES = \
    87 	adlparse.o \
    88 	archDesc.o \
    89 	arena.o \
    90 	dfa.o \
    91 	dict2.o \
    92 	filebuff.o \
    93 	forms.o \
    94 	formsopt.o \
    95 	formssel.o \
    96 	main.o \
    97 	adlc-opcodes.o \
    98 	output_c.o \
    99 	output_h.o \
   101 OBJECTS = $(OBJECTNAMES:%=$(OUTDIR)/%)
   103 GENERATEDNAMES = \
   104         ad_$(Platform_arch_model).cpp \
   105         ad_$(Platform_arch_model).hpp \
   106         ad_$(Platform_arch_model)_clone.cpp \
   107         ad_$(Platform_arch_model)_expand.cpp \
   108         ad_$(Platform_arch_model)_format.cpp \
   109         ad_$(Platform_arch_model)_gen.cpp \
   110         ad_$(Platform_arch_model)_misc.cpp \
   111         ad_$(Platform_arch_model)_peephole.cpp \
   112         ad_$(Platform_arch_model)_pipeline.cpp \
   113         adGlobals_$(Platform_arch_model).hpp \
   114         dfa_$(Platform_arch_model).cpp \
   116 GENERATEDFILES = $(GENERATEDNAMES:%=$(OUTDIR)/%)
   118 # #########################################################################
   120 all: $(EXEC)
   122 $(EXEC) : $(OBJECTS)
   123 	@echo Making adlc
   124 	$(QUIETLY) $(LINK_NOPROF.CC) -o $(EXEC) $(OBJECTS)
   126 # Random dependencies:
   127 $(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
   129 # The source files refer to ostream.h, which sparcworks calls iostream.h
   130 $(OBJECTS): ostream.h
   132 ostream.h :
   133 	@echo >$@ '#include <iostream.h>'
   135 dump:
   136 	: OUTDIR=$(OUTDIR)
   137 	: OBJECTS=$(OBJECTS)
   138 	: products = $(GENERATEDFILES)
   140 all: $(GENERATEDFILES)
   142 $(GENERATEDFILES): refresh_adfiles
   144 # Get a unique temporary directory name, so multiple makes can run in parallel.
   145 # Note that product files are updated via "mv", which is atomic.
   146 TEMPDIR := $(OUTDIR)/mktmp$(shell echo $$$$)
   148 # Pass -D flags into ADLC.
   149 ADLCFLAGS += $(SYSDEFS)
   151 # Note "+="; it is a hook so flags.make can add more flags, like -g or -DFOO.
   152 ADLCFLAGS += -q -T
   154 # Normally, debugging is done directly on the ad_<arch>*.cpp files.
   155 # But -g will put #line directives in those files pointing back to <arch>.ad.
   156 #ADLCFLAGS += -g
   158 ifdef LP64
   159 ADLCFLAGS += -D_LP64
   160 else
   161 ADLCFLAGS += -U_LP64
   162 endif
   164 #
   165 # adlc_updater is a simple sh script, under sccs control. It is
   166 # used to selectively update generated adlc files. This should
   167 # provide a nice compilation speed improvement.
   168 #
   169 ADLC_UPDATER_DIRECTORY = $(GAMMADIR)/make/$(OS)
   170 ADLC_UPDATER = adlc_updater
   171 $(ADLC_UPDATER): $(ADLC_UPDATER_DIRECTORY)/$(ADLC_UPDATER)
   172 	$(QUIETLY) cp $< $@; chmod +x $@
   174 # This action refreshes all generated adlc files simultaneously.
   175 # The way it works is this:
   176 # 1) create a scratch directory to work in.
   177 # 2) if the current working directory does not have $(ADLC_UPDATER), copy it.
   178 # 3) run the compiled adlc executable. This will create new adlc files in the scratch directory.
   179 # 4) call $(ADLC_UPDATER) on each generated adlc file. It will selectively update changed or missing files.
   180 # 5) If we actually updated any files, echo a notice.
   181 #
   182 refresh_adfiles: $(EXEC) $(SOURCE.AD) $(ADLC_UPDATER)
   183 	@rm -rf $(TEMPDIR); mkdir $(TEMPDIR)
   184 	$(QUIETLY) $(EXEC) $(ADLCFLAGS) $(SOURCE.AD) \
   185  -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 \
   186 	    || { rm -rf $(TEMPDIR); exit 1; }
   187 	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model).cpp $(TEMPDIR) $(OUTDIR)
   188 	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model).hpp $(TEMPDIR) $(OUTDIR)
   189 	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_clone.cpp $(TEMPDIR) $(OUTDIR)
   190 	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_expand.cpp $(TEMPDIR) $(OUTDIR)
   191 	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_format.cpp $(TEMPDIR) $(OUTDIR)
   192 	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_gen.cpp $(TEMPDIR) $(OUTDIR)
   193 	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_misc.cpp $(TEMPDIR) $(OUTDIR)
   194 	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_peephole.cpp $(TEMPDIR) $(OUTDIR)
   195 	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_pipeline.cpp $(TEMPDIR) $(OUTDIR)
   196 	$(QUIETLY) ./$(ADLC_UPDATER) adGlobals_$(Platform_arch_model).hpp $(TEMPDIR) $(OUTDIR)
   197 	$(QUIETLY) ./$(ADLC_UPDATER) dfa_$(Platform_arch_model).cpp $(TEMPDIR) $(OUTDIR)
   198 	$(QUIETLY) [ -f $(TEMPDIR)/made-change ] \
   199 		|| echo "Rescanned $(SOURCE.AD) but encountered no changes."
   200 	$(QUIETLY) rm -rf $(TEMPDIR)
   203 # #########################################################################
   205 $(SOURCE.AD): $(SOURCES.AD)
   206 	$(QUIETLY) $(PROCESS_AD_FILES) $(SOURCES.AD) > $(SOURCE.AD)
   208 #PROCESS_AD_FILES = cat
   209 # Pass through #line directives, in case user enables -g option above:
   210 PROCESS_AD_FILES = awk '{ \
   211     if (CUR_FN != FILENAME) { CUR_FN=FILENAME; NR_BASE=NR-1; need_lineno=1 } \
   212     if (need_lineno && $$0 !~ /\/\//) \
   213       { print "\n\n\#line " (NR-NR_BASE) " \"" FILENAME "\""; need_lineno=0 }; \
   214     print }'
   216 $(OUTDIR)/%.o: %.cpp
   217 	@echo Compiling $<
   218 	$(QUIETLY) $(REMOVE_TARGET)
   219 	$(QUIETLY) $(COMPILE.CC) -o $@ $< $(COMPILE_DONE)
   221 # Some object files are given a prefix, to disambiguate
   222 # them from objects of the same name built for the VM.
   223 $(OUTDIR)/adlc-%.o: %.cpp
   224 	@echo Compiling $<
   225 	$(QUIETLY) $(REMOVE_TARGET)
   226 	$(QUIETLY) $(COMPILE.CC) -o $@ $< $(COMPILE_DONE)
   228 # #########################################################################
   230 clean	:
   231 	rm $(OBJECTS)
   233 cleanall :
   234 	rm $(OBJECTS) $(EXEC)
   236 # #########################################################################
   238 .PHONY: all dump refresh_adfiles clean cleanall

mercurial