make/windows/build.make

Mon, 28 Jul 2014 15:06:38 -0700

author
fzhinkin
date
Mon, 28 Jul 2014 15:06:38 -0700
changeset 6997
dbb05f6d93c4
parent 5237
f2110083203d
child 6876
710a3c8b516e
child 9634
d1520f0c3524
permissions
-rw-r--r--

8051344: JVM crashed in Compile::start() during method parsing w/ UseRTMDeopt turned on
Summary: call rtm_deopt() only if there were no compilation bailouts before.
Reviewed-by: kvn

     1 #
     2 # Copyright (c) 1998, 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 #
    23 #
    25 # Note: this makefile is invoked both from build.bat and from the J2SE
    26 # control workspace in exactly the same manner; the required
    27 # environment variables (Variant, WorkSpace, BootStrapDir, BuildUser, HOTSPOT_BUILD_VERSION)
    28 # are passed in as command line arguments.
    30 # Note: Running nmake or build.bat from the Windows command shell requires
    31 # that "sh" be accessible on the PATH. An MKS install does this.
    33 # SA components are built if BUILD_WIN_SA=1 is specified.
    34 # See notes in README. This produces files:
    35 #  1. sa-jdi.jar       - This is built before building jvm.dll
    36 #  2. sawindbg.dll     - Native library for SA - This is built after jvm.dll
    37 #                      - Also, .lib, .map, .pdb.
    38 #
    39 # Please refer to ./makefiles/sa.make
    41 # If we haven't set an ARCH yet use x86
    42 # create.bat and build.bat will set it, if used.
    43 !ifndef ARCH
    44 ARCH=x86
    45 !endif
    48 # Must be one of these values (if value comes in from env, can't trust it)
    49 !if "$(ARCH)" != "x86"
    50 !if "$(ARCH)" != "ia64"
    51 ARCH=x86
    52 !endif
    53 !endif
    55 # At this point we should be certain that ARCH has a definition
    56 # now determine the BUILDARCH
    57 #
    59 # the default BUILDARCH
    60 BUILDARCH=i486
    62 # Allow control workspace to force Itanium or AMD64 builds with LP64
    63 ARCH_TEXT=
    64 !ifdef LP64
    65 !if "$(LP64)" == "1"
    66 ARCH_TEXT=64-Bit
    67 !if "$(ARCH)" == "x86"
    68 BUILDARCH=amd64
    69 !else
    70 BUILDARCH=ia64
    71 !endif
    72 !endif
    73 !endif
    75 !if "$(BUILDARCH)" != "ia64"
    76 !ifndef CC_INTERP
    77 !ifndef FORCE_TIERED
    78 FORCE_TIERED=1
    79 !endif
    80 !endif
    81 !endif
    83 !if "$(BUILDARCH)" == "amd64"
    84 Platform_arch=x86
    85 Platform_arch_model=x86_64
    86 !endif
    87 !if "$(BUILDARCH)" == "i486"
    88 Platform_arch=x86
    89 Platform_arch_model=x86_32
    90 !endif
    92 # Supply these from the command line or the environment
    93 #  It doesn't make sense to default this one
    94 Variant=
    95 #  It doesn't make sense to default this one
    96 WorkSpace=
    98 variantDir = windows_$(BUILDARCH)_$(Variant)
   100 realVariant=$(Variant)
   101 VARIANT_TEXT=Core
   102 !if "$(Variant)" == "compiler1"
   103 VARIANT_TEXT=Client
   104 !elseif "$(Variant)" == "compiler2"
   105 !if "$(FORCE_TIERED)" == "1"
   106 VARIANT_TEXT=Server
   107 realVariant=tiered
   108 !else
   109 VARIANT_TEXT=Server
   110 !endif
   111 !elseif "$(Variant)" == "tiered"
   112 VARIANT_TEXT=Tiered
   113 !endif
   115 #########################################################################
   116 # Parameters for VERSIONINFO resource for jvm.dll.
   117 # These can be overridden via the nmake.exe command line.
   118 # They are overridden by RE during the control builds.
   119 #
   120 !include "$(WorkSpace)/make/hotspot_version"
   122 # Define HOTSPOT_VM_DISTRO based on settings in make/openjdk_distro
   123 # or make/hotspot_distro.
   124 !ifndef HOTSPOT_VM_DISTRO
   125 !if exists($(WorkSpace)\src\closed)
   127 # if the build is for JDK6 or earlier version, it should include jdk6_hotspot_distro,
   128 # instead of hotspot_distro.
   129 JDK6_OR_EARLIER=0
   130 !if "$(JDK_MAJOR_VERSION)" != "" && "$(JDK_MINOR_VERSION)" != "" && "$(JDK_MICRO_VERSION)" != ""
   131 !if $(JDK_MAJOR_VERSION) == 1 && $(JDK_MINOR_VERSION) < 7
   132 JDK6_OR_EARLIER=1
   133 !endif
   134 !else
   135 !if $(JDK_MAJOR_VER) == 1 && $(JDK_MINOR_VER) < 7
   136 JDK6_OR_EARLIER=1
   137 !endif
   138 !endif
   140 !if $(JDK6_OR_EARLIER) == 1
   141 !include $(WorkSpace)\make\jdk6_hotspot_distro
   142 !else
   143 !include $(WorkSpace)\make\hotspot_distro
   144 !endif
   145 !else
   146 !include $(WorkSpace)\make\openjdk_distro
   147 !endif
   148 !endif
   150 # Following the Web Start / Plugin model here....
   151 # We can have update versions like "01a", but Windows requires
   152 # we use only integers in the file version field.  So:
   153 # JDK_UPDATE_VER = JDK_UPDATE_VERSION * 10 + EXCEPTION_VERSION
   154 #
   155 JDK_UPDATE_VER=0
   156 JDK_BUILD_NUMBER=0
   158 HS_FILEDESC=$(HOTSPOT_VM_DISTRO) $(ARCH_TEXT) $(VARIANT_TEXT) VM
   160 # JDK ProductVersion:
   161 # 1.5.0_<wx>-b<yz> will have DLL version 5.0.wx*10.yz
   162 # Thus, 1.5.0_10-b04  will be 5.0.100.4
   163 #       1.6.0-b01     will be 6.0.0.1
   164 #       1.6.0_01a-b02 will be 6.0.11.2
   165 #
   166 # JDK_* variables are defined in make/hotspot_version or on command line
   167 #
   168 JDK_VER=$(JDK_MINOR_VER),$(JDK_MICRO_VER),$(JDK_UPDATE_VER),$(JDK_BUILD_NUMBER)
   169 JDK_DOTVER=$(JDK_MINOR_VER).$(JDK_MICRO_VER).$(JDK_UPDATE_VER).$(JDK_BUILD_NUMBER)
   170 !if "$(JRE_RELEASE_VERSION)" == ""
   171 JRE_RELEASE_VER=$(JDK_MAJOR_VER).$(JDK_MINOR_VER).$(JDK_MICRO_VER)
   172 !else
   173 JRE_RELEASE_VER=$(JRE_RELEASE_VERSION)
   174 !endif
   175 !if "$(JDK_MKTG_VERSION)" == ""
   176 JDK_MKTG_VERSION=$(JDK_MINOR_VER).$(JDK_MICRO_VER)
   177 !endif
   179 # Hotspot Express VM FileVersion:
   180 # 10.0-b<yz> will have DLL version 10.0.0.yz (need 4 numbers).
   181 #
   182 # HS_* variables are defined in make/hotspot_version
   183 #
   184 HS_VER=$(HS_MAJOR_VER),$(HS_MINOR_VER),0,$(HS_BUILD_NUMBER)
   185 HS_DOTVER=$(HS_MAJOR_VER).$(HS_MINOR_VER).0.$(HS_BUILD_NUMBER)
   187 !if "$(HOTSPOT_RELEASE_VERSION)" == ""
   188 HOTSPOT_RELEASE_VERSION=$(HS_MAJOR_VER).$(HS_MINOR_VER)-b$(HS_BUILD_NUMBER)
   189 !endif
   191 !if "$(HOTSPOT_BUILD_VERSION)" == ""
   192 HS_BUILD_VER=$(HOTSPOT_RELEASE_VERSION)
   193 !else
   194 HS_BUILD_VER=$(HOTSPOT_RELEASE_VERSION)-$(HOTSPOT_BUILD_VERSION)
   195 !endif
   197 # End VERSIONINFO parameters
   199 # if hotspot-only build and/or OPENJDK isn't passed down, need to set OPENJDK
   200 !ifndef OPENJDK
   201 !if !exists($(WorkSpace)\src\closed)
   202 OPENJDK=true
   203 !endif
   204 !endif
   206 # We don't support SA on ia64, and we can't
   207 # build it if we are using a version of Vis Studio
   208 # older than .Net 2003.
   209 # SA_INCLUDE and SA_LIB are hold-overs from a previous
   210 # implementation in which we could build SA using
   211 # Debugging Tools For Windows, in which the .h/.lib files
   212 # and the .dlls are in different places than
   213 # they are for Vis Studio .Net 2003.
   214 # If that code ever needs to be resurrected, these vars
   215 # can be set here.  They are used in makefiles/sa.make.
   217 checkSA::
   219 !if "$(BUILD_WIN_SA)" != "1"
   220 checkSA::
   221 	@echo     Not building SA:  BUILD_WIN_SA != 1
   223 !elseif "$(ARCH)" == "ia64"
   224 BUILD_WIN_SA = 0
   225 checkSA::
   226 	@echo     Not building SA:  ARCH = ia64
   228 !endif  # ! "$(BUILD_WIN_SA)" != "1"
   230 #########################################################################
   232 defaultTarget: product
   234 # The product or release build is an optimized build, and is the default
   236 # note that since all the build targets depend on local.make that BUILDARCH
   237 # and Platform_arch and Platform_arch_model will get set in local.make
   238 # and there is no need to pass them thru here on the command line
   239 #
   240 product release optimized: checks $(variantDir) $(variantDir)\local.make sanity
   241 	cd $(variantDir)
   242 	nmake -nologo -f $(WorkSpace)\make\windows\makefiles\top.make BUILD_FLAVOR=product ARCH=$(ARCH)
   244 # The debug build is an optional build
   245 debug: checks $(variantDir) $(variantDir)\local.make sanity
   246 	cd $(variantDir)
   247 	nmake -nologo -f $(WorkSpace)\make\windows\makefiles\top.make BUILD_FLAVOR=debug ARCH=$(ARCH)
   248 fastdebug: checks $(variantDir) $(variantDir)\local.make sanity
   249 	cd $(variantDir)
   250 	nmake -nologo -f $(WorkSpace)\make\windows\makefiles\top.make BUILD_FLAVOR=fastdebug ARCH=$(ARCH)
   252 # target to create just the directory structure
   253 tree: checks $(variantDir) $(variantDir)\local.make sanity
   254 	mkdir $(variantDir)\product
   255 	mkdir $(variantDir)\debug
   256 	mkdir $(variantDir)\fastdebug
   258 sanity:
   259 	@ echo;
   260 	@ cd $(variantDir)
   261 	@ nmake -nologo -f $(WorkSpace)\make\windows\makefiles\sanity.make
   262 	@ cd ..
   263 	@ echo;
   265 clean: checkVariant
   266 	- rm -r -f $(variantDir)
   268 $(variantDir):
   269 	mkdir $(variantDir)
   271 $(variantDir)\local.make: checks
   272 	@ echo # Generated file					>  $@
   273 	@ echo Variant=$(realVariant)				>> $@
   274 	@ echo WorkSpace=$(WorkSpace)				>> $@
   275 	@ echo BootStrapDir=$(BootStrapDir)			>> $@
   276 	@ if "$(USERNAME)" NEQ "" echo BuildUser=$(USERNAME)	>> $@
   277 	@ echo HS_VER=$(HS_VER)					>> $@
   278 	@ echo HS_DOTVER=$(HS_DOTVER)				>> $@
   279 	@ echo HS_COMPANY=$(COMPANY_NAME)			>> $@
   280 	@ echo HS_FILEDESC=$(HS_FILEDESC)			>> $@
   281 	@ echo HOTSPOT_VM_DISTRO=$(HOTSPOT_VM_DISTRO)		>> $@
   282 	@ if "$(OPENJDK)" NEQ "" echo OPENJDK=$(OPENJDK)	>> $@
   283 	@ echo HS_COPYRIGHT=$(HOTSPOT_VM_COPYRIGHT)		>> $@
   284 	@ echo HS_NAME=$(PRODUCT_NAME) $(JDK_MKTG_VERSION)	>> $@
   285 	@ echo HS_BUILD_VER=$(HS_BUILD_VER)			>> $@
   286 	@ echo BUILD_WIN_SA=$(BUILD_WIN_SA)    			>> $@
   287 	@ echo SA_BUILD_VERSION=$(HS_BUILD_VER)                 >> $@
   288 	@ echo SA_INCLUDE=$(SA_INCLUDE)      			>> $@
   289 	@ echo SA_LIB=$(SA_LIB)         			>> $@
   290 	@ echo JDK_VER=$(JDK_VER)				>> $@
   291 	@ echo JDK_DOTVER=$(JDK_DOTVER)				>> $@
   292 	@ echo JRE_RELEASE_VER=$(JRE_RELEASE_VER)		>> $@
   293 	@ echo BUILDARCH=$(BUILDARCH)         			>> $@
   294 	@ echo Platform_arch=$(Platform_arch)        		>> $@
   295 	@ echo Platform_arch_model=$(Platform_arch_model)	>> $@
   296 	@ echo CXX=$(CXX)					>> $@
   297 	@ echo LD=$(LD)						>> $@
   298 	@ echo MT=$(MT)						>> $@
   299 	@ echo RC=$(RC)						>> $@
   300 	@ sh $(WorkSpace)/make/windows/get_msc_ver.sh		>> $@
   301 	@ if "$(ENABLE_FULL_DEBUG_SYMBOLS)" NEQ "" echo ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS) >> $@
   302 	@ if "$(ZIP_DEBUGINFO_FILES)" NEQ "" echo ZIP_DEBUGINFO_FILES=$(ZIP_DEBUGINFO_FILES) >> $@
   303 	@ if "$(RM)" NEQ "" echo RM=$(RM)                       >> $@
   304 	@ if "$(ZIPEXE)" NEQ "" echo ZIPEXE=$(ZIPEXE)           >> $@
   306 checks: checkVariant checkWorkSpace checkSA
   308 checkVariant:
   309 	@ if "$(Variant)"=="" echo Need to specify "Variant=[tiered|compiler2|compiler1|core]" && false
   310 	@ if "$(Variant)" NEQ "tiered" if "$(Variant)" NEQ "compiler2" if "$(Variant)" NEQ "compiler1" if "$(Variant)" NEQ "core" \
   311           echo Need to specify "Variant=[tiered|compiler2|compiler1|core]" && false
   313 checkWorkSpace:
   314 	@ if "$(WorkSpace)"=="" echo Need to specify "WorkSpace=..." && false
   316 checkBuildID:
   317 	@ if "$(BuildID)"=="" echo Need to specify "BuildID=..." && false

mercurial