make/linux/makefiles/vm.make

Wed, 11 Aug 2010 05:51:21 -0700

author
twisti
date
Wed, 11 Aug 2010 05:51:21 -0700
changeset 2047
d2ede61b7a12
parent 2036
126ea7725993
child 2314
f95d63e2154a
permissions
-rw-r--r--

6976186: integrate Shark HotSpot changes
Summary: Shark is a JIT compiler for Zero that uses the LLVM compiler infrastructure.
Reviewed-by: kvn, twisti
Contributed-by: Gary Benson <gbenson@redhat.com>

     1 #
     2 # Copyright (c) 1999, 2010, 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 # Rules to build JVM and related libraries, included from vm.make in the build
    26 # directory.
    28 # Common build rules.
    29 MAKEFILES_DIR=$(GAMMADIR)/make/$(Platform_os_family)/makefiles
    30 include $(MAKEFILES_DIR)/rules.make
    32 default: build
    34 #----------------------------------------------------------------------
    35 # Defs
    37 GENERATED     = ../generated
    39 # read a generated file defining the set of .o's and the .o .h dependencies
    40 include $(GENERATED)/Dependencies
    42 # read machine-specific adjustments (%%% should do this via buildtree.make?)
    43 ifeq ($(ZERO_BUILD), true)
    44   include $(MAKEFILES_DIR)/zeroshark.make
    45 else
    46   include $(MAKEFILES_DIR)/$(BUILDARCH).make
    47 endif
    49 # set VPATH so make knows where to look for source files
    50 # Src_Dirs is everything in src/share/vm/*, plus the right os/*/vm and cpu/*/vm
    51 # The incls directory contains generated header file lists for inclusion.
    52 # The adfiles directory contains ad_<arch>.[ch]pp.
    53 # The jvmtifiles directory contains jvmti*.[ch]pp
    54 Src_Dirs_V = $(GENERATED)/adfiles $(GENERATED)/jvmtifiles ${Src_Dirs} $(GENERATED)/incls
    55 VPATH    += $(Src_Dirs_V:%=%:)
    57 # set INCLUDES for C preprocessor
    58 Src_Dirs_I = $(PRECOMPILED_HEADER_DIR) $(GENERATED)/adfiles $(GENERATED)/jvmtifiles ${Src_Dirs} $(GENERATED)
    59 INCLUDES += $(Src_Dirs_I:%=-I%)
    61 ifeq (${VERSION}, debug)
    62   SYMFLAG = -g
    63 else
    64   SYMFLAG =
    65 endif
    67 # HOTSPOT_RELEASE_VERSION and HOTSPOT_BUILD_VERSION are defined 
    68 # in $(GAMMADIR)/make/defs.make
    69 ifeq ($(HOTSPOT_BUILD_VERSION),)
    70   BUILD_VERSION = -DHOTSPOT_RELEASE_VERSION="\"$(HOTSPOT_RELEASE_VERSION)\""
    71 else
    72   BUILD_VERSION = -DHOTSPOT_RELEASE_VERSION="\"$(HOTSPOT_RELEASE_VERSION)-$(HOTSPOT_BUILD_VERSION)\""
    73 endif
    75 # The following variables are defined in the generated flags.make file.
    76 BUILD_VERSION = -DHOTSPOT_RELEASE_VERSION="\"$(HS_BUILD_VER)\""
    77 JRE_VERSION   = -DJRE_RELEASE_VERSION="\"$(JRE_RELEASE_VER)\""
    78 HS_LIB_ARCH   = -DHOTSPOT_LIB_ARCH=\"$(LIBARCH)\"
    79 BUILD_TARGET  = -DHOTSPOT_BUILD_TARGET="\"$(TARGET)\""
    80 BUILD_USER    = -DHOTSPOT_BUILD_USER="\"$(HOTSPOT_BUILD_USER)\""
    81 VM_DISTRO     = -DHOTSPOT_VM_DISTRO="\"$(HOTSPOT_VM_DISTRO)\""
    83 CPPFLAGS =           \
    84   ${SYSDEFS}         \
    85   ${INCLUDES}        \
    86   ${BUILD_VERSION}   \
    87   ${BUILD_TARGET}    \
    88   ${BUILD_USER}      \
    89   ${HS_LIB_ARCH}     \
    90   ${JRE_VERSION}     \
    91   ${VM_DISTRO}
    93 # CFLAGS_WARN holds compiler options to suppress/enable warnings.
    94 CFLAGS += $(CFLAGS_WARN/BYFILE)
    96 # Do not use C++ exception handling
    97 CFLAGS += $(CFLAGS/NOEX)
    99 # Extra flags from gnumake's invocation or environment
   100 CFLAGS += $(EXTRA_CFLAGS)
   101 LFLAGS += $(EXTRA_CFLAGS)
   103 LIBS += -lm -ldl -lpthread
   105 # By default, link the *.o into the library, not the executable.
   106 LINK_INTO$(LINK_INTO) = LIBJVM
   108 JDK_LIBDIR = $(JAVA_HOME)/jre/lib/$(LIBARCH)
   110 #----------------------------------------------------------------------
   111 # jvm_db & dtrace
   112 include $(MAKEFILES_DIR)/dtrace.make
   114 #----------------------------------------------------------------------
   115 # JVM
   117 JVM      = jvm
   118 LIBJVM   = lib$(JVM).so
   119 LIBJVM_G = lib$(JVM)$(G_SUFFIX).so
   121 JVM_OBJ_FILES = $(Obj_Files)
   123 vm_version.o: $(filter-out vm_version.o,$(JVM_OBJ_FILES))
   125 mapfile : $(MAPFILE) vm.def
   126 	rm -f $@
   127 	awk '{ if ($$0 ~ "INSERT VTABLE SYMBOLS HERE")	\
   128                  { system ("cat vm.def"); }		\
   129                else					\
   130                  { print $$0 }				\
   131              }' > $@ < $(MAPFILE)
   133 mapfile_reorder : mapfile $(REORDERFILE)
   134 	rm -f $@
   135 	cat $^ > $@
   137 vm.def: $(Res_Files) $(Obj_Files)
   138 	sh $(GAMMADIR)/make/linux/makefiles/build_vm_def.sh *.o > $@
   140 ifeq ($(SHARK_BUILD), true)
   141   STATIC_CXX = false
   142 else
   143   ifeq ($(ZERO_LIBARCH), ppc64)
   144     STATIC_CXX = false
   145   else
   146     STATIC_CXX = true
   147   endif
   148 endif
   150 ifeq ($(LINK_INTO),AOUT)
   151   LIBJVM.o                 =
   152   LIBJVM_MAPFILE           =
   153   LIBS_VM                  = $(LIBS)
   154 else
   155   LIBJVM.o                 = $(JVM_OBJ_FILES)
   156   LIBJVM_MAPFILE$(LDNOMAP) = mapfile_reorder
   157   LFLAGS_VM$(LDNOMAP)      += $(MAPFLAG:FILENAME=$(LIBJVM_MAPFILE))
   158   LFLAGS_VM                += $(SONAMEFLAG:SONAME=$(LIBJVM))
   160   # JVM is statically linked with libgcc[_s] and libstdc++; this is needed to
   161   # get around library dependency and compatibility issues. Must use gcc not
   162   # g++ to link.
   163   ifeq ($(STATIC_CXX), true)
   164     LFLAGS_VM              += $(STATIC_LIBGCC)
   165     LIBS_VM                += $(STATIC_STDCXX)
   166   else
   167     LIBS_VM                += -lstdc++
   168   endif
   170   LIBS_VM                  += $(LIBS)
   171 endif
   172 ifeq ($(ZERO_BUILD), true)
   173   LIBS_VM += $(LIBFFI_LIBS)
   174 endif
   175 ifeq ($(SHARK_BUILD), true)
   176   LFLAGS_VM += $(LLVM_LDFLAGS)
   177   LIBS_VM   += $(LLVM_LIBS)
   178 endif
   180 LINK_VM = $(LINK_LIB.c)
   182 # rule for building precompiled header
   183 $(PRECOMPILED_HEADER): $(Precompiled_Files)
   184 	$(QUIETLY) echo Generating precompiled header $@
   185 	$(QUIETLY) mkdir -p $(PRECOMPILED_HEADER_DIR)/incls
   186 	$(QUIETLY) $(COMPILE.CC) -x c++-header -c $(GENERATED)/incls/_precompiled.incl -o $@ $(COMPILE_DONE)
   188 # making the library:
   190 ifneq ($(JVM_BASE_ADDR),)
   191 # By default shared library is linked at base address == 0. Modify the
   192 # linker script if JVM prefers a different base location. It can also be
   193 # implemented with 'prelink -r'. But 'prelink' is not (yet) available on
   194 # our build platform (AS-2.1).
   195 LD_SCRIPT = libjvm.so.lds
   196 $(LD_SCRIPT): $(LIBJVM_MAPFILE)
   197 	$(QUIETLY) {                                                \
   198 	  rm -rf $@;                                                \
   199 	  $(LINK_VM) -Wl,--verbose $(LFLAGS_VM) 2>&1             |  \
   200 	    sed -e '/^======/,/^======/!d'                          \
   201 		-e '/^======/d'                                     \
   202 		-e 's/0\( + SIZEOF_HEADERS\)/$(JVM_BASE_ADDR)\1/'   \
   203 		> $@;                                               \
   204 	}
   205 LD_SCRIPT_FLAG = -Wl,-T,$(LD_SCRIPT)
   206 endif
   208 # With more recent Redhat releases (or the cutting edge version Fedora), if
   209 # SELinux is configured to be enabled, the runtime linker will fail to apply
   210 # the text relocation to libjvm.so considering that it is built as a non-PIC
   211 # DSO. To workaround that, we run chcon to libjvm.so after it is built. See 
   212 # details in bug 6538311.
   213 $(LIBJVM): $(LIBJVM.o) $(LIBJVM_MAPFILE) $(LD_SCRIPT)
   214 	$(QUIETLY) {                                                    \
   215 	    echo Linking vm...;                                         \
   216 	    $(LINK_LIB.CC/PRE_HOOK)                                     \
   217 	    $(LINK_VM) $(LD_SCRIPT_FLAG)                                \
   218 		       $(LFLAGS_VM) -o $@ $(LIBJVM.o) $(LIBS_VM);       \
   219 	    $(LINK_LIB.CC/POST_HOOK)                                    \
   220 	    rm -f $@.1; ln -s $@ $@.1;                                  \
   221 	    [ -f $(LIBJVM_G) ] || { ln -s $@ $(LIBJVM_G); ln -s $@.1 $(LIBJVM_G).1; }; \
   222             if [ \"$(CROSS_COMPILE_ARCH)\" = \"\" ] ; then                    \
   223 	      if [ -x /usr/sbin/selinuxenabled ] ; then                 \
   224 	        /usr/sbin/selinuxenabled;                               \
   225                 if [ $$? = 0 ] ; then					\
   226 		  /usr/bin/chcon -t textrel_shlib_t $@;                 \
   227 		  if [ $$? != 0 ]; then                                 \
   228 		    echo "ERROR: Cannot chcon $@";			\
   229 		  fi							\
   230 	        fi							\
   231 	      fi                                                        \
   232             fi 								\
   233 	}
   235 DEST_JVM = $(JDK_LIBDIR)/$(VM_SUBDIR)/$(LIBJVM)
   237 install_jvm: $(LIBJVM)
   238 	@echo "Copying $(LIBJVM) to $(DEST_JVM)"
   239 	$(QUIETLY) cp -f $(LIBJVM) $(DEST_JVM) && echo "Done"
   241 #----------------------------------------------------------------------
   242 # Other files
   244 # Gamma launcher
   245 include $(MAKEFILES_DIR)/launcher.make
   247 # Signal interposition library
   248 include $(MAKEFILES_DIR)/jsig.make
   250 # Serviceability agent
   251 include $(MAKEFILES_DIR)/saproc.make
   253 #----------------------------------------------------------------------
   255 build: $(LIBJVM) $(LAUNCHER) $(LIBJSIG) $(LIBJVM_DB) checkAndBuildSA
   257 install: install_jvm install_jsig install_saproc
   259 .PHONY: default build install install_jvm

mercurial