1 #
   2 # Copyright (c) 2013, 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.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 # Include support files that will setup compiler flags due to the selected
  27 # jvm feature set, specific file overrides, and general flags.
  28 include lib/JvmFeatures.gmk
  29 include lib/JvmOverrideFiles.gmk
  30 include lib/JvmFlags.gmk
  31 
  32 # Include support files that will setup DTRACE_EXTRA_OBJECT_FILES.
  33 include lib/JvmDtraceObjects.gmk
  34 
  35 ################################################################################
  36 # Setup compilation of the main Hotspot native library (libjvm).
  37 
  38 JVM_OUTPUTDIR := $(JVM_VARIANT_OUTPUTDIR)/libjvm
  39 JVM_MAPFILE := $(JVM_OUTPUTDIR)/mapfile
  40 
  41 ################################################################################
  42 # Platform independent setup
  43 
  44 JVM_LDFLAGS += \
  45     $(SHARED_LIBRARY_FLAGS) \
  46     $(JVM_LDFLAGS_FEATURES) \
  47     $(EXTRA_LDFLAGS) \
  48     #
  49 
  50 JVM_LIBS += \
  51     $(JVM_LIBS_FEATURES) \
  52     #
  53 
  54 # These files and directories are always excluded
  55 JVM_EXCLUDE_FILES += args.cc
  56 JVM_EXCLUDES += adlc
  57 
  58 # Needed by vm_version.cpp
  59 ifeq ($(call isTargetCpu, x86_64), true)
  60   OPENJDK_TARGET_CPU_VM_VERSION := amd64
  61 else ifeq ($(call isTargetCpu, sparcv9), true)
  62   OPENJDK_TARGET_CPU_VM_VERSION := sparc
  63 else
  64   OPENJDK_TARGET_CPU_VM_VERSION := $(OPENJDK_TARGET_CPU)
  65 endif
  66 
  67 CFLAGS_VM_VERSION := \
  68     $(VERSION_CFLAGS) \
  69     -DHOTSPOT_VERSION_STRING='"$(VERSION_STRING)"' \
  70     -DDEBUG_LEVEL='"$(DEBUG_LEVEL)"' \
  71     -DHOTSPOT_BUILD_USER='"$(USERNAME)"' \
  72     -DHOTSPOT_VM_DISTRO='"$(HOTSPOT_VM_DISTRO)"' \
  73     -DCPU='"$(OPENJDK_TARGET_CPU_VM_VERSION)"' \
  74     #
  75 
  76 ################################################################################
  77 # Disabled warnings
  78 
  79 DISABLED_WARNINGS_gcc := extra parentheses comment unknown-pragmas address \
  80     delete-non-virtual-dtor char-subscripts array-bounds int-in-bool-context \
  81     ignored-qualifiers  missing-field-initializers implicit-fallthrough \
  82     empty-body strict-overflow sequence-point maybe-uninitialized \
  83     misleading-indentation
  84 
  85 ifeq ($(call check-jvm-feature, zero), true)
  86   DISABLED_WARNINGS_gcc += return-type switch
  87 endif
  88 
  89 DISABLED_WARNINGS_clang := tautological-compare \
  90     undefined-var-template sometimes-uninitialized unknown-pragmas \
  91     delete-non-virtual-dtor missing-braces char-subscripts \
  92     ignored-qualifiers missing-field-initializers mismatched-tags
  93 
  94 DISABLED_WARNINGS_solstudio := labelnotused hidef w_novirtualdescr inlafteruse \
  95     unknownpragma doubunder w_enumnotused w_toomanyenumnotused \
  96     wvarhidenmem wunreachable wnoretvalue notemsource
  97 
  98 DISABLED_WARNINGS_xlc := 1540-0216 1540-0198 1540-1090 1540-1639 1540-1088 \
  99     1500-010
 100 
 101 DISABLED_WARNINGS_microsoft :=
 102 
 103 
 104 
 105 ################################################################################
 106 # Platform specific setup
 107 
 108 # ARM source selection
 109 
 110 ifeq ($(call And, $(call isTargetOs, linux) $(call isTargetCpu, arm)), true)
 111   JVM_EXCLUDE_PATTERNS += arm_64
 112 
 113 else ifeq ($(call And, $(call isTargetOs, linux) $(call isTargetCpu, aarch64)), true)
 114   # For 64-bit arm builds, we use the 64 bit hotspot/src/cpu/arm
 115   # hotspot sources if HOTSPOT_TARGET_CPU_ARCH is set to arm.
 116   # Exclude the aarch64 and 32 bit arm files for this build.
 117   ifeq ($(HOTSPOT_TARGET_CPU_ARCH), arm)
 118     JVM_EXCLUDE_PATTERNS += arm_32 aarch64
 119   endif
 120 endif
 121 
 122 ifeq ($(call isTargetOs, linux macosx windows), true)
 123   JVM_PRECOMPILED_HEADER := $(TOPDIR)/src/hotspot/share/precompiled/precompiled.hpp
 124 endif
 125 
 126 ifeq ($(call isTargetCpu, x86), true)
 127   JVM_EXCLUDE_PATTERNS += x86_64
 128 else ifeq ($(call isTargetCpu, x86_64), true)
 129   JVM_EXCLUDE_PATTERNS += x86_32
 130 endif
 131 
 132 # Inline assembly for solaris
 133 ifeq ($(call isTargetOs, solaris), true)
 134   ifeq ($(call isTargetCpu, x86_64), true)
 135     JVM_CFLAGS += $(TOPDIR)/src/hotspot/os_cpu/solaris_x86/solaris_x86_64.il
 136   else ifeq ($(call isTargetCpu, sparcv9), true)
 137     JVM_CFLAGS += $(TOPDIR)/src/hotspot/os_cpu/solaris_sparc/solaris_sparc.il
 138   endif
 139   # Exclude warnings in devstudio 12.6
 140   ifeq ($(CC_VERSION_NUMBER), 5.15)
 141     DISABLED_WARNINGS_solstudio += SEC_ARR_OUTSIDE_BOUND_READ \
 142       SEC_ARR_OUTSIDE_BOUND_WRITE
 143   endif
 144 endif
 145 
 146 ifeq ($(call And, $(call isTargetOs, solaris) $(call isTargetCpu, sparcv9)), true)
 147   ifeq ($(COMPILE_WITH_DEBUG_SYMBOLS), false)
 148     # NOTE: In the old build, we weirdly enough set -g/-g0 always, regardless
 149     # of if debug symbols were needed. Without it, compilation fails on
 150     # sparc! :-(
 151     JVM_CFLAGS += -g0
 152   endif
 153 endif
 154 
 155 ifeq ($(call isTargetOs, windows), true)
 156   ifeq ($(call isTargetCpuBits, 64), true)
 157     RC_DESC := 64-Bit$(SPACE)
 158   endif
 159   JVM_RCFLAGS += -D"HS_FILEDESC=$(HOTSPOT_VM_DISTRO) $(RC_DESC)$(JVM_VARIANT) VM"
 160 endif
 161 
 162 JVM_OPTIMIZATION ?= HIGHEST_JVM
 163 
 164 # Need to set JVM_STRIPFLAGS to the default value from SPEC since the STRIPFLAGS
 165 # parameter to SetupNativeCompilation allows an empty value to override the
 166 # default.
 167 JVM_STRIPFLAGS ?= $(STRIPFLAGS)
 168 
 169 # This source set is reused so save in cache.
 170 $(call FillFindCache, $(JVM_SRC_DIRS))
 171 
 172 ################################################################################
 173 # Now set up the actual compilation of the main hotspot native library
 174 
 175 $(eval $(call SetupNativeCompilation, BUILD_LIBJVM, \
 176     NAME := jvm, \
 177     TOOLCHAIN := TOOLCHAIN_LINK_CXX, \
 178     OUTPUT_DIR := $(JVM_LIB_OUTPUTDIR), \
 179     SRC := $(JVM_SRC_DIRS), \
 180     EXCLUDES := $(JVM_EXCLUDES), \
 181     EXCLUDE_FILES := $(JVM_EXCLUDE_FILES), \
 182     EXCLUDE_PATTERNS := $(JVM_EXCLUDE_PATTERNS), \
 183     EXTRA_OBJECT_FILES := $(DTRACE_EXTRA_OBJECT_FILES), \
 184     CFLAGS := $(JVM_CFLAGS), \
 185     vm_version.cpp_CXXFLAGS := $(CFLAGS_VM_VERSION), \
 186     arguments.cpp_CXXFLAGS := $(CFLAGS_VM_VERSION), \
 187     DISABLED_WARNINGS_gcc := $(DISABLED_WARNINGS_gcc), \
 188     DISABLED_WARNINGS_clang := $(DISABLED_WARNINGS_clang), \
 189     DISABLED_WARNINGS_solstudio := $(DISABLED_WARNINGS_solstudio), \
 190     DISABLED_WARNINGS_xlc := $(DISABLED_WARNINGS_xlc), \
 191     DISABLED_WARNINGS_microsoft := $(DISABLED_WARNINGS_microsoft), \
 192     ASFLAGS := $(JVM_ASFLAGS), \
 193     LDFLAGS := $(JVM_LDFLAGS), \
 194     LIBS := $(JVM_LIBS), \
 195     OPTIMIZATION := $(JVM_OPTIMIZATION), \
 196     OBJECT_DIR := $(JVM_OUTPUTDIR)/objs, \
 197     MAPFILE := $(JVM_MAPFILE), \
 198     USE_MAPFILE_FOR_SYMBOLS := true, \
 199     STRIPFLAGS := $(JVM_STRIPFLAGS), \
 200     EMBED_MANIFEST := true, \
 201     RC_FLAGS := $(JVM_RCFLAGS), \
 202     VERSIONINFO_RESOURCE := $(TOPDIR)/src/hotspot/os/windows/version.rc, \
 203     PRECOMPILED_HEADER := $(JVM_PRECOMPILED_HEADER), \
 204     PRECOMPILED_HEADER_EXCLUDE := $(JVM_PRECOMPILED_HEADER_EXCLUDE), \
 205     DEFINE_THIS_FILE := false, \
 206 ))
 207 
 208 # Always recompile vm_version.cpp if libjvm needs to be relinked. This ensures
 209 # that the internal vm version is updated as it relies on __DATE__ and __TIME__
 210 # macros.
 211 VM_VERSION_OBJ := $(JVM_OUTPUTDIR)/objs/vm_version$(OBJ_SUFFIX)
 212 $(VM_VERSION_OBJ): $(filter-out $(VM_VERSION_OBJ) $(JVM_MAPFILE), \
 213     $(BUILD_LIBJVM_TARGET_DEPS))
 214 
 215 ifneq ($(GENERATE_COMPILE_COMMANDS_ONLY), true)
 216   ifeq ($(call isTargetOs, windows), true)
 217     # It doesn't matter which jvm.lib file gets exported, but we need
 218     # to pick just one.
 219     ifeq ($(JVM_VARIANT), $(JVM_VARIANT_MAIN))
 220       $(eval $(call SetupCopyFiles, COPY_JVM_LIB, \
 221           DEST := $(LIB_OUTPUTDIR), \
 222           FILES :=$(BUILD_LIBJVM_IMPORT_LIBRARY), \
 223       ))
 224       TARGETS += $(COPY_JVM_LIB)
 225     endif
 226   endif
 227 endif
 228 
 229 # AIX warning explanation:
 230 # 1500-010  : (W) WARNING in ...: Infinite loop.  Program may not stop.
 231 #             There are several infinite loops in the vm, so better suppress.
 232 # 1540-0198 : (W) The omitted keyword "private" is assumed for base class "...".
 233 # 1540-0216 : (W) An expression of type .. cannot be converted to type ..
 234 #             In hotspot this fires for functionpointer to pointer conversions
 235 # 1540-1088 : (W) The exception specification is being ignored.
 236 #             In hotspot this is caused by throw() in declaration of new() in nmethod.hpp.
 237 # 1540-1090 : (I) The destructor of "..." might not be called.
 238 # 1540-1639 : (I) The behavior of long type bit fields has changed ...
 239 
 240 # Include mapfile generation. It relies on BUILD_LIBJVM_ALL_OBJS which is only
 241 # defined after the above call to BUILD_LIBJVM. Mapfile will be generated
 242 # after all object files are built, but before the jvm library is linked.
 243 include lib/JvmMapfile.gmk
 244 
 245 TARGETS += $(BUILD_LIBJVM)
 246 
 247 ################################################################################
 248 # Hotspot disallows the use of global operators 'new' and 'delete'. This build
 249 # time check helps enforce this requirement. If you trigger this check and the
 250 # reference is not obvious from the source, GNU objdump can be used to help find
 251 # the reference if compiled with GCC:
 252 #
 253 # objdump -lrdSC <path/to/file.o>
 254 #
 255 # -C demangle
 256 # -d disassemble
 257 # -r print relocation entries, interspersed with the disassembly
 258 # -S print source code, intermixed with disassembly
 259 # -l include filenames and line numbers
 260 #
 261 # Search the output for the operator(s) of interest, to see where they are
 262 # referenced.
 263 
 264 ifneq ($(GENERATE_COMPILE_COMMANDS_ONLY), true)
 265   ifneq ($(filter $(TOOLCHAIN_TYPE), gcc clang solstudio), )
 266 
 267     DEMANGLED_REGEXP := [^:]operator (new|delete)
 268 
 269     # Running c++filt to find offending symbols in all files is too expensive,
 270     # especially on Solaris, so use mangled names when looking for symbols.
 271     # Save the demangling for when something is actually found.
 272     ifeq ($(TOOLCHAIN_TYPE), solstudio)
 273       MANGLED_SYMS := \
 274           __1c2n6FL_pv_ \
 275           __1c2N6FL_pv_ \
 276           __1c2k6Fpv_v_ \
 277           __1c2K6Fpv_v_ \
 278           #
 279       UNDEF_PATTERN := UNDEF
 280     else
 281       MANGLED_SYMS := \
 282           _ZdaPv \
 283           _ZdlPv \
 284           _Znam \
 285           _Znwm \
 286           #
 287       UNDEF_PATTERN := ' U '
 288     endif
 289 
 290     define SetupOperatorNewDeleteCheck
 291         $1.op_check: $1
 292           if [ -n "`$(NM) $$< | $(GREP) $(addprefix -e , $(MANGLED_SYMS)) \
 293               | $(GREP) $(UNDEF_PATTERN)`" ]; then \
 294             $(ECHO) "$$<: Error: Use of global operators new and delete is not allowed in Hotspot:"; \
 295             $(NM) $$< | $(CXXFILT) | $(EGREP) '$(DEMANGLED_REGEXP)' | $(GREP) $(UNDEF_PATTERN); \
 296             $(ECHO) "See: $(TOPDIR)/make/hotspot/lib/CompileJvm.gmk"; \
 297             exit 1; \
 298           fi
 299           $(TOUCH) $$@
 300 
 301       TARGETS += $1.op_check
 302     endef
 303 
 304     $(foreach o, $(BUILD_LIBJVM_ALL_OBJS), $(eval $(call SetupOperatorNewDeleteCheck,$o)))
 305   endif
 306 endif