annotate make/jprt.gmk @ 3285:49a67202bc67

7011855: G1: non-product flag to artificially grow the heap Summary: It introduces non-product cmd line parameter G1DummyRegionsPerGC which indicates how many "dummy" regions to allocate at the end of each GC. This allows the G1 heap to grow artificially and makes concurrent marking cycles more frequent irrespective of what the application that is running is doing. The dummy regions will be found totally empty during cleanup so this parameter can also be used to stress the concurrent cleanup operation. Reviewed-by: brutisso, johnc
author tonyp
date Tue, 19 Apr 2011 15:46:59 -0400
parents 0a8e0d4345b3
children 03b943e6c025
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 #
2042
0a8e0d4345b3 7010068: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - first pass
trims
parents: 1977
diff changeset
2 # Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 #
a61af66fc99e Initial load
duke
parents:
diff changeset
5 # This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 # under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 # published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 #
a61af66fc99e Initial load
duke
parents:
diff changeset
9 # This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 # version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 # accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 #
a61af66fc99e Initial load
duke
parents:
diff changeset
15 # You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 # 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 #
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1015
diff changeset
19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1015
diff changeset
20 # or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1015
diff changeset
21 # questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 #
a61af66fc99e Initial load
duke
parents:
diff changeset
23 #
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # JPRT rule to build this workspace
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 JPRT_ARCHIVE_BUNDLE=$(ABS_OUTPUTDIR)/$(JPRT_BUILD_FLAVOR)-bundle.zip
a61af66fc99e Initial load
duke
parents:
diff changeset
28
1015
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 0
diff changeset
29 ifeq ($(OSNAME),windows)
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 0
diff changeset
30 ZIPFLAGS=-q
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 0
diff changeset
31 else
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 0
diff changeset
32 # store symbolic links as the link
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 0
diff changeset
33 ZIPFLAGS=-q -y
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 0
diff changeset
34 endif
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 0
diff changeset
35
0
a61af66fc99e Initial load
duke
parents:
diff changeset
36 jprt_build_product: all_product copy_product_jdk export_product_jdk
a61af66fc99e Initial load
duke
parents:
diff changeset
37 ( $(CD) $(JDK_IMAGE_DIR) && \
1015
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 0
diff changeset
38 $(ZIPEXE) $(ZIPFLAGS) -r $(JPRT_ARCHIVE_BUNDLE) . )
0
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 jprt_build_fastdebug: all_fastdebug copy_fastdebug_jdk export_fastdebug_jdk
a61af66fc99e Initial load
duke
parents:
diff changeset
41 ( $(CD) $(JDK_IMAGE_DIR)/fastdebug && \
1015
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 0
diff changeset
42 $(ZIPEXE) $(ZIPFLAGS) -r $(JPRT_ARCHIVE_BUNDLE) . )
0
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 jprt_build_debug: all_debug copy_debug_jdk export_debug_jdk
a61af66fc99e Initial load
duke
parents:
diff changeset
45 ( $(CD) $(JDK_IMAGE_DIR)/debug && \
1015
23862fc517bb 6722084: JPRT make file doesn't create required symbolic link to libjvm.so
kvn
parents: 0
diff changeset
46 $(ZIPEXE) $(ZIPFLAGS) -r $(JPRT_ARCHIVE_BUNDLE) . )
0
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 .PHONY: jprt_build_product jprt_build_fastdebug jprt_build_debug
a61af66fc99e Initial load
duke
parents:
diff changeset
49