make/solaris/makefiles/vm.make

Print this page


   1 #
   2 # Copyright (c) 1998, 2008, 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 
  39 # read a generated file defining the set of .o's and the .o .h dependencies
  40 include $(GENERATED)/Dependencies
  41 
  42 # read machine-specific adjustments (%%% should do this via buildtree.make?)
  43 include $(MAKEFILES_DIR)/$(BUILDARCH).make
  44 
  45 # set VPATH so make knows where to look for source files
  46 # Src_Dirs is everything in src/share/vm/*, plus the right os/*/vm and cpu/*/vm
  47 # The incls directory contains generated header file lists for inclusion.
  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} $(GENERATED)/incls
  51 VPATH    += $(Src_Dirs_V:%=%:)
  52 
  53 # set INCLUDES for C preprocessor
  54 Src_Dirs_I = $(GENERATED)/adfiles $(GENERATED)/jvmtifiles ${Src_Dirs} $(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}   \


 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 JVM_OBJ_FILES = $(Obj_Files) $(DTRACE_OBJS)
 139 
 140 vm_version.o: $(filter-out vm_version.o,$(JVM_OBJ_FILES))
 141 
 142 mapfile : $(MAPFILE) $(MAPFILE_DTRACE_OPT)
 143         rm -f $@
 144         cat $^ > $@
 145 
 146 mapfile_reorder : mapfile $(MAPFILE_DTRACE_OPT) $(REORDERFILE)
 147         rm -f $@
 148         cat $^ > $@
 149 
 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))


   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_V 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
  51 VPATH += $(Src_Dirs_V:%=%:)
  52 
  53 # set INCLUDES for C preprocessor
  54 Src_Dirs_I += $(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}   \


 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 CORE_PATHS := $(shell find $(GAMMADIR)/src/share/vm/* -type d \! \( -name adlc -o -name c1 -o -name gc_implementation -o -name opto -o -name shark -o -name libadt \))
 139 CORE_PATHS += $(GAMMADIR)/src/os/$(Platform_os_family)/vm
 140 CORE_PATHS += $(GAMMADIR)/src/cpu/$(Platform_arch)/vm
 141 CORE_PATHS += $(GAMMADIR)/src/os_cpu/$(Platform_os_arch)/vm
 142 CORE_PATHS += $(GENERATED)/jvmtifiles
 143 
 144 COMPILER1_PATHS := $(GAMMADIR)/src/share/vm/c1
 145 
 146 COMPILER2_PATHS := $(GAMMADIR)/src/share/vm/opto
 147 COMPILER2_PATHS += $(GAMMADIR)/src/share/vm/libadt
 148 COMPILER2_PATHS +=  $(GENERATED)/adfiles
 149 
 150 # Include dirs per type.
 151 Src_Dirs/CORE      := $(CORE_PATHS)
 152 Src_Dirs/COMPILER1 := $(CORE_PATHS) $(COMPILER1_PATHS)
 153 Src_Dirs/COMPILER2 := $(CORE_PATHS) $(COMPILER2_PATHS)
 154 Src_Dirs/TIERED    := $(CORE_PATHS) $(COMPILER1_PATHS) $(COMPILER2_PATHS)
 155 Src_Dirs/ZERO      := $(CORE_PATHS)
 156 Src_Dirs/SHARK     := $(CORE_PATHS)
 157 Src_Dirs := $(Src_Dirs/$(TYPE))
 158 
 159 COMPILER2_SPECIFIC_FILES := opto libadt bcEscapeAnalyzer.cpp chaitin\* c2_\* runtime_\*
 160 COMPILER1_SPECIFIC_FILES := c1_\*
 161 SHARK_SPECIFIC_FILES     := shark
 162 ZERO_SPECIFIC_FILES      := zero
 163 
 164 # Always exclude these.
 165 Src_Files_EXCLUDE := dtrace jsig.c jvmtiEnvRecommended.cpp jvmtiEnvStub.cpp
 166 
 167 # Exclude per type.
 168 Src_Files_EXCLUDE/CORE      := $(COMPILER1_SPECIFIC_FILES) $(COMPILER2_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES) ciTypeFlow.cpp
 169 Src_Files_EXCLUDE/COMPILER1 := $(COMPILER2_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES) ciTypeFlow.cpp
 170 Src_Files_EXCLUDE/COMPILER2 := $(COMPILER1_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES)
 171 Src_Files_EXCLUDE/TIERED    := $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES)
 172 Src_Files_EXCLUDE/ZERO      := $(COMPILER1_SPECIFIC_FILES) $(COMPILER2_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES) ciTypeFlow.cpp
 173 Src_Files_EXCLUDE/SHARK     := $(COMPILER1_SPECIFIC_FILES) $(COMPILER2_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES)
 174 
 175 Src_Files_EXCLUDE +=  $(Src_Files_EXCLUDE/$(TYPE))
 176 
 177 # Special handling of arch model.
 178 ifeq ($(Platform_arch_model), x86_32)
 179 Src_Files_EXCLUDE += \*x86_64\*
 180 endif
 181 ifeq ($(Platform_arch_model), x86_64)
 182 Src_Files_EXCLUDE += \*x86_32\*
 183 endif
 184 
 185 # Locate all source files in the given directory, excluding files in Src_Files_EXCLUDE.
 186 define findsrc
 187         $(notdir $(shell find $(1) \( -name \*.c -o -name \*.cpp -o -name \*.s \) -a \! \( -name DUMMY $(addprefix -o -name ,$(Src_Files_EXCLUDE)) \) ))
 188 endef
 189 
 190 Src_Files := $(foreach e,$(Src_Dirs),$(call findsrc,$(e)))
 191 
 192 Obj_Files = $(addsuffix .o,$(basename $(Src_Files)))
 193 
 194 JVM_OBJ_FILES = $(Obj_Files) $(DTRACE_OBJS)
 195 
 196 vm_version.o: $(filter-out vm_version.o,$(JVM_OBJ_FILES))
 197 
 198 mapfile : $(MAPFILE) $(MAPFILE_DTRACE_OPT)
 199         rm -f $@
 200         cat $^ > $@
 201 
 202 mapfile_reorder : mapfile $(MAPFILE_DTRACE_OPT) $(REORDERFILE)
 203         rm -f $@
 204         cat $^ > $@
 205 
 206 ifeq ($(LINK_INTO),AOUT)
 207   LIBJVM.o                 =
 208   LIBJVM_MAPFILE           =
 209   LIBS_VM                  = $(LIBS)
 210 else
 211   LIBJVM.o                 = $(JVM_OBJ_FILES)
 212   LIBJVM_MAPFILE$(LDNOMAP) = mapfile_reorder
 213   LFLAGS_VM$(LDNOMAP)      += $(MAPFLAG:FILENAME=$(LIBJVM_MAPFILE))