make/linux/makefiles/vm.make

Print this page
rev 4773 : 8005849: JEP 167: Event-Based JVM Tracing
Reviewed-by: acorn, coleenp, sla
Contributed-by: Karen Kinnear <karen.kinnear@oracle.com>, Bengt Rutisson <bengt.rutisson@oracle.com>, Calvin Cheung <calvin.cheung@oracle.com>, Erik Gahlin <erik.gahlin@oracle.com>, Erik Helin <erik.helin@oracle.com>, Jesper Wilhelmsson <jesper.wilhelmsson@oracle.com>, Keith McGuigan <keith.mcguigan@oracle.com>, Mattias Tobiasson <mattias.tobiasson@oracle.com>, Markus Gronlund <markus.gronlund@oracle.com>, Mikael Auno <mikael.auno@oracle.com>, Nils Eliasson <nils.eliasson@oracle.com>, Nils Loodin <nils.loodin@oracle.com>, Rickard Backman <rickard.backman@oracle.com>, Staffan Larsen <staffan.larsen@oracle.com>, Stefan Karlsson <stefan.karlsson@oracle.com>, Yekaterina Kantserova <yekaterina.kantserova@oracle.com>
   1 #
   2 # Copyright (c) 1999, 2012, 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 #  


  35 #----------------------------------------------------------------------
  36 # Defs
  37 
  38 GENERATED     = ../generated
  39 DEP_DIR       = $(GENERATED)/dependencies
  40 
  41 # reads the generated files defining the set of .o's and the .o .h dependencies
  42 -include $(DEP_DIR)/*.d
  43 
  44 # read machine-specific adjustments (%%% should do this via buildtree.make?)
  45 ifeq ($(findstring true, $(JVM_VARIANT_ZERO) $(JVM_VARIANT_ZEROSHARK)), true)
  46   include $(MAKEFILES_DIR)/zeroshark.make
  47 else
  48   include $(MAKEFILES_DIR)/$(BUILDARCH).make
  49 endif
  50 
  51 # set VPATH so make knows where to look for source files
  52 # Src_Dirs_V is everything in src/share/vm/*, plus the right os/*/vm and cpu/*/vm
  53 # The adfiles directory contains ad_<arch>.[ch]pp.
  54 # The jvmtifiles directory contains jvmti*.[ch]pp
  55 Src_Dirs_V += $(GENERATED)/adfiles $(GENERATED)/jvmtifiles
  56 VPATH += $(Src_Dirs_V:%=%:)
  57 
  58 # set INCLUDES for C preprocessor.
  59 Src_Dirs_I += $(GENERATED)
  60 # The order is important for the precompiled headers to work.
  61 INCLUDES += $(PRECOMPILED_HEADER_DIR:%=-I%) $(Src_Dirs_I:%=-I%)
  62 
  63 # SYMFLAG is used by {jsig,saproc}.make
  64 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
  65   # always build with debug info when we can create .debuginfo files
  66   SYMFLAG = -g
  67 else
  68   ifeq (${VERSION}, debug)
  69     SYMFLAG = -g
  70   else
  71     SYMFLAG =
  72   endif
  73 endif
  74 
  75 # HOTSPOT_RELEASE_VERSION and HOTSPOT_BUILD_VERSION are defined 


  91 CXXFLAGS =           \
  92   ${SYSDEFS}         \
  93   ${INCLUDES}        \
  94   ${BUILD_VERSION}   \
  95   ${BUILD_TARGET}    \
  96   ${BUILD_USER}      \
  97   ${HS_LIB_ARCH}     \
  98   ${VM_DISTRO}
  99 
 100 # This is VERY important! The version define must only be supplied to vm_version.o
 101 # If not, ccache will not re-use the cache at all, since the version string might contain
 102 # a time and date. 
 103 CXXFLAGS/vm_version.o += ${JRE_VERSION}
 104 
 105 CXXFLAGS/BYFILE = $(CXXFLAGS/$@)
 106 
 107 # File specific flags
 108 CXXFLAGS += $(CXXFLAGS/BYFILE)
 109 
 110 
 111 ifndef JAVASE_EMBEDDED 
 112 ifneq (${ARCH},arm)
 113 CFLAGS += -DINCLUDE_TRACE
 114 endif
 115 endif
 116 
 117 # CFLAGS_WARN holds compiler options to suppress/enable warnings.
 118 CFLAGS += $(CFLAGS_WARN/BYFILE)
 119 
 120 # Do not use C++ exception handling
 121 CFLAGS += $(CFLAGS/NOEX)
 122 
 123 # Extra flags from gnumake's invocation or environment
 124 CFLAGS += $(EXTRA_CFLAGS)
 125 LFLAGS += $(EXTRA_CFLAGS)
 126 
 127 # Don't set excutable bit on stack segment
 128 # the same could be done by separate execstack command
 129 LFLAGS += -Xlinker -z -Xlinker noexecstack
 130 
 131 LIBS += -lm -ldl -lpthread
 132 
 133 # By default, link the *.o into the library, not the executable.
 134 LINK_INTO$(LINK_INTO) = LIBJVM
 135 
 136 JDK_LIBDIR = $(JAVA_HOME)/jre/lib/$(LIBARCH)


 141 
 142 #----------------------------------------------------------------------
 143 # JVM
 144 
 145 JVM      = jvm
 146 LIBJVM   = lib$(JVM).so
 147 
 148 LIBJVM_DEBUGINFO   = lib$(JVM).debuginfo
 149 LIBJVM_DIZ         = lib$(JVM).diz
 150 
 151 SPECIAL_PATHS:=adlc c1 gc_implementation opto shark libadt
 152 
 153 SOURCE_PATHS=\
 154   $(shell find $(HS_COMMON_SRC)/share/vm/* -type d \! \
 155       \( -name DUMMY $(foreach dir,$(SPECIAL_PATHS),-o -name $(dir)) \))
 156 SOURCE_PATHS+=$(HS_COMMON_SRC)/os/$(Platform_os_family)/vm
 157 SOURCE_PATHS+=$(HS_COMMON_SRC)/os/posix/vm
 158 SOURCE_PATHS+=$(HS_COMMON_SRC)/cpu/$(Platform_arch)/vm
 159 SOURCE_PATHS+=$(HS_COMMON_SRC)/os_cpu/$(Platform_os_arch)/vm
 160 
 161 ifndef JAVASE_EMBEDDED 
 162 ifneq (${ARCH},arm)
 163 SOURCE_PATHS+=$(shell if [ -d $(HS_ALT_SRC)/share/vm/jfr ]; then \


 164   find $(HS_ALT_SRC)/share/vm/jfr -type d; \
 165   fi)
 166 endif
 167 endif
 168 
 169 CORE_PATHS=$(foreach path,$(SOURCE_PATHS),$(call altsrc,$(path)) $(path))
 170 CORE_PATHS+=$(GENERATED)/jvmtifiles
 171 
 172 COMPILER1_PATHS := $(call altsrc,$(HS_COMMON_SRC)/share/vm/c1)
 173 COMPILER1_PATHS += $(HS_COMMON_SRC)/share/vm/c1
 174 
 175 COMPILER2_PATHS := $(call altsrc,$(HS_COMMON_SRC)/share/vm/opto)
 176 COMPILER2_PATHS += $(call altsrc,$(HS_COMMON_SRC)/share/vm/libadt)
 177 COMPILER2_PATHS += $(HS_COMMON_SRC)/share/vm/opto
 178 COMPILER2_PATHS += $(HS_COMMON_SRC)/share/vm/libadt
 179 COMPILER2_PATHS += $(GENERATED)/adfiles
 180 
 181 SHARK_PATHS := $(GAMMADIR)/src/share/vm/shark
 182 
 183 # Include dirs per type.
 184 Src_Dirs/CORE      := $(CORE_PATHS)
 185 Src_Dirs/COMPILER1 := $(CORE_PATHS) $(COMPILER1_PATHS)
 186 Src_Dirs/COMPILER2 := $(CORE_PATHS) $(COMPILER2_PATHS)
 187 Src_Dirs/TIERED    := $(CORE_PATHS) $(COMPILER1_PATHS) $(COMPILER2_PATHS)
 188 Src_Dirs/ZERO      := $(CORE_PATHS)
 189 Src_Dirs/SHARK     := $(CORE_PATHS) $(SHARK_PATHS)
 190 Src_Dirs := $(Src_Dirs/$(TYPE))


   1 #
   2 # Copyright (c) 1999, 2013, 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 #


  35 #----------------------------------------------------------------------
  36 # Defs
  37 
  38 GENERATED     = ../generated
  39 DEP_DIR       = $(GENERATED)/dependencies
  40 
  41 # reads the generated files defining the set of .o's and the .o .h dependencies
  42 -include $(DEP_DIR)/*.d
  43 
  44 # read machine-specific adjustments (%%% should do this via buildtree.make?)
  45 ifeq ($(findstring true, $(JVM_VARIANT_ZERO) $(JVM_VARIANT_ZEROSHARK)), true)
  46   include $(MAKEFILES_DIR)/zeroshark.make
  47 else
  48   include $(MAKEFILES_DIR)/$(BUILDARCH).make
  49 endif
  50 
  51 # set VPATH so make knows where to look for source files
  52 # Src_Dirs_V is everything in src/share/vm/*, plus the right os/*/vm and cpu/*/vm
  53 # The adfiles directory contains ad_<arch>.[ch]pp.
  54 # The jvmtifiles directory contains jvmti*.[ch]pp
  55 Src_Dirs_V += $(GENERATED)/adfiles $(GENERATED)/jvmtifiles $(GENERATED)/tracefiles
  56 VPATH += $(Src_Dirs_V:%=%:)
  57 
  58 # set INCLUDES for C preprocessor.
  59 Src_Dirs_I += $(GENERATED)
  60 # The order is important for the precompiled headers to work.
  61 INCLUDES += $(PRECOMPILED_HEADER_DIR:%=-I%) $(Src_Dirs_I:%=-I%)
  62 
  63 # SYMFLAG is used by {jsig,saproc}.make
  64 ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
  65   # always build with debug info when we can create .debuginfo files
  66   SYMFLAG = -g
  67 else
  68   ifeq (${VERSION}, debug)
  69     SYMFLAG = -g
  70   else
  71     SYMFLAG =
  72   endif
  73 endif
  74 
  75 # HOTSPOT_RELEASE_VERSION and HOTSPOT_BUILD_VERSION are defined


  91 CXXFLAGS =           \
  92   ${SYSDEFS}         \
  93   ${INCLUDES}        \
  94   ${BUILD_VERSION}   \
  95   ${BUILD_TARGET}    \
  96   ${BUILD_USER}      \
  97   ${HS_LIB_ARCH}     \
  98   ${VM_DISTRO}
  99 
 100 # This is VERY important! The version define must only be supplied to vm_version.o
 101 # If not, ccache will not re-use the cache at all, since the version string might contain
 102 # a time and date.
 103 CXXFLAGS/vm_version.o += ${JRE_VERSION}
 104 
 105 CXXFLAGS/BYFILE = $(CXXFLAGS/$@)
 106 
 107 # File specific flags
 108 CXXFLAGS += $(CXXFLAGS/BYFILE)
 109 
 110 






 111 # CFLAGS_WARN holds compiler options to suppress/enable warnings.
 112 CFLAGS += $(CFLAGS_WARN/BYFILE)
 113 
 114 # Do not use C++ exception handling
 115 CFLAGS += $(CFLAGS/NOEX)
 116 
 117 # Extra flags from gnumake's invocation or environment
 118 CFLAGS += $(EXTRA_CFLAGS)
 119 LFLAGS += $(EXTRA_CFLAGS)
 120 
 121 # Don't set excutable bit on stack segment
 122 # the same could be done by separate execstack command
 123 LFLAGS += -Xlinker -z -Xlinker noexecstack
 124 
 125 LIBS += -lm -ldl -lpthread
 126 
 127 # By default, link the *.o into the library, not the executable.
 128 LINK_INTO$(LINK_INTO) = LIBJVM
 129 
 130 JDK_LIBDIR = $(JAVA_HOME)/jre/lib/$(LIBARCH)


 135 
 136 #----------------------------------------------------------------------
 137 # JVM
 138 
 139 JVM      = jvm
 140 LIBJVM   = lib$(JVM).so
 141 
 142 LIBJVM_DEBUGINFO   = lib$(JVM).debuginfo
 143 LIBJVM_DIZ         = lib$(JVM).diz
 144 
 145 SPECIAL_PATHS:=adlc c1 gc_implementation opto shark libadt
 146 
 147 SOURCE_PATHS=\
 148   $(shell find $(HS_COMMON_SRC)/share/vm/* -type d \! \
 149       \( -name DUMMY $(foreach dir,$(SPECIAL_PATHS),-o -name $(dir)) \))
 150 SOURCE_PATHS+=$(HS_COMMON_SRC)/os/$(Platform_os_family)/vm
 151 SOURCE_PATHS+=$(HS_COMMON_SRC)/os/posix/vm
 152 SOURCE_PATHS+=$(HS_COMMON_SRC)/cpu/$(Platform_arch)/vm
 153 SOURCE_PATHS+=$(HS_COMMON_SRC)/os_cpu/$(Platform_os_arch)/vm
 154 
 155 CORE_PATHS=$(foreach path,$(SOURCE_PATHS),$(call altsrc,$(path)) $(path))
 156 CORE_PATHS+=$(GENERATED)/jvmtifiles $(GENERATED)/tracefiles
 157 
 158 ifneq ($(INCLUDE_TRACE), false)
 159 CORE_PATHS+=$(shell if [ -d $(HS_ALT_SRC)/share/vm/jfr ]; then \
 160   find $(HS_ALT_SRC)/share/vm/jfr -type d; \
 161   fi)
 162 endif




 163 
 164 COMPILER1_PATHS := $(call altsrc,$(HS_COMMON_SRC)/share/vm/c1)
 165 COMPILER1_PATHS += $(HS_COMMON_SRC)/share/vm/c1
 166 
 167 COMPILER2_PATHS := $(call altsrc,$(HS_COMMON_SRC)/share/vm/opto)
 168 COMPILER2_PATHS += $(call altsrc,$(HS_COMMON_SRC)/share/vm/libadt)
 169 COMPILER2_PATHS += $(HS_COMMON_SRC)/share/vm/opto
 170 COMPILER2_PATHS += $(HS_COMMON_SRC)/share/vm/libadt
 171 COMPILER2_PATHS += $(GENERATED)/adfiles
 172 
 173 SHARK_PATHS := $(GAMMADIR)/src/share/vm/shark
 174 
 175 # Include dirs per type.
 176 Src_Dirs/CORE      := $(CORE_PATHS)
 177 Src_Dirs/COMPILER1 := $(CORE_PATHS) $(COMPILER1_PATHS)
 178 Src_Dirs/COMPILER2 := $(CORE_PATHS) $(COMPILER2_PATHS)
 179 Src_Dirs/TIERED    := $(CORE_PATHS) $(COMPILER1_PATHS) $(COMPILER2_PATHS)
 180 Src_Dirs/ZERO      := $(CORE_PATHS)
 181 Src_Dirs/SHARK     := $(CORE_PATHS) $(SHARK_PATHS)
 182 Src_Dirs := $(Src_Dirs/$(TYPE))