hotspot/make/solaris/makefiles/adlc.make
author mikael
Tue, 24 Dec 2013 11:48:39 -0800
changeset 22234 da823d78ad65
parent 19280 17dd83a6dd79
child 26691 40ea2c41f53b
permissions -rw-r--r--
8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013 Summary: Copyright year updated for files modified during 2013 Reviewed-by: twisti, iveresov
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
#
22234
da823d78ad65 8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents: 19280
diff changeset
     2
# Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
# accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
#
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5352
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5352
diff changeset
    20
# or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5352
diff changeset
    21
# questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
#  
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# This makefile (adlc.make) is included from the adlc.make in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# build directories.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
# It knows how to compile, link, and run the adlc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
338
5cf9f61d76f4 6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents: 1
diff changeset
    29
include $(GAMMADIR)/make/$(Platform_os_family)/makefiles/rules.make
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7397
diff changeset
    30
include $(GAMMADIR)/make/altsrc.make
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
# #########################################################################
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
# OUTDIR must be the same as AD_Dir = $(GENERATED)/adfiles in top.make:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
GENERATED = ../generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
OUTDIR  = $(GENERATED)/adfiles
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
ARCH = $(Platform_arch)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
OS = $(Platform_os_family)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
SOURCE.AD = $(OUTDIR)/$(OS)_$(Platform_arch_model).ad 
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
11429
e894217a5d94 7121648: Use 3-operands SIMD instructions on x86 with AVX
kvn
parents: 8921
diff changeset
    43
ifeq ("${Platform_arch_model}", "${Platform_arch}")
e894217a5d94 7121648: Use 3-operands SIMD instructions on x86 with AVX
kvn
parents: 8921
diff changeset
    44
  SOURCES.AD = \
19280
17dd83a6dd79 8022475: Remove unneeded ad-files
adlertz
parents: 13963
diff changeset
    45
  $(call altsrc-replace,$(HS_COMMON_SRC)/cpu/$(ARCH)/vm/$(Platform_arch_model).ad) 
11429
e894217a5d94 7121648: Use 3-operands SIMD instructions on x86 with AVX
kvn
parents: 8921
diff changeset
    46
else
e894217a5d94 7121648: Use 3-operands SIMD instructions on x86 with AVX
kvn
parents: 8921
diff changeset
    47
  SOURCES.AD = \
e894217a5d94 7121648: Use 3-operands SIMD instructions on x86 with AVX
kvn
parents: 8921
diff changeset
    48
  $(call altsrc-replace,$(HS_COMMON_SRC)/cpu/$(ARCH)/vm/$(Platform_arch_model).ad) \
19280
17dd83a6dd79 8022475: Remove unneeded ad-files
adlertz
parents: 13963
diff changeset
    49
  $(call altsrc-replace,$(HS_COMMON_SRC)/cpu/$(ARCH)/vm/$(Platform_arch).ad) 
11429
e894217a5d94 7121648: Use 3-operands SIMD instructions on x86 with AVX
kvn
parents: 8921
diff changeset
    50
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
EXEC	= $(OUTDIR)/adlc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
# set VPATH so make knows where to look for source files
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    55
Src_Dirs_V += $(GAMMADIR)/src/share/vm/adlc
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    56
VPATH += $(Src_Dirs_V:%=%:)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
# set INCLUDES for C preprocessor
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    59
Src_Dirs_I += $(GAMMADIR)/src/share/vm/adlc $(GENERATED)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
INCLUDES += $(Src_Dirs_I:%=-I%)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
    62
# set flags for adlc compilation
11721
dcd1f62c9caf 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 11429
diff changeset
    63
CXXFLAGS = $(SYSDEFS) $(INCLUDES)
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
    64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
# Force assertions on.
11721
dcd1f62c9caf 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 11429
diff changeset
    66
CXXFLAGS += -DASSERT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
ifndef USE_GCC
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  # We need libCstd.so for adlc 
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  CFLAGS += -library=Cstd -g
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  LFLAGS += -library=Cstd -g
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
# CFLAGS_WARN holds compiler options to suppress/enable warnings.
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 1662
diff changeset
    75
# Compiler warnings are treated as errors
3174
ccc5c0d5c20c 6851829: solaris build fails with 5.8 compilers
twisti
parents: 2154
diff changeset
    76
ifeq ($(shell expr $(COMPILER_REV_NUMERIC) \>= 509), 1)
ccc5c0d5c20c 6851829: solaris build fails with 5.8 compilers
twisti
parents: 2154
diff changeset
    77
  CFLAGS_WARN = +w -errwarn
ccc5c0d5c20c 6851829: solaris build fails with 5.8 compilers
twisti
parents: 2154
diff changeset
    78
endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
CFLAGS += $(CFLAGS_WARN)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
ifeq ("${Platform_compiler}", "sparcWorks")
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
# Enable the following CFLAGS addition if you need to compare the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
# built ELF objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
# The -g option makes static data global and the "-Qoption ccfe
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
# -xglobalstatic" option tells the compiler to not globalize static
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
# data using a unique globalization prefix. Instead force the use
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
# of a static globalization prefix based on the source filepath so
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
# the objects from two identical compilations are the same.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
#CFLAGS += -Qoption ccfe -xglobalstatic
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
endif # Platform_compiler == sparcWorks
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
OBJECTNAMES = \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
	adlparse.o \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
	archDesc.o \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
	arena.o \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
	dfa.o \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
	dict2.o \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
	filebuff.o \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
	forms.o \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
	formsopt.o \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
	formssel.o \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
	main.o \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
	adlc-opcodes.o \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
	output_c.o \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
	output_h.o \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
OBJECTS = $(OBJECTNAMES:%=$(OUTDIR)/%)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
GENERATEDNAMES = \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
        ad_$(Platform_arch_model).cpp \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
        ad_$(Platform_arch_model).hpp \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
        ad_$(Platform_arch_model)_clone.cpp \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
        ad_$(Platform_arch_model)_expand.cpp \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
        ad_$(Platform_arch_model)_format.cpp \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
        ad_$(Platform_arch_model)_gen.cpp \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
        ad_$(Platform_arch_model)_misc.cpp \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
        ad_$(Platform_arch_model)_peephole.cpp \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
        ad_$(Platform_arch_model)_pipeline.cpp \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
        adGlobals_$(Platform_arch_model).hpp \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
        dfa_$(Platform_arch_model).cpp \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
GENERATEDFILES = $(GENERATEDNAMES:%=$(OUTDIR)/%)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
# #########################################################################
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
all: $(EXEC)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
$(EXEC) : $(OBJECTS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
	@echo Making adlc
11721
dcd1f62c9caf 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 11429
diff changeset
   131
	$(QUIETLY) $(LINK_NOPROF.CXX) -o $(EXEC) $(OBJECTS)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
# Random dependencies:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
$(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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
# The source files refer to ostream.h, which sparcworks calls iostream.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
$(OBJECTS): ostream.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
ostream.h :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
	@echo >$@ '#include <iostream.h>'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
dump:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
	: OUTDIR=$(OUTDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
	: OBJECTS=$(OBJECTS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
	: products = $(GENERATEDFILES)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
all: $(GENERATEDFILES)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
$(GENERATEDFILES): refresh_adfiles
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
# Get a unique temporary directory name, so multiple makes can run in parallel.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
# Note that product files are updated via "mv", which is atomic.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
TEMPDIR := $(OUTDIR)/mktmp$(shell echo $$$$)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 3174
diff changeset
   155
# Debuggable by default
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 3174
diff changeset
   156
CFLAGS += -g
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 3174
diff changeset
   157
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   158
# Pass -D flags into ADLC.
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   159
ADLCFLAGS += $(SYSDEFS)
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   160
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   161
# Note "+="; it is a hook so flags.make can add more flags, like -g or -DFOO.
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   162
ADLCFLAGS += -q -T
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   163
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   164
# Normally, debugging is done directly on the ad_<arch>*.cpp files.
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   165
# But -g will put #line directives in those files pointing back to <arch>.ad.
5352
cee8f7acb7bc 6946040: add intrinsic for short and char reverseBytes
never
parents: 3174
diff changeset
   166
ADLCFLAGS += -g
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
ifdef LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
ADLCFLAGS += -D_LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
ADLCFLAGS += -U_LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
# adlc_updater is a simple sh script, under sccs control. It is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
# used to selectively update generated adlc files. This should
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
# provide a nice compilation speed improvement.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
#
338
5cf9f61d76f4 6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents: 1
diff changeset
   179
ADLC_UPDATER_DIRECTORY = $(GAMMADIR)/make/$(OS)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
ADLC_UPDATER = adlc_updater
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   181
$(ADLC_UPDATER): $(ADLC_UPDATER_DIRECTORY)/$(ADLC_UPDATER)
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   182
	$(QUIETLY) cp $< $@; chmod +x $@
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
# This action refreshes all generated adlc files simultaneously.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
# The way it works is this:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
# 1) create a scratch directory to work in.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
# 2) if the current working directory does not have $(ADLC_UPDATER), copy it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
# 3) run the compiled adlc executable. This will create new adlc files in the scratch directory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
# 4) call $(ADLC_UPDATER) on each generated adlc file. It will selectively update changed or missing files.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
# 5) If we actually updated any files, echo a notice.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
#
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   192
refresh_adfiles: $(EXEC) $(SOURCE.AD) $(ADLC_UPDATER)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
	@rm -rf $(TEMPDIR); mkdir $(TEMPDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
	$(QUIETLY) $(EXEC) $(ADLCFLAGS) $(SOURCE.AD) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
 -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 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
	    || { rm -rf $(TEMPDIR); exit 1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model).cpp $(TEMPDIR) $(OUTDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model).hpp $(TEMPDIR) $(OUTDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_clone.cpp $(TEMPDIR) $(OUTDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_expand.cpp $(TEMPDIR) $(OUTDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_format.cpp $(TEMPDIR) $(OUTDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_gen.cpp $(TEMPDIR) $(OUTDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_misc.cpp $(TEMPDIR) $(OUTDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_peephole.cpp $(TEMPDIR) $(OUTDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
	$(QUIETLY) ./$(ADLC_UPDATER) ad_$(Platform_arch_model)_pipeline.cpp $(TEMPDIR) $(OUTDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
	$(QUIETLY) ./$(ADLC_UPDATER) adGlobals_$(Platform_arch_model).hpp $(TEMPDIR) $(OUTDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
	$(QUIETLY) ./$(ADLC_UPDATER) dfa_$(Platform_arch_model).cpp $(TEMPDIR) $(OUTDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
	$(QUIETLY) [ -f $(TEMPDIR)/made-change ] \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
		|| echo "Rescanned $(SOURCE.AD) but encountered no changes."
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
	$(QUIETLY) rm -rf $(TEMPDIR)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
# #########################################################################
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
$(SOURCE.AD): $(SOURCES.AD)
1662
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   216
	$(QUIETLY) $(PROCESS_AD_FILES) $(SOURCES.AD) > $(SOURCE.AD)
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   217
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   218
#PROCESS_AD_FILES = cat
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   219
# Pass through #line directives, in case user enables -g option above:
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   220
PROCESS_AD_FILES = awk '{ \
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   221
    if (CUR_FN != FILENAME) { CUR_FN=FILENAME; NR_BASE=NR-1; need_lineno=1 } \
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   222
    if (need_lineno && $$0 !~ /\/\//) \
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   223
      { print "\n\n\#line " (NR-NR_BASE) " \"" FILENAME "\""; need_lineno=0 }; \
76a93a5fb765 6771309: debugging AD files is difficult without #line directives in generated code
jrose
parents: 670
diff changeset
   224
    print }'
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
$(OUTDIR)/%.o: %.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
	@echo Compiling $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
	$(QUIETLY) $(REMOVE_TARGET)
11721
dcd1f62c9caf 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 11429
diff changeset
   229
	$(QUIETLY) $(COMPILE.CXX) -o $@ $< $(COMPILE_DONE)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
# Some object files are given a prefix, to disambiguate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
# them from objects of the same name built for the VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
$(OUTDIR)/adlc-%.o: %.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
	@echo Compiling $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
	$(QUIETLY) $(REMOVE_TARGET)
11721
dcd1f62c9caf 7141242: build-infra merge: Rename CPP->CXX and LINK->LD
erikj
parents: 11429
diff changeset
   236
	$(QUIETLY) $(COMPILE.CXX) -o $@ $< $(COMPILE_DONE)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
# #########################################################################
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
clean	:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
	rm $(OBJECTS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
cleanall :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
	rm $(OBJECTS) $(EXEC)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
# #########################################################################
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
.PHONY: all dump refresh_adfiles clean cleanall