1 #
   2 # Copyright (c) 1998, 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 #
  24 
  25 # Rules to build JVM and related libraries, included from vm.make in the build
  26 # directory.
  27 
  28 # Common build rules.
  29 MAKEFILES_DIR=$(GAMMADIR)/make/$(Platform_os_family)/makefiles
  30 include $(MAKEFILES_DIR)/rules.make
  31 
  32 default: build
  33 
  34 #----------------------------------------------------------------------
  35 # Defs
  36 
  37 GENERATED     = ../generated
  38 DEP_DIR       = $(GENERATED)/dependencies
  39 
  40 # reads the generated files defining the set of .o's and the .o .h dependencies
  41 -include $(DEP_DIR)/*.d
  42 
  43 # read machine-specific adjustments (%%% should do this via buildtree.make?)
  44 include $(MAKEFILES_DIR)/$(BUILDARCH).make
  45 
  46 # set VPATH so make knows where to look for source files
  47 # Src_Dirs is everything in src/share/vm/*, plus the right os/*/vm and cpu/*/vm
  48 # The adfiles directory contains ad_<arch>.[ch]pp.
  49 # The jvmtifiles directory contains jvmti*.[ch]pp
  50 Src_Dirs_V = $(GENERATED)/adfiles $(GENERATED)/jvmtifiles ${Src_Dirs}
  51 VPATH    += $(Src_Dirs_V:%=%:)
  52 
  53 # set INCLUDES for C preprocessor
  54 Src_Dirs_I = $(PRECOMPILED_HEADER_DIR) $(GENERATED)/adfiles $(GENERATED)/jvmtifiles ${Src_Dirs} $(GAMMADIR)/src/share/vm $(GENERATED)
  55 INCLUDES += $(Src_Dirs_I:%=-I%)
  56 
  57 ifeq (${VERSION}, debug)
  58   SYMFLAG = -g
  59 else
  60   SYMFLAG =
  61 endif
  62 
  63 # The following variables are defined in the generated flags.make file.
  64 BUILD_VERSION = -DHOTSPOT_RELEASE_VERSION="\"$(HS_BUILD_VER)\""
  65 JRE_VERSION   = -DJRE_RELEASE_VERSION="\"$(JRE_RELEASE_VER)\""
  66 HS_LIB_ARCH   = -DHOTSPOT_LIB_ARCH=\"$(LIBARCH)\"
  67 BUILD_TARGET  = -DHOTSPOT_BUILD_TARGET="\"$(TARGET)\""
  68 BUILD_USER    = -DHOTSPOT_BUILD_USER="\"$(HOTSPOT_BUILD_USER)\""
  69 VM_DISTRO     = -DHOTSPOT_VM_DISTRO="\"$(HOTSPOT_VM_DISTRO)\""
  70 
  71 CPPFLAGS =           \
  72   ${SYSDEFS}         \
  73   ${INCLUDES}        \
  74   ${BUILD_VERSION}   \
  75   ${BUILD_TARGET}    \
  76   ${BUILD_USER}      \
  77   ${HS_LIB_ARCH}     \
  78   ${JRE_VERSION}     \
  79   ${VM_DISTRO}
  80 
  81 # CFLAGS_WARN holds compiler options to suppress/enable warnings.
  82 CFLAGS += $(CFLAGS_WARN)
  83 
  84 # Do not use C++ exception handling
  85 CFLAGS += $(CFLAGS/NOEX)
  86 
  87 # Extra flags from gnumake's invocation or environment
  88 CFLAGS += $(EXTRA_CFLAGS)
  89 
  90 # Math Library (libm.so), do not use -lm.
  91 #    There might be two versions of libm.so on the build system:
  92 #    libm.so.1 and libm.so.2, and we want libm.so.1.
  93 #    Depending on the Solaris release being used to build with,
  94 #    /usr/lib/libm.so could point at a libm.so.2, so we are
  95 #    explicit here so that the libjvm.so you have built will work on an
  96 #    older Solaris release that might not have libm.so.2.
  97 #    This is a critical factor in allowing builds on Solaris 10 or newer
  98 #    to run on Solaris 8 or 9.
  99 #
 100 LIBM=/usr/lib$(ISA_DIR)/libm.so.1
 101 
 102 ifeq ("${Platform_compiler}", "sparcWorks")
 103 # The whole megilla:
 104 ifeq ($(shell expr $(COMPILER_REV_NUMERIC) \>= 505), 1)
 105 # Old Comment: List the libraries in the order the compiler was designed for
 106 # Not sure what the 'designed for' comment is referring too above.
 107 #   The order may not be too significant anymore, but I have placed this
 108 #   older libm before libCrun, just to make sure it's found and used first.
 109 LIBS += -lsocket -lsched -ldl $(LIBM) -lCrun -lthread -ldoor -lc
 110 else
 111 ifeq ($(COMPILER_REV_NUMERIC), 502)
 112 # SC6.1 has it's own libm.so: specifying anything else provokes a name conflict.
 113 LIBS += -ldl -lthread -lsocket -lm -lsched -ldoor
 114 else
 115 LIBS += -ldl -lthread -lsocket $(LIBM) -lsched -ldoor
 116 endif # 502
 117 endif # 505
 118 else
 119 LIBS += -lsocket -lsched -ldl $(LIBM) -lthread -lc
 120 endif # sparcWorks
 121 
 122 # By default, link the *.o into the library, not the executable.
 123 LINK_INTO$(LINK_INTO) = LIBJVM
 124 
 125 JDK_LIBDIR = $(JAVA_HOME)/jre/lib/$(LIBARCH)
 126 
 127 #----------------------------------------------------------------------
 128 # jvm_db & dtrace
 129 include $(MAKEFILES_DIR)/dtrace.make
 130 
 131 #----------------------------------------------------------------------
 132 # JVM
 133 
 134 JVM      = jvm
 135 LIBJVM   = lib$(JVM).so
 136 LIBJVM_G = lib$(JVM)$(G_SUFFIX).so
 137 
 138 BASE_PATHS := $(shell find $(GAMMADIR)/src/share/vm/* -prune -type d \! \( -name adlc -o -name c1 -o -name gc_implementation -o -name opto -o -name shark -o -name libadt \))
 139 BASE_PATHS += $(GAMMADIR)/src/share/vm/gc_implementation/shared
 140 BASE_PATHS += $(GAMMADIR)/src/os/$(Platform_os_family)/vm
 141 BASE_PATHS += $(GAMMADIR)/src/cpu/$(Platform_arch)/vm
 142 BASE_PATHS += $(GAMMADIR)/src/os_cpu/$(Platform_os_arch)/vm
 143 BASE_PATHS += $(GENERATED)/jvmtifiles
 144 
 145 CORE_PATHS := $(BASE_PATHS)
 146 # shared is already in BASE_PATHS. Should add vm/memory but that one is also in BASE_PATHS.
 147 CORE_PATHS += $(shell find $(GAMMADIR)/src/share/vm/gc_implementation/* -prune -type d \! -name shared)
 148 
 149 COMPILER1_PATHS := $(GAMMADIR)/src/share/vm/c1
 150 
 151 COMPILER2_PATHS := $(GAMMADIR)/src/share/vm/opto
 152 COMPILER2_PATHS += $(GAMMADIR)/src/share/vm/libadt
 153 COMPILER2_PATHS +=  $(GENERATED)/adfiles
 154 
 155 # Include dirs per type.
 156 Src_Dirs/CORE      := $(CORE_PATHS)
 157 Src_Dirs/KERNEL    := $(BASE_PATHS) $(COMPILER1_PATHS)
 158 Src_Dirs/COMPILER1 := $(CORE_PATHS) $(COMPILER1_PATHS)
 159 Src_Dirs/COMPILER2 := $(CORE_PATHS) $(COMPILER2_PATHS)
 160 Src_Dirs/TIERED    := $(CORE_PATHS) $(COMPILER1_PATHS) $(COMPILER2_PATHS)
 161 Src_Dirs/ZERO      := $(CORE_PATHS)
 162 Src_Dirs/SHARK     := $(CORE_PATHS)
 163 Src_Dirs := $(Src_Dirs/$(TYPE))
 164 
 165 COMPILER2_SPECIFIC_FILES := opto libadt bcEscapeAnalyzer.cpp chaitin c2_\* runtime_\*
 166 COMPILER1_SPECIFIC_FILES := c1_\*
 167 SHARK_SPECIFIC_FILES     := shark
 168 ZERO_SPECIFIC_FILES      := zero
 169 
 170 # These files need to be excluded when building the kernel target.
 171 KERNEL_EXCLUDED_FILES := attachListener.cpp attachListener_${Platform_os_family}.cpp dump.cpp dump_$(Platform_arch_model).cpp forte.cpp fprofiler.cpp heapDumper.cpp heapInspection.cpp jniCheck.cpp jvmtiCodeBlobEvents.cpp jvmtiExtensions.cpp jvmtiImpl.cpp jvmtiTagMap.cpp jvmtiTrace.cpp restore.cpp serialize.cpp vmStructs.cpp g1MemoryPool.cpp psMemoryPool.cpp gcAdaptivePolicyCounters.cpp concurrentGCThread.cpp mutableNUMASpace.cpp allocationStats.cpp gSpaceCounters.cpp immutableSpace.cpp mutableSpace.cpp spaceCounters.cpp yieldingWorkgroup.cpp
 172 
 173 # Always exclude these.
 174 Src_Files_EXCLUDE := dtrace jsig.c jvmtiEnvRecommended.cpp jvmtiEnvStub.cpp
 175 
 176 # Exclude per type.
 177 Src_Files_EXCLUDE/CORE      := $(COMPILER1_SPECIFIC_FILES) $(COMPILER2_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES) ciTypeFlow.cpp
 178 Src_Files_EXCLUDE/KERNEL    := $(COMPILER2_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES) $(KERNEL_EXCLUDED_FILES) ciTypeFlow.cpp
 179 Src_Files_EXCLUDE/COMPILER1 := $(COMPILER2_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES) ciTypeFlow.cpp
 180 Src_Files_EXCLUDE/COMPILER2 := $(COMPILER1_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES)
 181 Src_Files_EXCLUDE/TIERED    := $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES)
 182 Src_Files_EXCLUDE/ZERO      := $(COMPILER1_SPECIFIC_FILES) $(COMPILER2_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES) ciTypeFlow.cpp
 183 Src_Files_EXCLUDE/SHARK     := $(COMPILER1_SPECIFIC_FILES) $(COMPILER2_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES)
 184 
 185 Src_Files_EXCLUDE +=  $(Src_Files_EXCLUDE/$(TYPE))
 186 
 187 # Special handling of arch model.
 188 ifeq ($(Platform_arch_model), x86_32)
 189 Src_Files_EXCLUDE += \*x86_64\*
 190 endif
 191 ifeq ($(Platform_arch_model), x86_64)
 192 Src_Files_EXCLUDE += \*x86_32\*
 193 endif
 194 
 195 define findsrc
 196         $(notdir $(shell find $(1) \( -name \*.c -o -name \*.cpp -o -name \*.s \) -a \! \( -name DUMMY $(addprefix -o -name ,$(Src_Files_EXCLUDE)) \) ))
 197 endef
 198 
 199 Src_Files := $(foreach e,$(Src_Dirs),$(call findsrc,$(e)))
 200 
 201 Obj_Files = $(addsuffix .o,$(basename $(Src_Files)))
 202 
 203 JVM_OBJ_FILES = $(Obj_Files) $(DTRACE_OBJS)
 204 
 205 vm_version.o: $(filter-out vm_version.o,$(JVM_OBJ_FILES))
 206 
 207 mapfile : $(MAPFILE) $(MAPFILE_DTRACE_OPT)
 208         rm -f $@
 209         cat $^ > $@
 210 
 211 mapfile_reorder : mapfile $(MAPFILE_DTRACE_OPT) $(REORDERFILE)
 212         rm -f $@
 213         cat $^ > $@
 214 
 215 ifeq ($(LINK_INTO),AOUT)
 216   LIBJVM.o                 =
 217   LIBJVM_MAPFILE           =
 218   LIBS_VM                  = $(LIBS)
 219 else
 220   LIBJVM.o                 = $(JVM_OBJ_FILES)
 221   LIBJVM_MAPFILE$(LDNOMAP) = mapfile_reorder
 222   LFLAGS_VM$(LDNOMAP)      += $(MAPFLAG:FILENAME=$(LIBJVM_MAPFILE))
 223   LFLAGS_VM                += $(SONAMEFLAG:SONAME=$(LIBJVM))
 224 ifndef USE_GCC
 225   LIBS_VM                  = $(LIBS)
 226 else
 227   # JVM is statically linked with libgcc[_s] and libstdc++; this is needed to
 228   # get around library dependency and compatibility issues. Must use gcc not
 229   # g++ to link.
 230   LFLAGS_VM                += $(STATIC_LIBGCC)
 231   LIBS_VM                  += $(STATIC_STDCXX) $(LIBS)
 232 endif
 233 endif
 234 
 235 ifdef USE_GCC
 236 LINK_VM = $(LINK_LIB.c)
 237 else
 238 LINK_VM = $(LINK_LIB.CC)
 239 endif
 240 # making the library:
 241 $(LIBJVM): $(LIBJVM.o) $(LIBJVM_MAPFILE) 
 242 ifeq ($(filter -sbfast -xsbfast, $(CFLAGS_BROWSE)),)
 243         @echo Linking vm...
 244         $(QUIETLY) $(LINK_LIB.CC/PRE_HOOK)
 245         $(QUIETLY) $(LINK_VM) $(LFLAGS_VM) -o $@ $(LIBJVM.o) $(LIBS_VM)
 246         $(QUIETLY) $(LINK_LIB.CC/POST_HOOK)
 247         $(QUIETLY) rm -f $@.1 && ln -s $@ $@.1
 248         $(QUIETLY) [ -f $(LIBJVM_G) ] || ln -s $@ $(LIBJVM_G)
 249         $(QUIETLY) [ -f $(LIBJVM_G).1 ] || ln -s $@.1 $(LIBJVM_G).1
 250 endif # filter -sbfast -xsbfast
 251 
 252 
 253 DEST_JVM = $(JDK_LIBDIR)/$(VM_SUBDIR)/$(LIBJVM)
 254 
 255 install_jvm: $(LIBJVM)
 256         @echo "Copying $(LIBJVM) to $(DEST_JVM)"
 257         $(QUIETLY) cp -f $(LIBJVM) $(DEST_JVM) && echo "Done"
 258 
 259 #----------------------------------------------------------------------
 260 # Other files
 261 
 262 # Gamma launcher
 263 include $(MAKEFILES_DIR)/launcher.make
 264 
 265 # Signal interposition library
 266 include $(MAKEFILES_DIR)/jsig.make
 267 
 268 # Serviceability agent
 269 include $(MAKEFILES_DIR)/saproc.make
 270 
 271 #----------------------------------------------------------------------
 272 
 273 build: $(LIBJVM) $(LAUNCHER) $(LIBJSIG) $(LIBJVM_DB) $(LIBJVM_DTRACE) checkAndBuildSA dtraceCheck
 274 
 275 install: install_jvm install_jsig install_saproc
 276 
 277 .PHONY: default build install install_jvm