make/linux/makefiles/adlc.make

Thu, 08 May 2014 17:19:49 -0400

author
coleenp
date
Thu, 08 May 2014 17:19:49 -0400
changeset 6823
21444610cb92
parent 6198
55fb97c4c58d
child 6876
710a3c8b516e
child 9516
359ded4897e9
permissions
-rw-r--r--

8015256: Better class accessibility
Summary: Improve protection domain check in forName()
Reviewed-by: mchung, acorn, jdn

     1 #
     2 # Copyright (c) 1999, 2013, Oracle and/or its affiliates. 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20 # or visit www.oracle.com if you need additional information or have any
    21 # 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 ifeq ("${Platform_arch_model}", "${Platform_arch}")
    43   SOURCES.AD = \
    44   $(call altsrc-replace,$(HS_COMMON_SRC)/cpu/$(ARCH)/vm/$(Platform_arch_model).ad) 
    45 else
    46   SOURCES.AD = \
    47   $(call altsrc-replace,$(HS_COMMON_SRC)/cpu/$(ARCH)/vm/$(Platform_arch_model).ad) \
    48   $(call altsrc-replace,$(HS_COMMON_SRC)/cpu/$(ARCH)/vm/$(Platform_arch).ad) 
    49 endif
    51 EXEC	= $(OUTDIR)/adlc
    53 # set VPATH so make knows where to look for source files
    54 Src_Dirs_V += $(GAMMADIR)/src/share/vm/adlc
    55 VPATH += $(Src_Dirs_V:%=%:)
    57 # set INCLUDES for C preprocessor
    58 Src_Dirs_I += $(GAMMADIR)/src/share/vm/adlc $(GENERATED)
    59 INCLUDES += $(Src_Dirs_I:%=-I%)
    61 # set flags for adlc compilation
    62 CXXFLAGS = $(SYSDEFS) $(INCLUDES)
    64 # Force assertions on.
    65 CXXFLAGS += -DASSERT
    67 # CFLAGS_WARN holds compiler options to suppress/enable warnings.
    68 # Compiler warnings are treated as errors
    69 CFLAGS_WARN = $(WARNINGS_ARE_ERRORS)
    70 CFLAGS += $(CFLAGS_WARN)
    72 OBJECTNAMES = \
    73 	adlparse.o \
    74 	archDesc.o \
    75 	arena.o \
    76 	dfa.o \
    77 	dict2.o \
    78 	filebuff.o \
    79 	forms.o \
    80 	formsopt.o \
    81 	formssel.o \
    82 	main.o \
    83 	adlc-opcodes.o \
    84 	output_c.o \
    85 	output_h.o \
    87 OBJECTS = $(OBJECTNAMES:%=$(OUTDIR)/%)
    89 GENERATEDNAMES = \
    90         ad_$(Platform_arch_model).cpp \
    91         ad_$(Platform_arch_model).hpp \
    92         ad_$(Platform_arch_model)_clone.cpp \
    93         ad_$(Platform_arch_model)_expand.cpp \
    94         ad_$(Platform_arch_model)_format.cpp \
    95         ad_$(Platform_arch_model)_gen.cpp \
    96         ad_$(Platform_arch_model)_misc.cpp \
    97         ad_$(Platform_arch_model)_peephole.cpp \
    98         ad_$(Platform_arch_model)_pipeline.cpp \
    99         adGlobals_$(Platform_arch_model).hpp \
   100         dfa_$(Platform_arch_model).cpp \
   102 GENERATEDFILES = $(GENERATEDNAMES:%=$(OUTDIR)/%)
   104 # #########################################################################
   106 all: $(EXEC)
   108 $(EXEC) : $(OBJECTS)
   109 	@echo Making adlc
   110 	$(QUIETLY) $(filter-out $(ARCHFLAG),$(HOST.LINK_NOPROF.CXX)) -o $(EXEC) $(OBJECTS)
   112 # Random dependencies:
   113 $(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
   115 # The source files refer to ostream.h, which sparcworks calls iostream.h
   116 $(OBJECTS): ostream.h
   118 ostream.h :
   119 	@echo >$@ '#include <iostream.h>'
   121 dump:
   122 	: OUTDIR=$(OUTDIR)
   123 	: OBJECTS=$(OBJECTS)
   124 	: products = $(GENERATEDFILES)
   126 all: $(GENERATEDFILES)
   128 $(GENERATEDFILES): refresh_adfiles
   130 # Get a unique temporary directory name, so multiple makes can run in parallel.
   131 # Note that product files are updated via "mv", which is atomic.
   132 TEMPDIR := $(OUTDIR)/mktmp$(shell echo $$$$)
   134 ifneq ($(DEBUG_BINARIES), true)
   135   # Debuggable by default (unless already done by DEBUG_BINARIES)
   136   CFLAGS += -g
   137 endif
   139 # Pass -D flags into ADLC.
   140 ADLCFLAGS += $(SYSDEFS)
   142 # Note "+="; it is a hook so flags.make can add more flags, like -g or -DFOO.
   143 ADLCFLAGS += -q -T
   145 # Normally, debugging is done directly on the ad_<arch>*.cpp files.
   146 # But -g will put #line directives in those files pointing back to <arch>.ad.
   147 # Some builds of gcc 3.2 have a bug that gets tickled by the extra #line directives
   148 # so skip it for 3.2 and ealier.
   149 ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 3 \) \))" "0"
   150 ADLCFLAGS += -g
   151 endif
   153 ifdef LP64
   154 ADLCFLAGS += -D_LP64
   155 else
   156 ADLCFLAGS += -U_LP64
   157 endif
   159 #
   160 # adlc_updater is a simple sh script, under sccs control. It is
   161 # used to selectively update generated adlc files. This should
   162 # provide a nice compilation speed improvement.
   163 #
   164 ADLC_UPDATER_DIRECTORY = $(GAMMADIR)/make/$(OS)
   165 ADLC_UPDATER = adlc_updater
   166 $(ADLC_UPDATER): $(ADLC_UPDATER_DIRECTORY)/$(ADLC_UPDATER)
   167 	$(QUIETLY) cp $< $@; chmod +x $@
   169 # This action refreshes all generated adlc files simultaneously.
   170 # The way it works is this:
   171 # 1) create a scratch directory to work in.
   172 # 2) if the current working directory does not have $(ADLC_UPDATER), copy it.
   173 # 3) run the compiled adlc executable. This will create new adlc files in the scratch directory.
   174 # 4) call $(ADLC_UPDATER) on each generated adlc file. It will selectively update changed or missing files.
   175 # 5) If we actually updated any files, echo a notice.
   176 #
   177 refresh_adfiles: $(EXEC) $(SOURCE.AD) $(ADLC_UPDATER)
   178 	@rm -rf $(TEMPDIR); mkdir $(TEMPDIR)
   179 	$(QUIETLY) $(EXEC) $(ADLCFLAGS) $(SOURCE.AD) \
   180  -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 \
   181 	    || { rm -rf $(TEMPDIR); exit 1; }
   182 	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model).cpp $(TEMPDIR) $(OUTDIR)
   183 	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model).hpp $(TEMPDIR) $(OUTDIR)
   184 	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_clone.cpp $(TEMPDIR) $(OUTDIR)
   185 	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_expand.cpp $(TEMPDIR) $(OUTDIR)
   186 	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_format.cpp $(TEMPDIR) $(OUTDIR)
   187 	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_gen.cpp $(TEMPDIR) $(OUTDIR)
   188 	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_misc.cpp $(TEMPDIR) $(OUTDIR)
   189 	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_peephole.cpp $(TEMPDIR) $(OUTDIR)
   190 	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_pipeline.cpp $(TEMPDIR) $(OUTDIR)
   191 	$(QUIETLY) ./$(ADLC_UPDATER) adGlobals_$(Platform_arch_model).hpp $(TEMPDIR) $(OUTDIR)
   192 	$(QUIETLY) ./$(ADLC_UPDATER) dfa_$(Platform_arch_model).cpp $(TEMPDIR) $(OUTDIR)
   193 	$(QUIETLY) [ -f $(TEMPDIR)/made-change ] \
   194 		|| echo "Rescanned $(SOURCE.AD) but encountered no changes."
   195 	$(QUIETLY) rm -rf $(TEMPDIR)
   198 # #########################################################################
   200 $(SOURCE.AD): $(SOURCES.AD)
   201 	$(QUIETLY) $(PROCESS_AD_FILES) $(SOURCES.AD) > $(SOURCE.AD)
   203 #PROCESS_AD_FILES = cat
   204 # Pass through #line directives, in case user enables -g option above:
   205 PROCESS_AD_FILES = awk '{ \
   206     if (CUR_FN != FILENAME) { CUR_FN=FILENAME; NR_BASE=NR-1; need_lineno=1 } \
   207     if (need_lineno && $$0 !~ /\/\//) \
   208       { print "\n\n\#line " (NR-NR_BASE) " \"" FILENAME "\""; need_lineno=0 }; \
   209     print }'
   211 $(OUTDIR)/%.o: %.cpp
   212 	@echo Compiling $<
   213 	$(QUIETLY) $(REMOVE_TARGET)
   214 	$(QUIETLY) $(filter-out $(ARCHFLAG),$(HOST.COMPILE.CXX)) -o $@ $< $(COMPILE_DONE)
   216 # Some object files are given a prefix, to disambiguate
   217 # them from objects of the same name built for the VM.
   218 $(OUTDIR)/adlc-%.o: %.cpp
   219 	@echo Compiling $<
   220 	$(QUIETLY) $(REMOVE_TARGET)
   221 	$(QUIETLY) $(filter-out $(ARCHFLAG),$(HOST.COMPILE.CXX)) -o $@ $< $(COMPILE_DONE)
   223 # #########################################################################
   225 clean	:
   226 	rm $(OBJECTS)
   228 cleanall :
   229 	rm $(OBJECTS) $(EXEC)
   231 # #########################################################################
   233 .PHONY: all dump refresh_adfiles clean cleanall

mercurial