make/linux/makefiles/vm.make

Wed, 03 Jul 2019 20:42:37 +0800

author
aoqi
date
Wed, 03 Jul 2019 20:42:37 +0800
changeset 9637
eef07cd490d4
parent 9448
73d689add964
parent 9634
d1520f0c3524
child 9852
70aa912cebe5
permissions
-rw-r--r--

Merge

     1 #
     2 # Copyright (c) 1999, 2019, 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 #
    26 # This file has been modified by Loongson Technology in 2018. These
    27 # modifications are Copyright (c) 2018 Loongson Technology, and are made
    28 # available on the same license terms set forth above.
    29 #
    31 # Rules to build JVM and related libraries, included from vm.make in the build
    32 # directory.
    34 # Common build rules.
    35 MAKEFILES_DIR=$(GAMMADIR)/make/$(Platform_os_family)/makefiles
    36 include $(MAKEFILES_DIR)/rules.make
    37 include $(GAMMADIR)/make/altsrc.make
    39 default: build
    41 #----------------------------------------------------------------------
    42 # Defs
    44 GENERATED     = ../generated
    45 DEP_DIR       = $(GENERATED)/dependencies
    47 # reads the generated files defining the set of .o's and the .o .h dependencies
    48 -include $(DEP_DIR)/*.d
    50 # read machine-specific adjustments (%%% should do this via buildtree.make?)
    51 ifeq ($(findstring true, $(JVM_VARIANT_ZERO) $(JVM_VARIANT_ZEROSHARK)), true)
    52   include $(MAKEFILES_DIR)/zeroshark.make
    53 else
    54   BUILDARCH_MAKE = $(MAKEFILES_DIR)/$(BUILDARCH).make
    55   ALT_BUILDARCH_MAKE = $(HS_ALT_MAKE)/$(Platform_os_family)/makefiles/$(BUILDARCH).make
    56   include $(if $(wildcard $(ALT_BUILDARCH_MAKE)),$(ALT_BUILDARCH_MAKE),$(BUILDARCH_MAKE))
    57 endif
    59 # set VPATH so make knows where to look for source files
    60 # Src_Dirs_V is everything in src/share/vm/*, plus the right os/*/vm and cpu/*/vm
    61 # The adfiles directory contains ad_<arch>.[ch]pp.
    62 # The jvmtifiles directory contains jvmti*.[ch]pp
    63 Src_Dirs_V += $(GENERATED)/adfiles $(GENERATED)/jvmtifiles $(GENERATED)/tracefiles
    64 VPATH += $(Src_Dirs_V:%=%:)
    66 # set INCLUDES for C preprocessor.
    67 Src_Dirs_I += $(GENERATED)
    68 # The order is important for the precompiled headers to work.
    69 INCLUDES += $(PRECOMPILED_HEADER_DIR:%=-I%) $(Src_Dirs_I:%=-I%)
    71 # SYMFLAG is used by {jsig,saproc}.make
    72 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
    73   # always build with debug info when we can create .debuginfo files
    74   SYMFLAG = -g
    75 else
    76   ifeq (${VERSION}, debug)
    77     SYMFLAG = -g
    78   else
    79     SYMFLAG =
    80   endif
    81 endif
    83 # HOTSPOT_RELEASE_VERSION and HOTSPOT_BUILD_VERSION are defined
    84 # in $(GAMMADIR)/make/defs.make
    85 ifeq ($(HOTSPOT_BUILD_VERSION),)
    86   BUILD_VERSION = -DHOTSPOT_RELEASE_VERSION="\"$(HOTSPOT_RELEASE_VERSION)\""
    87 else
    88   BUILD_VERSION = -DHOTSPOT_RELEASE_VERSION="\"$(HOTSPOT_RELEASE_VERSION)-$(HOTSPOT_BUILD_VERSION)\""
    89 endif
    91 # The following variables are defined in the generated flags.make file.
    92 BUILD_VERSION = -DHOTSPOT_RELEASE_VERSION="\"$(HS_BUILD_VER)\""
    93 JRE_VERSION   = -DJRE_RELEASE_VERSION="\"$(JRE_RELEASE_VER)\""
    94 HS_LIB_ARCH   = -DHOTSPOT_LIB_ARCH=\"$(LIBARCH)\"
    95 BUILD_TARGET  = -DHOTSPOT_BUILD_TARGET="\"$(TARGET)\""
    96 BUILD_USER    = -DHOTSPOT_BUILD_USER="\"$(HOTSPOT_BUILD_USER)\""
    97 VM_DISTRO     = -DHOTSPOT_VM_DISTRO="\"$(HOTSPOT_VM_DISTRO)\""
    99 CXXFLAGS =           \
   100   ${SYSDEFS}         \
   101   ${INCLUDES}        \
   102   ${BUILD_VERSION}   \
   103   ${BUILD_TARGET}    \
   104   ${BUILD_USER}      \
   105   ${HS_LIB_ARCH}     \
   106   ${VM_DISTRO}
   108 ifeq ($(MIPS_ABI),n32)
   109   CXXFLAGS +=   -DN32 
   110 else
   111   ifeq ($(MIPS_ABI),n64)
   112     CXXFLAGS +=   -DN64
   113   endif
   114 endif
   115 # This is VERY important! The version define must only be supplied to vm_version.o
   116 # If not, ccache will not re-use the cache at all, since the version string might contain
   117 # a time and date.
   118 ifdef LOONGSON_RUNTIME_NAME
   119   LOONGSON_VM_INFO = -DLOONGSON_RUNTIME_NAME="\"$(LOONGSON_RUNTIME_NAME)\""
   120 else
   121   LOONGSON_VM_INFO = -DLOONGSON_RUNTIME_NAME="\"\""
   122 endif
   123 CXXFLAGS/vmError.o += ${LOONGSON_VM_INFO}
   124 CXXFLAGS/vm_version.o += ${JRE_VERSION} ${VERSION_CFLAGS}
   125 CXXFLAGS/arguments.o += ${VERSION_CFLAGS}
   127 CXXFLAGS/BYFILE = $(CXXFLAGS/$@)
   129 # File specific flags
   130 CXXFLAGS += $(CXXFLAGS/BYFILE)
   132 # Large File Support
   133 ifneq ($(LP64), 1)
   134 CXXFLAGS/ostream.o += -D_FILE_OFFSET_BITS=64
   135 endif # ifneq ($(LP64), 1)
   137 # CFLAGS_WARN holds compiler options to suppress/enable warnings.
   138 CFLAGS += $(CFLAGS_WARN/BYFILE)
   140 # Do not use C++ exception handling
   141 CFLAGS += $(CFLAGS/NOEX)
   143 # Extra flags from gnumake's invocation or environment
   144 CFLAGS += $(EXTRA_CFLAGS)
   145 LFLAGS += $(EXTRA_CFLAGS) $(EXTRA_LDFLAGS)
   147 # Don't set excutable bit on stack segment
   148 # the same could be done by separate execstack command
   149 LFLAGS += -Xlinker -z -Xlinker noexecstack
   151 LIBS += -lm -ldl -lpthread
   153 # By default, link the *.o into the library, not the executable.
   154 LINK_INTO$(LINK_INTO) = LIBJVM
   156 JDK_LIBDIR = $(JAVA_HOME)/jre/lib/$(LIBARCH)
   158 #----------------------------------------------------------------------
   159 # jvm_db & dtrace
   160 include $(MAKEFILES_DIR)/dtrace.make
   162 #----------------------------------------------------------------------
   163 # JVM
   165 JVM      = jvm
   166 LIBJVM   = lib$(JVM).so
   168 LIBJVM_DEBUGINFO   = lib$(JVM).debuginfo
   169 LIBJVM_DIZ         = lib$(JVM).diz
   171 SPECIAL_PATHS:=adlc c1 gc_implementation opto shark libadt
   173 SOURCE_PATHS=\
   174   $(shell find $(HS_COMMON_SRC)/share/vm/* -type d \! \
   175       \( -name DUMMY $(foreach dir,$(SPECIAL_PATHS),-o -name $(dir)) \))
   176 SOURCE_PATHS+=$(HS_COMMON_SRC)/os/$(Platform_os_family)/vm
   177 SOURCE_PATHS+=$(HS_COMMON_SRC)/os/posix/vm
   178 SOURCE_PATHS+=$(HS_COMMON_SRC)/cpu/$(Platform_arch)/vm
   179 SOURCE_PATHS+=$(HS_COMMON_SRC)/os_cpu/$(Platform_os_arch)/vm
   181 CORE_PATHS=$(foreach path,$(SOURCE_PATHS),$(call altsrc,$(path)) $(path))
   182 CORE_PATHS+=$(GENERATED)/jvmtifiles $(GENERATED)/tracefiles
   184 ifneq ($(INCLUDE_TRACE), false)
   185 CORE_PATHS+=$(shell if [ -d $(HS_ALT_SRC)/share/vm/jfr ]; then \
   186   find $(HS_ALT_SRC)/share/vm/jfr -type d; \
   187   fi)
   188 endif
   190 COMPILER1_PATHS := $(call altsrc,$(HS_COMMON_SRC)/share/vm/c1)
   191 COMPILER1_PATHS += $(HS_COMMON_SRC)/share/vm/c1
   193 COMPILER2_PATHS := $(call altsrc,$(HS_COMMON_SRC)/share/vm/opto)
   194 COMPILER2_PATHS += $(call altsrc,$(HS_COMMON_SRC)/share/vm/libadt)
   195 COMPILER2_PATHS += $(HS_COMMON_SRC)/share/vm/opto
   196 COMPILER2_PATHS += $(HS_COMMON_SRC)/share/vm/libadt
   197 COMPILER2_PATHS += $(GENERATED)/adfiles
   199 SHARK_PATHS := $(GAMMADIR)/src/share/vm/shark
   201 # Include dirs per type.
   202 Src_Dirs/CORE      := $(CORE_PATHS)
   203 Src_Dirs/COMPILER1 := $(CORE_PATHS) $(COMPILER1_PATHS)
   204 Src_Dirs/COMPILER2 := $(CORE_PATHS) $(COMPILER2_PATHS)
   205 Src_Dirs/TIERED    := $(CORE_PATHS) $(COMPILER1_PATHS) $(COMPILER2_PATHS)
   206 Src_Dirs/ZERO      := $(CORE_PATHS)
   207 Src_Dirs/SHARK     := $(CORE_PATHS) $(SHARK_PATHS)
   208 Src_Dirs := $(Src_Dirs/$(TYPE))
   210 COMPILER2_SPECIFIC_FILES := opto libadt bcEscapeAnalyzer.cpp c2_\* runtime_\*
   211 COMPILER1_SPECIFIC_FILES := c1_\*
   212 SHARK_SPECIFIC_FILES     := shark
   213 ZERO_SPECIFIC_FILES      := zero
   215 # Always exclude these.
   216 Src_Files_EXCLUDE += jsig.c jvmtiEnvRecommended.cpp jvmtiEnvStub.cpp
   218 # Exclude per type.
   219 Src_Files_EXCLUDE/CORE      := $(COMPILER1_SPECIFIC_FILES) $(COMPILER2_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES) ciTypeFlow.cpp
   220 Src_Files_EXCLUDE/COMPILER1 := $(COMPILER2_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES) ciTypeFlow.cpp
   221 Src_Files_EXCLUDE/COMPILER2 := $(COMPILER1_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES)
   222 Src_Files_EXCLUDE/TIERED    := $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES)
   223 Src_Files_EXCLUDE/ZERO      := $(COMPILER1_SPECIFIC_FILES) $(COMPILER2_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES) ciTypeFlow.cpp
   224 Src_Files_EXCLUDE/SHARK     := $(COMPILER1_SPECIFIC_FILES) $(COMPILER2_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES)
   226 Src_Files_EXCLUDE +=  $(Src_Files_EXCLUDE/$(TYPE))
   228 # Special handling of arch model.
   229 ifeq ($(Platform_arch_model), x86_32)
   230 Src_Files_EXCLUDE += \*x86_64\*
   231 endif
   232 ifeq ($(Platform_arch_model), x86_64)
   233 Src_Files_EXCLUDE += \*x86_32\*
   234 endif
   235 ifeq ($(Platform_arch_model), mips_32)
   236 Src_Files_EXCLUDE += \*mips_64\*
   237 endif
   238 ifeq ($(Platform_arch_model), mips_64)
   239 Src_Files_EXCLUDE += \*mips_32\*
   240 endif
   242 # Alternate vm.make
   243 # This has to be included here to allow changes to the source
   244 # directories and excluded files before they are expanded
   245 # by the definition of Src_Files.
   246 -include $(HS_ALT_MAKE)/$(Platform_os_family)/makefiles/vm.make
   248 # Locate all source files in the given directory, excluding files in Src_Files_EXCLUDE.
   249 define findsrc
   250 	$(notdir $(shell find $(1)/. ! -name . -prune \
   251 		-a \( -name \*.c -o -name \*.cpp -o -name \*.s \) \
   252 		-a ! \( -name DUMMY $(addprefix -o -name ,$(Src_Files_EXCLUDE)) \)))
   253 endef
   255 Src_Files := $(foreach e,$(Src_Dirs),$(call findsrc,$(e)))
   257 Obj_Files = $(sort $(addsuffix .o,$(basename $(Src_Files))))
   259 JVM_OBJ_FILES = $(Obj_Files)
   261 vm_version.o: $(filter-out vm_version.o,$(JVM_OBJ_FILES))
   263 mapfile : $(MAPFILE) vm.def mapfile_ext
   264 	rm -f $@
   265 	awk '{ if ($$0 ~ "INSERT VTABLE SYMBOLS HERE")	\
   266                  { system ("cat mapfile_ext"); system ("cat vm.def"); } \
   267                else					\
   268                  { print $$0 }				\
   269              }' > $@ < $(MAPFILE)
   271 mapfile_reorder : mapfile $(REORDERFILE)
   272 	rm -f $@
   273 	cat $^ > $@
   275 VMDEF_PAT  = ^_ZTV
   276 VMDEF_PAT := ^gHotSpotVM|$(VMDEF_PAT)
   277 VMDEF_PAT := ^UseSharedSpaces$$|$(VMDEF_PAT)
   278 VMDEF_PAT := ^_ZN9Arguments17SharedArchivePathE$$|$(VMDEF_PAT)
   280 vm.def: $(Res_Files) $(Obj_Files)
   281 	$(QUIETLY) $(NM) --defined-only $(Obj_Files) | sort -k3 -u | \
   282 	awk '$$3 ~ /$(VMDEF_PAT)/ { print "\t" $$3 ";" }' > $@
   284 mapfile_ext:
   285 	rm -f $@
   286 	touch $@
   287 	if [ -f $(HS_ALT_MAKE)/linux/makefiles/mapfile-ext ]; then \
   288 	  cat $(HS_ALT_MAKE)/linux/makefiles/mapfile-ext > $@; \
   289 	fi
   291 ifeq ($(JVM_VARIANT_ZEROSHARK), true)
   292   STATIC_CXX = false
   293 else
   294   ifeq ($(ZERO_LIBARCH), ppc64)
   295     STATIC_CXX = false
   296   else
   297     STATIC_CXX = true
   298   endif
   299 endif
   301 ifeq ($(LINK_INTO),AOUT)
   302   LIBJVM.o                 =
   303   LIBJVM_MAPFILE           =
   304   LIBS_VM                  = $(LIBS)
   305 else
   306   LIBJVM.o                 = $(JVM_OBJ_FILES)
   307   LIBJVM_MAPFILE$(LDNOMAP) = mapfile_reorder
   308   LFLAGS_VM$(LDNOMAP)      += $(MAPFLAG:FILENAME=$(LIBJVM_MAPFILE))
   309   LFLAGS_VM                += $(SONAMEFLAG:SONAME=$(LIBJVM))
   311   # JVM is statically linked with libgcc[_s] and libstdc++; this is needed to
   312   # get around library dependency and compatibility issues. Must use gcc not
   313   # g++ to link.
   314   ifeq ($(STATIC_CXX), true)
   315     LFLAGS_VM              += $(STATIC_LIBGCC)
   316     LIBS_VM                += $(STATIC_STDCXX)
   317   else
   318     LIBS_VM                += -lstdc++
   319   endif
   321   LIBS_VM                  += $(LIBS)
   322 endif
   323 ifeq ($(JVM_VARIANT_ZERO), true)
   324   LIBS_VM += $(LIBFFI_LIBS)
   325 endif
   326 ifeq ($(JVM_VARIANT_ZEROSHARK), true)
   327   LIBS_VM   += $(LIBFFI_LIBS) $(LLVM_LIBS)
   328   LFLAGS_VM += $(LLVM_LDFLAGS)
   329 endif
   331 LINK_VM = $(LINK_LIB.CC)
   333 # rule for building precompiled header
   334 $(PRECOMPILED_HEADER):
   335 	$(QUIETLY) echo Generating precompiled header $@
   336 	$(QUIETLY) mkdir -p $(PRECOMPILED_HEADER_DIR)
   337 	$(QUIETLY) $(COMPILE.CXX) $(DEPFLAGS) -x c++-header $(PRECOMPILED_HEADER_SRC) -o $@ $(COMPILE_DONE)
   339 # making the library:
   341 ifneq ($(JVM_BASE_ADDR),)
   342 # By default shared library is linked at base address == 0. Modify the
   343 # linker script if JVM prefers a different base location. It can also be
   344 # implemented with 'prelink -r'. But 'prelink' is not (yet) available on
   345 # our build platform (AS-2.1).
   346 LD_SCRIPT = libjvm.so.lds
   347 $(LD_SCRIPT): $(LIBJVM_MAPFILE)
   348 	$(QUIETLY) {                                                \
   349 	  rm -rf $@;                                                \
   350 	  $(LINK_VM) -Wl,--verbose $(LFLAGS_VM) 2>&1             |  \
   351 	    sed -e '/^======/,/^======/!d'                          \
   352 		-e '/^======/d'                                     \
   353 		-e 's/0\( + SIZEOF_HEADERS\)/$(JVM_BASE_ADDR)\1/'   \
   354 		> $@;                                               \
   355 	}
   356 LD_SCRIPT_FLAG = -Wl,-T,$(LD_SCRIPT)
   357 endif
   359 # With more recent Redhat releases (or the cutting edge version Fedora), if
   360 # SELinux is configured to be enabled, the runtime linker will fail to apply
   361 # the text relocation to libjvm.so considering that it is built as a non-PIC
   362 # DSO. To workaround that, we run chcon to libjvm.so after it is built. See
   363 # details in bug 6538311.
   364 $(LIBJVM): $(LIBJVM.o) $(LIBJVM_MAPFILE) $(LD_SCRIPT)
   365 	$(QUIETLY) {                                                    \
   366 	    echo Linking vm...;                                         \
   367 	    $(LINK_LIB.CXX/PRE_HOOK)                                     \
   368 	    $(LINK_VM) $(LD_SCRIPT_FLAG)                                \
   369 		       $(LFLAGS_VM) -o $@ $(sort $(LIBJVM.o)) $(LIBS_VM);       \
   370 	    $(LINK_LIB.CXX/POST_HOOK)                                    \
   371 	    rm -f $@.1; ln -s $@ $@.1;                                  \
   372             if [ \"$(CROSS_COMPILE_ARCH)\" = \"\" ] ; then                    \
   373 	      if [ -x /usr/sbin/selinuxenabled ] ; then                 \
   374 	        /usr/sbin/selinuxenabled;                               \
   375                 if [ $$? = 0 ] ; then					\
   376 		  /usr/bin/chcon -t textrel_shlib_t $@;                 \
   377 		  if [ $$? != 0 ]; then                                 \
   378 		    echo "ERROR: Cannot chcon $@";			\
   379 		  fi							\
   380 	        fi							\
   381 	      fi                                                        \
   382             fi 								\
   383 	}
   385 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
   386   ifneq ($(STRIP_POLICY),no_strip)
   387 	$(QUIETLY) $(OBJCOPY) --only-keep-debug $@ $(LIBJVM_DEBUGINFO)
   388 	$(QUIETLY) $(OBJCOPY) --add-gnu-debuglink=$(LIBJVM_DEBUGINFO) $@
   389   endif
   390   ifeq ($(STRIP_POLICY),all_strip)
   391 	$(QUIETLY) $(STRIP) $@
   392   else
   393     ifeq ($(STRIP_POLICY),min_strip)
   394 	$(QUIETLY) $(STRIP) -g $@
   395     endif
   396     # implied else here is no stripping at all
   397   endif
   398   ifneq ($(STRIP_POLICY),no_strip)
   399     ifeq ($(ZIP_DEBUGINFO_FILES),1)
   400 	$(ZIPEXE) -q -y $(LIBJVM_DIZ) $(LIBJVM_DEBUGINFO)
   401 	$(RM) $(LIBJVM_DEBUGINFO)
   402     endif
   403   endif
   404 endif
   406 DEST_SUBDIR        = $(JDK_LIBDIR)/$(VM_SUBDIR)
   407 DEST_JVM           = $(DEST_SUBDIR)/$(LIBJVM)
   408 DEST_JVM_DEBUGINFO = $(DEST_SUBDIR)/$(LIBJVM_DEBUGINFO)
   409 DEST_JVM_DIZ       = $(DEST_SUBDIR)/$(LIBJVM_DIZ)
   411 install_jvm: $(LIBJVM)
   412 	@echo "Copying $(LIBJVM) to $(DEST_JVM)"
   413 	$(QUIETLY) test -f $(LIBJVM_DEBUGINFO) && \
   414 	    cp -f $(LIBJVM_DEBUGINFO) $(DEST_JVM_DEBUGINFO)
   415 	$(QUIETLY) test -f $(LIBJVM_DIZ) && \
   416 	    cp -f $(LIBJVM_DIZ) $(DEST_JVM_DIZ)
   417 	$(QUIETLY) cp -f $(LIBJVM) $(DEST_JVM) && echo "Done"
   419 #----------------------------------------------------------------------
   420 # Other files
   422 # Signal interposition library
   423 include $(MAKEFILES_DIR)/jsig.make
   425 # Serviceability agent
   426 include $(MAKEFILES_DIR)/saproc.make
   428 #----------------------------------------------------------------------
   430 build: $(LIBJVM) $(LAUNCHER) $(LIBJSIG) $(LIBJVM_DB) $(BUILDLIBSAPROC) dtraceCheck
   432 install: install_jvm install_jsig install_saproc
   434 .PHONY: default build install install_jvm $(HS_ALT_MAKE)/$(Platform_os_family)/makefiles/$(BUILDARCH).make $(HS_ALT_MAKE)/$(Platform_os_family)/makefiles/vm.make

mercurial